diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-02-15 06:06:24 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-02-15 06:06:24 +0900 |
| commit | 8e3d884081a37ad57786c978b1a3fc4265ce8f04 (patch) | |
| tree | cbf6417cf5f7806573a54eee8f51e301d1a78f7f /src/client | |
| parent | :art: (diff) | |
| parent | Add i18n when timelines are empty (#4261) (diff) | |
| download | misskey-8e3d884081a37ad57786c978b1a3fc4265ce8f04.tar.gz misskey-8e3d884081a37ad57786c978b1a3fc4265ce8f04.tar.bz2 misskey-8e3d884081a37ad57786c978b1a3fc4265ce8f04.zip | |
Merge branch 'develop' of https://github.com/syuilo/misskey into develop
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/app/mobile/views/pages/home.timeline.vue | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/client/app/mobile/views/pages/home.timeline.vue b/src/client/app/mobile/views/pages/home.timeline.vue index 91c99bc8fe..50c0ad0e88 100644 --- a/src/client/app/mobile/views/pages/home.timeline.vue +++ b/src/client/app/mobile/views/pages/home.timeline.vue @@ -4,8 +4,7 @@ <mk-notes ref="timeline" :more="existMore ? more : null"> <div slot="empty"> - <fa :icon="['far', 'comments']"/> - %i18n:@empty% + <fa :icon="['far', 'comments']"/>{{ $t('empty') }} </div> </mk-notes> </div> @@ -13,10 +12,13 @@ <script lang="ts"> import Vue from 'vue'; +import i18n from '../../../i18n'; const fetchLimit = 10; export default Vue.extend({ + i18n: i18n('mobile/views/pages/home.timeline.vue'), + props: { src: { type: String, |