diff options
Diffstat (limited to 'src/view/com/util/post-ctrls/PostCtrls.tsx')
-rw-r--r-- | src/view/com/util/post-ctrls/PostCtrls.tsx | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/src/view/com/util/post-ctrls/PostCtrls.tsx b/src/view/com/util/post-ctrls/PostCtrls.tsx index deb4b51d8..39caaf098 100644 --- a/src/view/com/util/post-ctrls/PostCtrls.tsx +++ b/src/view/com/util/post-ctrls/PostCtrls.tsx @@ -258,10 +258,12 @@ let PostCtrls = ({ } }} accessibilityRole="button" - accessibilityLabel={plural(post.replyCount || 0, { - one: 'Reply (# reply)', - other: 'Reply (# replies)', - })} + accessibilityLabel={_( + msg`Reply (${plural(post.replyCount || 0, { + one: '# reply', + other: '# replies', + })})`, + )} accessibilityHint="" hitSlop={POST_CTRL_HITSLOP}> <Bubble @@ -298,14 +300,18 @@ let PostCtrls = ({ accessibilityRole="button" accessibilityLabel={ post.viewer?.like - ? plural(post.likeCount || 0, { - one: 'Unlike (# like)', - other: 'Unlike (# likes)', - }) - : plural(post.likeCount || 0, { - one: 'Like (# like)', - other: 'Like (# likes)', - }) + ? _( + msg`Unlike (${plural(post.likeCount || 0, { + one: '# like', + other: '# likes', + })})`, + ) + : _( + msg`Like (${plural(post.likeCount || 0, { + one: '# like', + other: '# likes', + })})`, + ) } accessibilityHint="" hitSlop={POST_CTRL_HITSLOP}> |