summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2019-02-22 02:08:45 +0900
committersyuilo <syuilotan@yahoo.co.jp>2019-02-22 02:08:45 +0900
commit5d1d6bc028454706dc4fcf17a1f486a81fb2c9c9 (patch)
treeb9153b68c5d01038b93022694be3e8b399ea50e9 /src
parentFix #4340 (diff)
downloadsharkey-5d1d6bc028454706dc4fcf17a1f486a81fb2c9c9.tar.gz
sharkey-5d1d6bc028454706dc4fcf17a1f486a81fb2c9c9.tar.bz2
sharkey-5d1d6bc028454706dc4fcf17a1f486a81fb2c9c9.zip
Fix i18n
Diffstat (limited to 'src')
-rw-r--r--src/client/app/mobile/views/pages/user/home.notes.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/mobile/views/pages/user/home.notes.vue b/src/client/app/mobile/views/pages/user/home.notes.vue
index e30a533c6c..929f19f685 100644
--- a/src/client/app/mobile/views/pages/user/home.notes.vue
+++ b/src/client/app/mobile/views/pages/user/home.notes.vue
@@ -4,7 +4,7 @@
<div v-if="!fetching && notes.length > 0">
<mk-note-card v-for="note in notes" :key="note.id" :note="note"/>
</div>
- <p class="empty" v-if="!fetching && notes.length == 0">{{ $t('no-notes') }}</p>
+ <p class="empty" v-if="!fetching && notes.length == 0">{{ $t('@.no-notes') }}</p>
</div>
</template>