{totalNotDeletedComments, plural, =0 {Comments} =1 {1 Comment} other {{{totalNotDeletedComments}} Comments}}

@if (commentsEnabled) { @if (totalNotDeletedComments === 0 && comments.length === 0) {
No comments.
}
@if (highlightedThread) { }
@for (comment of comments; track comment; let i = $index) {
@if (!highlightedThread || comment.id !== highlightedThread.id) { @if (comment.totalReplies !== 0 && !threadComments[comment.id]) { } }
}
} @else {
Comments are disabled.
}