summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--locales/ja.yml2
-rw-r--r--src/client/app/mobile/views/components/note-detail.vue8
2 files changed, 8 insertions, 2 deletions
diff --git a/locales/ja.yml b/locales/ja.yml
index 90764f7e60..06ef453de8 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 9282848d7a..91b8c20111 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 @@
</div>
<div class="renote" v-if="isRenote">
<p>
- <mk-avatar class="avatar" :user="note.user"/>%fa:retweet%<router-link class="name" :to="note.user | userPage">{{ note.user | userName }}</router-link>%i18n:@is-renote%
+ <mk-avatar class="avatar" :user="note.user"/>
+ %fa:retweet%
+ <router-link class="name" :href="note.user | userPage">{{ note.user | userName }}</router-link>
+ <span>{{ '%i18n:@reposted-by%'.substr(0, '%i18n:@reposted-by%'.indexOf('{')) }}</span>
+ <a class="name" :href="note.user | userPage" v-user-preview="note.userId">{{ note.user | userName }}</a>
+ <span>{{ '%i18n:@reposted-by%'.substr('%i18n:@reposted-by%'.indexOf('}') + 1) }}</span>
+ <mk-time :time="note.createdAt"/>
</p>
</div>
<article>