aboutsummaryrefslogtreecommitdiff
path: root/src/components/settings/settings.vue
diff options
context:
space:
mode:
authorshpuld <shp@cock.li>2017-11-08 11:27:22 +0200
committershpuld <shp@cock.li>2017-11-08 11:27:22 +0200
commit176421163b85ce2e5d63d82c914c245a15234132 (patch)
tree10d103e9e8851e8301137e3928391be02309d4ae /src/components/settings/settings.vue
parentbfa04bfb11909c9e4af108973b5f34eaae6b9472 (diff)
parent5dca57cc058bfb95e40e32714057cbf0d24ce679 (diff)
Merge branch 'develop' of git.pleroma.social:pleroma/pleroma-fe into fix/polish-user-finder-and-nav-buttons
Diffstat (limited to 'src/components/settings/settings.vue')
-rw-r--r--src/components/settings/settings.vue20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/components/settings/settings.vue b/src/components/settings/settings.vue
index 6ff96fec..5978e4ed 100644
--- a/src/components/settings/settings.vue
+++ b/src/components/settings/settings.vue
@@ -1,40 +1,40 @@
<template>
<div class="settings panel panel-default base00-background">
<div class="panel-heading base01-background base04">
- Settings
+ {{$t('settings.settings')}}
</div>
<div class="panel-body">
<div class="setting-item">
- <h2>Theme</h2>
+ <h2>{{$t('settings.theme')}}</h2>
<style-switcher></style-switcher>
</div>
<div class="setting-item">
- <h2>Filtering</h2>
- <p>All notices containing these words will be muted, one per line</p>
+ <h2>{{$t('settings.filtering')}}</h2>
+ <p>{{$t('settings.filtering_explanation')}}</p>
<textarea id="muteWords" v-model="muteWordsString"></textarea>
</div>
<div class="setting-item">
- <h2>Attachments</h2>
+ <h2>{{$t('settings.attachments')}}</h2>
<ul class="setting-list">
<li>
<input type="checkbox" id="hideAttachments" v-model="hideAttachmentsLocal">
- <label for="hideAttachments">Hide attachments in timeline</label>
+ <label for="hideAttachments">{{$t('settings.hide_attachments_in_tl')}}</label>
</li>
<li>
<input type="checkbox" id="hideAttachmentsInConv" v-model="hideAttachmentsInConvLocal">
- <label for="hideAttachmentsInConv">Hide attachments in conversations</label>
+ <label for="hideAttachmentsInConv">{{$t('settings.hide_attachments_in_convo')}}</label>
</li>
<li>
<input type="checkbox" id="hideNsfw" v-model="hideNsfwLocal">
- <label for="hideNsfw">Enable clickthrough NSFW attachment hiding</label>
+ <label for="hideNsfw">{{$t('settings.nsfw_clickthrough')}}</label>
</li>
<li>
<input type="checkbox" id="autoLoad" v-model="autoLoadLocal">
- <label for="autoLoad">Enable automatic loading when scrolled to the bottom</label>
+ <label for="autoLoad">{{$t('settings.autoload')}}</label>
</li>
<li>
<input type="checkbox" id="hoverPreview" v-model="hoverPreviewLocal">
- <label for="hoverPreview">Enable reply-link preview on mouse hover</label>
+ <label for="hoverPreview">{{$t('settings.reply_link_preview')}}</label>
</li>
</ul>
</div>