aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortaehoon <th.dev91@gmail.com>2019-02-14 03:19:07 -0500
committertaehoon <th.dev91@gmail.com>2019-02-20 13:30:31 -0500
commit395d21290462525209ee4446746f14f996adf6b2 (patch)
tree8cfcdb18ef0009c4f4d12519323530412569d920 /src
parenta5162bd636880f53a8a47fbd547971f2aaead381 (diff)
Add new strings to i18n
Diffstat (limited to 'src')
-rw-r--r--src/components/user_settings/user_settings.vue4
-rw-r--r--src/i18n/en.json2
2 files changed, 4 insertions, 2 deletions
diff --git a/src/components/user_settings/user_settings.vue b/src/components/user_settings/user_settings.vue
index 520a8cbe..e18ca4ee 100644
--- a/src/components/user_settings/user_settings.vue
+++ b/src/components/user_settings/user_settings.vue
@@ -165,13 +165,13 @@
<div :label="$t('settings.blocks_tab')">
<block-list :refresh="true">
- <template slot="empty">No blocks</template>
+ <template slot="empty">{{$t('settings.no_blocks')}}</template>
</block-list>
</div>
<div :label="$t('settings.mutes_tab')">
<mute-list :refresh="true">
- <template slot="empty">No mutes</template>
+ <template slot="empty">{{$t('settings.no_mutes')}}</template>
</mute-list>
</div>
</tab-switcher>
diff --git a/src/i18n/en.json b/src/i18n/en.json
index b41b6db9..93819c2c 100644
--- a/src/i18n/en.json
+++ b/src/i18n/en.json
@@ -177,6 +177,8 @@
"notification_visibility_mentions": "Mentions",
"notification_visibility_repeats": "Repeats",
"no_rich_text_description": "Strip rich text formatting from all posts",
+ "no_blocks": "No blocks",
+ "no_mutes": "No mutes",
"hide_follows_description": "Don't show who I'm following",
"hide_followers_description": "Don't show who's following me",
"show_admin_badge": "Show Admin badge in my profile",