diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/user_settings/user_settings.vue | 4 | ||||
| -rw-r--r-- | src/i18n/en.json | 2 |
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", |
