summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2019-02-15 06:06:24 +0900
committersyuilo <syuilotan@yahoo.co.jp>2019-02-15 06:06:24 +0900
commit8e3d884081a37ad57786c978b1a3fc4265ce8f04 (patch)
treecbf6417cf5f7806573a54eee8f51e301d1a78f7f /src/client
parent:art: (diff)
parentAdd i18n when timelines are empty (#4261) (diff)
downloadmisskey-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.vue6
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,