diff --git a/locales/ja.yml b/locales/ja.yml index 90764f7e6..06ef453de 100644 --- a/locales/ja.yml +++ b/locales/ja.yml @@ -777,7 +777,7 @@ mobile/views/components/note.vue: mobile/views/components/note-detail.vue: reply: "返信" reaction: "リアクション" - is-renote: "がRenote" + reposted-by: "{}がRenote" hidden: "この投稿は非公開です" location: "位置情報" diff --git a/src/client/app/mobile/views/components/note-detail.vue b/src/client/app/mobile/views/components/note-detail.vue index 9282848d7..91b8c2011 100644 --- a/src/client/app/mobile/views/components/note-detail.vue +++ b/src/client/app/mobile/views/components/note-detail.vue @@ -17,7 +17,13 @@

- %fa:retweet%{{ note.user | userName }}%i18n:@is-renote% + + %fa:retweet% + {{ note.user | userName }} + {{ '%i18n:@reposted-by%'.substr(0, '%i18n:@reposted-by%'.indexOf('{')) }} + {{ note.user | userName }} + {{ '%i18n:@reposted-by%'.substr('%i18n:@reposted-by%'.indexOf('}') + 1) }} +