Translated desktop/views/pages/tag.vue

More weird syntax fiddling. Should work nonetheless
This commit is contained in:
gutfuckllc 2018-08-01 14:52:53 -04:00
parent d6fab5fd6c
commit 5ab4d0c29b
3 changed files with 13 additions and 1 deletions

View file

@ -724,6 +724,12 @@ desktop/views/pages/search.vue:
desktop/views/pages/share.vue:
share-with: "Share with Misskey"
close: "Close"
desktop/views/pages/tag.vue:
no-posts-found-english: "No posts were found for "
no-posts-found-japanese: ""
left-quote: "\""
right-quote: "\"."
desktop/views/pages/user-list.users.vue:
users: "User"

View file

@ -835,6 +835,12 @@ desktop/views/pages/share.vue:
share-with: "Misskeyで共有"
close: "閉じる"
desktop/views/pages/tag.vue:
no-posts-found-english: ""
no-posts-found-japanese: "に関する投稿は見つかりませんでした。"
left-quote: "「"
right-quote: "」"
desktop/views/pages/user-list.users.vue:
users: "ユーザー"
add-user: "ユーザーを追加"

View file

@ -6,7 +6,7 @@
<div :class="$style.loading" v-if="fetching">
<mk-ellipsis-icon/>
</div>
<p :class="$style.empty" v-if="!fetching && empty">%fa:search%{{ q }}に関する投稿は見つかりませんでした</p>
<p :class="$style.empty" v-if="!fetching && empty">%i18n:no-posts-found-english%%fa:search%%i18n:left-quote%{{ q }}%i18n:right-quote%%i18n:no-posts-found-japanese%</p>
<mk-notes ref="timeline" :class="$style.notes" :more="existMore ? more : null"/>
</mk-ui>
</template>