From 9f4da44b59d9f351b1818a8e70297b43c899fdb0 Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 30 Jan 2020 06:11:35 +0900 Subject: [PATCH] Fix --- locales/ja-JP.yml | 1 + src/client/widgets/trends.vue | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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 }) }}