aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/components/post_status_form/post_status_form.vue2
-rw-r--r--src/i18n/messages.js3
2 files changed, 4 insertions, 1 deletions
diff --git a/src/components/post_status_form/post_status_form.vue b/src/components/post_status_form/post_status_form.vue
index ac5da442..8b8eeae0 100644
--- a/src/components/post_status_form/post_status_form.vue
+++ b/src/components/post_status_form/post_status_form.vue
@@ -35,7 +35,7 @@
<div class="visibility-tray">
<span class="text-format">
<select v-model="newStatus.contentType" class="form-control">
- <option value="text/plain">Plain text</option>
+ <option value="text/plain">{{$t('post_status.content_type.plain_text')}}</option>
<option value="text/html">HTML</option>
<option value="text/markdown">Markdown</option>
</select>
diff --git a/src/i18n/messages.js b/src/i18n/messages.js
index 30055192..bfe0d92b 100644
--- a/src/i18n/messages.js
+++ b/src/i18n/messages.js
@@ -392,6 +392,9 @@ const en = {
unlisted: 'Unlisted - Do not post to public timelines',
private: 'Followers-only - Post to followers only',
direct: 'Direct - Post to mentioned users only'
+ },
+ content_type: {
+ plain_text: 'Plain text'
}
},
finder: {