diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml index 5746ee1bb..938cc6863 100644 --- a/locales/ja-JP.yml +++ b/locales/ja-JP.yml @@ -329,6 +329,7 @@ administrator: "管理者" token: "トークン" twoStepAuthentication: "二段階認証" moderator: "モデレーター" +nUsersMentioned: "{n}人が投稿" _2fa: registerDevice: "デバイスを登録" diff --git a/src/client/widgets/trends.vue b/src/client/widgets/trends.vue index 7e887f0f2..51ef80bfe 100644 --- a/src/client/widgets/trends.vue +++ b/src/client/widgets/trends.vue @@ -8,7 +8,7 @@
#{{ stat.tag }} -

{{ $t('count').replace('{}', stat.usersCount) }}

+

{{ $t('nUsersMentioned', { n: stat.usersCount }) }}