summaryrefslogtreecommitdiff
path: root/src/client/components/notifications.vue
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2020-07-25 01:36:39 +0900
committersyuilo <syuilotan@yahoo.co.jp>2020-07-25 01:36:39 +0900
commit9c30b23358699a530f2bcb0f5ae6efe17146bcb3 (patch)
treed57bb7911e273fcfed0de31c89101934d0ea2c8b /src/client/components/notifications.vue
parentFix #6566 (#6577) (diff)
downloadmisskey-9c30b23358699a530f2bcb0f5ae6efe17146bcb3.tar.gz
misskey-9c30b23358699a530f2bcb0f5ae6efe17146bcb3.tar.bz2
misskey-9c30b23358699a530f2bcb0f5ae6efe17146bcb3.zip
refactor(client): Use v-t for i18n
Diffstat (limited to 'src/client/components/notifications.vue')
-rw-r--r--src/client/components/notifications.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/components/notifications.vue b/src/client/components/notifications.vue
index fa1e2fad71..ec11e716c5 100644
--- a/src/client/components/notifications.vue
+++ b/src/client/components/notifications.vue
@@ -6,11 +6,11 @@
</x-list>
<button class="_panel _button" ref="loadMore" v-show="more" :disabled="moreFetching" :style="{ cursor: moreFetching ? 'wait' : 'pointer' }">
- <template v-if="!moreFetching">{{ $t('loadMore') }}</template>
+ <template v-if="!moreFetching" v-t="'loadMore'"></template>
<template v-if="moreFetching"><mk-loading inline/></template>
</button>
- <p class="empty" v-if="empty">{{ $t('noNotifications') }}</p>
+ <p class="empty" v-if="empty" v-t="'noNotifications'"></p>
<mk-error v-if="error" @retry="init()"/>
</div>