diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-08-02 08:04:16 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-08-02 08:04:16 +0900 |
| commit | 1d4f4b829f9594ee8f962f434f7a1c028c0e665f (patch) | |
| tree | 6493769dc35d890aa8fcd9dabb1cecfde45183b0 /src/client | |
| parent | Update (diff) | |
| download | sharkey-1d4f4b829f9594ee8f962f434f7a1c028c0e665f.tar.gz sharkey-1d4f4b829f9594ee8f962f434f7a1c028c0e665f.tar.bz2 sharkey-1d4f4b829f9594ee8f962f434f7a1c028c0e665f.zip | |
Improve i18n
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/app/desktop/views/pages/search.vue | 2 | ||||
| -rw-r--r-- | src/client/app/desktop/views/pages/tag.vue | 2 | ||||
| -rw-r--r-- | src/client/app/mobile/views/pages/tag.vue | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/client/app/desktop/views/pages/search.vue b/src/client/app/desktop/views/pages/search.vue index 2db9617db4..0b6c9a032a 100644 --- a/src/client/app/desktop/views/pages/search.vue +++ b/src/client/app/desktop/views/pages/search.vue @@ -7,7 +7,7 @@ <mk-ellipsis-icon/> </div> <p :class="$style.notAvailable" v-if="!fetching && notAvailable">%i18n:@not-available%</p> - <p :class="$style.empty" v-if="!fetching && empty">%fa:search%%i18n:@not-found-text-english%%i18n:@not-found-quotes1%{{ q }}%i18n:@not-found-quotes2%%i18n:@not-found-text-japanese%</p> + <p :class="$style.empty" v-if="!fetching && empty">%fa:search% {{ '%i18n:not-found%'.split('{}')[0] }}{{ q }}{{ '%i18n:not-found%'.split('{}')[1] }}</p> <mk-notes ref="timeline" :class="$style.notes" :more="existMore ? more : null"/> </mk-ui> </template> diff --git a/src/client/app/desktop/views/pages/tag.vue b/src/client/app/desktop/views/pages/tag.vue index 19f7ad1c1b..04b377e0ab 100644 --- a/src/client/app/desktop/views/pages/tag.vue +++ b/src/client/app/desktop/views/pages/tag.vue @@ -6,7 +6,7 @@ <div :class="$style.loading" v-if="fetching"> <mk-ellipsis-icon/> </div> - <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> + <p :class="$style.empty" v-if="!fetching && empty">%fa:search% {{ '%i18n:no-posts-found%'.split('{}')[0] }}{{ q }}{{ '%i18n:no-posts-found%'.split('{}')[1] }}</p> <mk-notes ref="timeline" :class="$style.notes" :more="existMore ? more : null"/> </mk-ui> </template> diff --git a/src/client/app/mobile/views/pages/tag.vue b/src/client/app/mobile/views/pages/tag.vue index c94fcec7da..a545e2b839 100644 --- a/src/client/app/mobile/views/pages/tag.vue +++ b/src/client/app/mobile/views/pages/tag.vue @@ -3,7 +3,7 @@ <span slot="header">%fa:hashtag%{{ $route.params.tag }}</span> <main> - <p v-if="!fetching && empty">%fa:search%%i18n:@no-posts-found-english%%i18n:@left-quote%{{ q }}%i18n:@right-quote%%i18n:@no-posts-found-japanese%</p> + <p v-if="!fetching && empty">%fa:search% {{ '%i18n:no-posts-found%'.split('{}')[0] }}{{ q }}{{ '%i18n:no-posts-found%'.split('{}')[1] }}</p> <mk-notes ref="timeline" :more="existMore ? more : null"/> </main> </mk-ui> |