diff --git a/locales/en.json b/locales/en.json index 5f99575b2..437a3a998 100644 --- a/locales/en.json +++ b/locales/en.json @@ -70,6 +70,13 @@ "reply": "Reply", "attaches": "{} media attached", "uploading-media": "{} media uploading" + }, + "mk-timeline-post": { + "reposted-by": "Reposted by {}", + "reply": "Reply", + "repost": "Repost", + "add-reaction": "Add your reaction", + "detail": "Show detail" } } } diff --git a/locales/ja.json b/locales/ja.json index dbe11f5e8..615384dca 100644 --- a/locales/ja.json +++ b/locales/ja.json @@ -70,6 +70,13 @@ "reply": "返信", "attaches": "添付: {}メディア", "uploading-media": "{}つのメディアをアップロード中" + }, + "mk-timeline-post": { + "reposted-by": "{}がRepost", + "reply": "返信", + "repost": "Repost", + "add-reaction": "リアクション", + "detail": "詳細" } } } diff --git a/src/web/app/desktop/tags/timeline-post.tag b/src/web/app/desktop/tags/timeline-post.tag index 4c07be6c8..e83c117c2 100644 --- a/src/web/app/desktop/tags/timeline-post.tag +++ b/src/web/app/desktop/tags/timeline-post.tag @@ -8,8 +8,9 @@ avatar + { '%i18n:desktop.tags.mk-timeline-post.reposted-by%'.substr(0, '%i18n:desktop.tags.mk-timeline-post.reposted-by%'.indexOf('{')) } { post.user.name } - がRepost + { '%i18n:desktop.tags.mk-timeline-post.reposted-by%'.substr('%i18n:desktop.tags.mk-timeline-post.reposted-by%'.indexOf('}') + 1) }

@@ -47,19 +48,19 @@