Fix incorrect translation string (#26492)

This commit is contained in:
Harrison Healey 2024-03-15 14:28:57 -04:00 committed by GitHub
parent b14213d329
commit 69fc0d6f7f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -83,8 +83,10 @@ function ThreadViewerRow({
<div>
<FormattedMessage
id='threading.numReplies'
defaultMessage='{replyCount, plural, =0 {Reply} =1 {# reply} other {# replies}}'
values={{replyCount}}
defaultMessage='{totalReplies, plural, =0 {Reply} =1 {# reply} other {# replies}}'
values={{
totalReplies: replyCount,
}}
/>
</div>
</div>