summaryrefslogtreecommitdiff
path: root/src/client/app/desktop/views/pages/user/user.timeline.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/app/desktop/views/pages/user/user.timeline.vue')
-rw-r--r--src/client/app/desktop/views/pages/user/user.timeline.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client/app/desktop/views/pages/user/user.timeline.vue b/src/client/app/desktop/views/pages/user/user.timeline.vue
index 9c9840c190..576a285104 100644
--- a/src/client/app/desktop/views/pages/user/user.timeline.vue
+++ b/src/client/app/desktop/views/pages/user/user.timeline.vue
@@ -1,15 +1,15 @@
<template>
<div class="timeline">
<header>
- <span :data-active="mode == 'default'" @click="mode = 'default'">投稿</span>
- <span :data-active="mode == 'with-replies'" @click="mode = 'with-replies'">投稿と返信</span>
- <span :data-active="mode == 'with-media'" @click="mode = 'with-media'">メディア</span>
+ <span :data-active="mode == 'default'" @click="mode = 'default'">%i18n:@default%</span>
+ <span :data-active="mode == 'with-replies'" @click="mode = 'with-replies'">%i18n:@with-replies%</span>
+ <span :data-active="mode == 'with-media'" @click="mode = 'with-media'">%i18n:@with-media%</span>
</header>
<div class="loading" v-if="fetching">
<mk-ellipsis-icon/>
</div>
<mk-notes ref="timeline" :more="existMore ? more : null">
- <p class="empty" slot="empty">%fa:R comments%このユーザーはまだ何も投稿していないようです。</p>
+ <p class="empty" slot="empty">%fa:R comments%%i18n:@empty%</p>
</mk-notes>
</div>
</template>