diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml index 5746ee1bb88225f8558b85152294fa171f05179f..938cc6863db7e0ecacdb2d529bb442ddec689f96 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 7e887f0f224a06d91281d1e92c855f112e854237..51ef80bfeb67e82bb0ac5281d007a61455978cf7 100644 --- a/src/client/widgets/trends.vue +++ b/src/client/widgets/trends.vue @@ -8,7 +8,7 @@ <div v-for="stat in stats" :key="stat.tag"> <div class="tag"> <router-link :to="`/tags/${ encodeURIComponent(stat.tag) }`" :title="stat.tag">#{{ stat.tag }}</router-link> - <p>{{ $t('count').replace('{}', stat.usersCount) }}</p> + <p>{{ $t('nUsersMentioned', { n: stat.usersCount }) }}</p> </div> <x-chart class="chart" :src="stat.chart"/> </div>