fix: correct follower word (#438)

This commit is contained in:
Kevin Deng 三咲智子 2024-09-16 16:59:43 +08:00 committed by GitHub
parent 7f994d7a21
commit e31e3433df
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 13 additions and 13 deletions

View File

@ -1,8 +1,8 @@
{
"copied_link": "Copied link to clipboard",
"feed": {
"follow_one": "follow",
"follow_other": "follows",
"follower_one": "follower",
"follower_other": "followers",
"followsAndReads": "{{subscriptionCount}} {{subscriptionNoun}} with {{readCount}} {{readNoun}} on {{appName}}",
"read_one": "read",
"read_other": "reads"

View File

@ -1,7 +1,7 @@
{
"feed": {
"follow_one": "suivi",
"follow_other": "suivis",
"follower_one": "suivi",
"follower_other": "suivis",
"followsAndReads": "{{subscriptionCount}} {{subscriptionNoun}} avec {{readCount}} {{readNoun}} sur {{appName}}",
"read_one": "lecture",
"read_other": "lectures"

View File

@ -1,7 +1,7 @@
{
"feed": {
"follow_one": "フォロー",
"follow_other": "フォロー",
"follower_one": "フォロー",
"follower_other": "フォロー",
"followsAndReads": "{{appName}} で {{subscriptionCount}} {{subscriptionNoun}} と {{readCount}} {{readNoun}}",
"read_one": "読んだ",
"read_other": "既読"

View File

@ -1,7 +1,7 @@
{
"feed": {
"follow_one": "seguir",
"follow_other": "seguimentos",
"follower_one": "seguir",
"follower_other": "seguimentos",
"followsAndReads": "{{subscriptionCount}} {{subscriptionNoun}} com {{readCount}} {{readNoun}} no {{appName}}",
"read_one": "leitura",
"read_other": "leituras"

View File

@ -1,7 +1,7 @@
{
"feed": {
"follow_one": "关注者",
"follow_other": "关注者",
"follower_one": "关注者",
"follower_other": "关注者",
"followsAndReads": "在 {{appName}} 上有 {{subscriptionCount}} 个{{subscriptionNoun}}{{readCount}} 篇{{readNoun}}",
"read_one": "文章",
"read_other": "文章"

View File

@ -1,7 +1,7 @@
{
"feed": {
"follow_one": "追蹤",
"follow_other": "追蹤數",
"follower_one": "追隨者",
"follower_other": "追隨者",
"followsAndReads": "{{subscriptionCount}} 個 {{subscriptionNoun}} 和 {{readCount}} 個 {{readNoun}} 在 {{appName}}",
"read_one": "閱讀",
"read_other": "閱讀數"

View File

@ -84,7 +84,7 @@ export function Component() {
<div className="mb-4 text-sm">
{t("feed.followsAndReads", {
subscriptionCount: feed.data.subscriptionCount,
subscriptionNoun: t("feed.follow", { count: feed.data.subscriptionCount }),
subscriptionNoun: t("feed.follower", { count: feed.data.subscriptionCount }),
readCount: feed.data.readCount,
readNoun: t("feed.read", { count: feed.data.readCount }),
appName: APP_NAME,