summaryrefslogtreecommitdiff
path: root/src/client/components/notifications.vue
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2020-07-25 01:56:52 +0900
committersyuilo <syuilotan@yahoo.co.jp>2020-07-25 01:56:52 +0900
commit166bc19131ae4b40bdd5e85269729f6eb5e3d931 (patch)
treeb7f51a3c0e64ecb26777cb3202d87005c7dfe67e /src/client/components/notifications.vue
parentperf(client): Use v-once for static contents (diff)
downloadmisskey-166bc19131ae4b40bdd5e85269729f6eb5e3d931.tar.gz
misskey-166bc19131ae4b40bdd5e85269729f6eb5e3d931.tar.bz2
misskey-166bc19131ae4b40bdd5e85269729f6eb5e3d931.zip
Revert "refactor(client): Use v-t for i18n"
This reverts commit 9c30b23358699a530f2bcb0f5ae6efe17146bcb3.
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 ec11e716c5..fa1e2fad71 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" v-t="'loadMore'"></template>
+ <template v-if="!moreFetching">{{ $t('loadMore') }}</template>
<template v-if="moreFetching"><mk-loading inline/></template>
</button>
- <p class="empty" v-if="empty" v-t="'noNotifications'"></p>
+ <p class="empty" v-if="empty">{{ $t('noNotifications') }}</p>
<mk-error v-if="error" @retry="init()"/>
</div>