From 0b0f2848dae2a4b97f06567675c9f0004fcd6199 Mon Sep 17 00:00:00 2001 From: infinite-persistence Date: Sat, 16 Oct 2021 11:20:34 +0800 Subject: [PATCH] i18n - refix total comments Meant to re-use strings, but I forgot to change the variable name. --- ui/component/commentsList/view.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/component/commentsList/view.jsx b/ui/component/commentsList/view.jsx index 4aa3fcdbb..b34c09301 100644 --- a/ui/component/commentsList/view.jsx +++ b/ui/component/commentsList/view.jsx @@ -300,7 +300,7 @@ function CommentList(props: Props) { title={ (totalComments === 0 && __('Leave a comment')) || (totalComments === 1 && __('1 comment')) || - __('%totalComments% comments', { totalComments }) + __('%total_comments% comments', { total_comments: totalComments }) } titleActions={ <>