fix: correct follower word (#438)
This commit is contained in:
parent
7f994d7a21
commit
e31e3433df
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"feed": {
|
||||
"follow_one": "フォロー",
|
||||
"follow_other": "フォロー",
|
||||
"follower_one": "フォロー",
|
||||
"follower_other": "フォロー",
|
||||
"followsAndReads": "{{appName}} で {{subscriptionCount}} {{subscriptionNoun}} と {{readCount}} {{readNoun}}",
|
||||
"read_one": "読んだ",
|
||||
"read_other": "既読"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"feed": {
|
||||
"follow_one": "关注者",
|
||||
"follow_other": "关注者",
|
||||
"follower_one": "关注者",
|
||||
"follower_other": "关注者",
|
||||
"followsAndReads": "在 {{appName}} 上有 {{subscriptionCount}} 个{{subscriptionNoun}},{{readCount}} 篇{{readNoun}}",
|
||||
"read_one": "文章",
|
||||
"read_other": "文章"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"feed": {
|
||||
"follow_one": "追蹤",
|
||||
"follow_other": "追蹤數",
|
||||
"follower_one": "追隨者",
|
||||
"follower_other": "追隨者",
|
||||
"followsAndReads": "{{subscriptionCount}} 個 {{subscriptionNoun}} 和 {{readCount}} 個 {{readNoun}} 在 {{appName}}",
|
||||
"read_one": "閱讀",
|
||||
"read_other": "閱讀數"
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in New Issue