diff options
Diffstat (limited to 'src/client/components/notifications.vue')
| -rw-r--r-- | src/client/components/notifications.vue | 4 |
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> |