From f3fb5bbed4c4e239f8044139fc63460a0bd354c9 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Sat, 6 Jun 2020 15:36:00 -0500 Subject: [PATCH] Preferences: i18n --- app/soapbox/features/preferences/index.js | 47 +++++++------ app/soapbox/locales/ar.json | 21 ++++++ app/soapbox/locales/ast.json | 21 ++++++ app/soapbox/locales/bg.json | 21 ++++++ app/soapbox/locales/bn.json | 21 ++++++ app/soapbox/locales/br.json | 21 ++++++ app/soapbox/locales/ca.json | 21 ++++++ app/soapbox/locales/co.json | 21 ++++++ app/soapbox/locales/cs.json | 21 ++++++ app/soapbox/locales/cy.json | 21 ++++++ app/soapbox/locales/da.json | 21 ++++++ app/soapbox/locales/de.json | 21 ++++++ app/soapbox/locales/defaultMessages.json | 84 +++++++++++++++++++++++ app/soapbox/locales/el.json | 21 ++++++ app/soapbox/locales/en.json | 21 ++++++ app/soapbox/locales/eo.json | 21 ++++++ app/soapbox/locales/es-AR.json | 21 ++++++ app/soapbox/locales/es.json | 21 ++++++ app/soapbox/locales/et.json | 21 ++++++ app/soapbox/locales/eu.json | 21 ++++++ app/soapbox/locales/fa.json | 21 ++++++ app/soapbox/locales/fi.json | 21 ++++++ app/soapbox/locales/fr.json | 21 ++++++ app/soapbox/locales/ga.json | 21 ++++++ app/soapbox/locales/gl.json | 21 ++++++ app/soapbox/locales/he.json | 21 ++++++ app/soapbox/locales/hi.json | 21 ++++++ app/soapbox/locales/hr.json | 21 ++++++ app/soapbox/locales/hu.json | 21 ++++++ app/soapbox/locales/hy.json | 21 ++++++ app/soapbox/locales/id.json | 21 ++++++ app/soapbox/locales/io.json | 21 ++++++ app/soapbox/locales/it.json | 21 ++++++ app/soapbox/locales/ja.json | 21 ++++++ app/soapbox/locales/ka.json | 21 ++++++ app/soapbox/locales/kk.json | 21 ++++++ app/soapbox/locales/ko.json | 21 ++++++ app/soapbox/locales/lt.json | 21 ++++++ app/soapbox/locales/lv.json | 21 ++++++ app/soapbox/locales/mk.json | 21 ++++++ app/soapbox/locales/ms.json | 21 ++++++ app/soapbox/locales/nl.json | 21 ++++++ app/soapbox/locales/nn.json | 21 ++++++ app/soapbox/locales/no.json | 21 ++++++ app/soapbox/locales/oc.json | 21 ++++++ app/soapbox/locales/pl.json | 21 ++++++ app/soapbox/locales/pt-BR.json | 21 ++++++ app/soapbox/locales/pt.json | 21 ++++++ app/soapbox/locales/ro.json | 21 ++++++ app/soapbox/locales/ru.json | 21 ++++++ app/soapbox/locales/sk.json | 21 ++++++ app/soapbox/locales/sl.json | 21 ++++++ app/soapbox/locales/sq.json | 21 ++++++ app/soapbox/locales/sr-Latn.json | 21 ++++++ app/soapbox/locales/sr.json | 21 ++++++ app/soapbox/locales/sv.json | 21 ++++++ app/soapbox/locales/ta.json | 21 ++++++ app/soapbox/locales/te.json | 21 ++++++ app/soapbox/locales/th.json | 21 ++++++ app/soapbox/locales/tr.json | 21 ++++++ app/soapbox/locales/uk.json | 21 ++++++ app/soapbox/locales/zh-CN.json | 21 ++++++ app/soapbox/locales/zh-HK.json | 21 ++++++ app/soapbox/locales/zh-TW.json | 21 ++++++ 64 files changed, 1412 insertions(+), 21 deletions(-) diff --git a/app/soapbox/features/preferences/index.js b/app/soapbox/features/preferences/index.js index 3530c3530..148a70c57 100644 --- a/app/soapbox/features/preferences/index.js +++ b/app/soapbox/features/preferences/index.js @@ -1,6 +1,6 @@ import React from 'react'; import { connect } from 'react-redux'; -import { defineMessages, injectIntl } from 'react-intl'; +import { defineMessages, injectIntl, FormattedMessage } from 'react-intl'; import ImmutablePureComponent from 'react-immutable-pure-component'; import PropTypes from 'prop-types'; import ImmutablePropTypes from 'react-immutable-proptypes'; @@ -79,6 +79,8 @@ const languages = { const messages = defineMessages({ heading: { id: 'column.preferences', defaultMessage: 'Preferences' }, + themeLight: { id: 'preferences.options.theme_light', defaultMessage: 'Light' }, + themeDark: { id: 'preferences.options.theme_dark', defaultMessage: 'Dark' }, }); const mapStateToProps = state => ({ @@ -114,8 +116,8 @@ class Preferences extends ImmutablePureComponent { } + items={{ light: intl.formatMessage(messages.themeLight), dark: intl.formatMessage(messages.themeDark) }} defaultValue={settings.get('themeMode')} onChange={this.onSelectChange(['themeMode'])} /> @@ -123,7 +125,7 @@ class Preferences extends ImmutablePureComponent { } items={languages} defaultValue={settings.get('locale')} onChange={this.onSelectChange(['locale'])} @@ -131,22 +133,25 @@ class Preferences extends ImmutablePureComponent { - + } + onChange={this.onDefaultPrivacyChange} + > } + hint={} checked={settings.get('defaultPrivacy') === 'public'} value='public' /> } + hint={} checked={settings.get('defaultPrivacy') === 'unlisted'} value='unlisted' /> } + hint={} checked={settings.get('defaultPrivacy') === 'private'} value='private' /> @@ -155,45 +160,45 @@ class Preferences extends ImmutablePureComponent { } path={['unfollowModal']} /> } path={['boostModal']} /> } path={['deleteModal']} /> } path={['autoPlayGif']} /> } path={['expandSpoilers']} /> } path={['reduceMotion']} /> } path={['systemFont']} />
} path={['dyslexicFont']} />
} + hint={} path={['demetricator']} />
diff --git a/app/soapbox/locales/ar.json b/app/soapbox/locales/ar.json index 802b83976..ac46e4f8b 100644 --- a/app/soapbox/locales/ar.json +++ b/app/soapbox/locales/ar.json @@ -292,6 +292,27 @@ "poll.vote": "صَوّت", "poll_button.add_poll": "إضافة استطلاع للرأي", "poll_button.remove_poll": "إزالة استطلاع الرأي", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "اضبط خصوصية المنشور", "privacy.direct.long": "أنشر إلى المستخدمين المشار إليهم فقط", "privacy.direct.short": "مباشر", diff --git a/app/soapbox/locales/ast.json b/app/soapbox/locales/ast.json index 4b10750b0..115b677d6 100644 --- a/app/soapbox/locales/ast.json +++ b/app/soapbox/locales/ast.json @@ -292,6 +292,27 @@ "poll.vote": "Vote", "poll_button.add_poll": "Add a poll", "poll_button.remove_poll": "Remove poll", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Adjust post privacy", "privacy.direct.long": "Post to mentioned users only", "privacy.direct.short": "Direct", diff --git a/app/soapbox/locales/bg.json b/app/soapbox/locales/bg.json index 253f0a5cd..df8104cd0 100644 --- a/app/soapbox/locales/bg.json +++ b/app/soapbox/locales/bg.json @@ -292,6 +292,27 @@ "poll.vote": "Vote", "poll_button.add_poll": "Add a poll", "poll_button.remove_poll": "Remove poll", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Adjust post privacy", "privacy.direct.long": "Post to mentioned users only", "privacy.direct.short": "Direct", diff --git a/app/soapbox/locales/bn.json b/app/soapbox/locales/bn.json index d2f5be1b8..425dfd00e 100644 --- a/app/soapbox/locales/bn.json +++ b/app/soapbox/locales/bn.json @@ -292,6 +292,27 @@ "poll.vote": "ভোট", "poll_button.add_poll": "একটা নির্বাচন যোগ করতে", "poll_button.remove_poll": "নির্বাচন বাদ দিতে", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "লেখার গোপনীয়তা অবস্থা ঠিক করতে", "privacy.direct.long": "শুধুমাত্র উল্লেখিত ব্যবহারকারীদের কাছে লিখতে", "privacy.direct.short": "সরাসরি", diff --git a/app/soapbox/locales/br.json b/app/soapbox/locales/br.json index 8a9ba743e..9d2dfe68d 100644 --- a/app/soapbox/locales/br.json +++ b/app/soapbox/locales/br.json @@ -292,6 +292,27 @@ "poll.vote": "Vote", "poll_button.add_poll": "Add a poll", "poll_button.remove_poll": "Remove poll", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Adjust post privacy", "privacy.direct.long": "Post to mentioned users only", "privacy.direct.short": "Direct", diff --git a/app/soapbox/locales/ca.json b/app/soapbox/locales/ca.json index c111f7362..a840f8435 100644 --- a/app/soapbox/locales/ca.json +++ b/app/soapbox/locales/ca.json @@ -292,6 +292,27 @@ "poll.vote": "Vota", "poll_button.add_poll": "Afegeix una enquesta", "poll_button.remove_poll": "Elimina l'enquesta", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Ajusta l'estat de privacitat", "privacy.direct.long": "Publicar només per als usuaris esmentats", "privacy.direct.short": "Directe", diff --git a/app/soapbox/locales/co.json b/app/soapbox/locales/co.json index 5ab0341cf..16cb459d7 100644 --- a/app/soapbox/locales/co.json +++ b/app/soapbox/locales/co.json @@ -292,6 +292,27 @@ "poll.vote": "Vutà", "poll_button.add_poll": "Aghjunghje", "poll_button.remove_poll": "Toglie u scandagliu", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Mudificà a cunfidenzialità di u statutu", "privacy.direct.long": "Mandà solu à quelli chì so mintuvati", "privacy.direct.short": "Direttu", diff --git a/app/soapbox/locales/cs.json b/app/soapbox/locales/cs.json index bf7d6b04c..b67138c7d 100644 --- a/app/soapbox/locales/cs.json +++ b/app/soapbox/locales/cs.json @@ -292,6 +292,27 @@ "poll.vote": "Hlasovat", "poll_button.add_poll": "Přidat anketu", "poll_button.remove_poll": "Odstranit anketu", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Změnit soukromí tootu", "privacy.direct.long": "Odeslat pouze zmíněným uživatelům", "privacy.direct.short": "Přímý", diff --git a/app/soapbox/locales/cy.json b/app/soapbox/locales/cy.json index fa73d95d5..774eeb692 100644 --- a/app/soapbox/locales/cy.json +++ b/app/soapbox/locales/cy.json @@ -292,6 +292,27 @@ "poll.vote": "Pleidleisio", "poll_button.add_poll": "Ychwanegu pleidlais", "poll_button.remove_poll": "Tynnu pleidlais", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Addasu preifatrwdd y tŵt", "privacy.direct.long": "Cyhoeddi i'r defnyddwyr sy'n cael eu crybwyll yn unig", "privacy.direct.short": "Uniongyrchol", diff --git a/app/soapbox/locales/da.json b/app/soapbox/locales/da.json index f7b8c3b31..237b2f9ac 100644 --- a/app/soapbox/locales/da.json +++ b/app/soapbox/locales/da.json @@ -292,6 +292,27 @@ "poll.vote": "Stem", "poll_button.add_poll": "Tilføj en afstemning", "poll_button.remove_poll": "Fjern afstemning", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Skift status visningsindstillinger", "privacy.direct.long": "Udgiv kun til nævnte brugere", "privacy.direct.short": "Direkte", diff --git a/app/soapbox/locales/de.json b/app/soapbox/locales/de.json index 100833568..924ac1f35 100644 --- a/app/soapbox/locales/de.json +++ b/app/soapbox/locales/de.json @@ -292,6 +292,27 @@ "poll.vote": "Abstimmen", "poll_button.add_poll": "Eine Umfrage erstellen", "poll_button.remove_poll": "Umfrage entfernen", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Sichtbarkeit des Beitrags anpassen", "privacy.direct.long": "Wird nur an erwähnte Profile gesendet", "privacy.direct.short": "Direktnachricht", diff --git a/app/soapbox/locales/defaultMessages.json b/app/soapbox/locales/defaultMessages.json index 3a6fd0b49..b1af0fd17 100644 --- a/app/soapbox/locales/defaultMessages.json +++ b/app/soapbox/locales/defaultMessages.json @@ -2098,6 +2098,90 @@ { "defaultMessage": "Preferences", "id": "column.preferences" + }, + { + "defaultMessage": "Light", + "id": "preferences.options.theme_light" + }, + { + "defaultMessage": "Dark", + "id": "preferences.options.theme_dark" + }, + { + "defaultMessage": "Theme", + "id": "preferences.fields.theme_label" + }, + { + "defaultMessage": "Language", + "id": "preferences.fields.language_label" + }, + { + "defaultMessage": "Post privacy", + "id": "preferences.fields.privacy_label" + }, + { + "defaultMessage": "Public", + "id": "preferences.options.privacy_public" + }, + { + "defaultMessage": "Everyone can see", + "id": "preferences.hints.privacy_public" + }, + { + "defaultMessage": "Unlisted", + "id": "preferences.options.privacy_unlisted" + }, + { + "defaultMessage": "Everyone can see, but not listed on public timelines", + "id": "preferences.hints.privacy_unlisted" + }, + { + "defaultMessage": "Followers-only", + "id": "preferences.options.privacy_followers_only" + }, + { + "defaultMessage": "Only show to followers", + "id": "preferences.hints.privacy_followers_only" + }, + { + "defaultMessage": "Show confirmation dialog before unfollowing someone", + "id": "preferences.fields.unfollow_modal_label" + }, + { + "defaultMessage": "Show confirmation dialog before reposting", + "id": "preferences.fields.boost_modal_label" + }, + { + "defaultMessage": "Show confirmation dialog before deleting a post", + "id": "preferences.fields.delete_modal_label" + }, + { + "defaultMessage": "Auto-play animated GIFs", + "id": "preferences.fields.auto_play_gif_label" + }, + { + "defaultMessage": "Always expand posts marked with content warnings", + "id": "preferences.fields.expand_spoilers_label" + }, + { + "defaultMessage": "Reduce motion in animations", + "id": "preferences.fields.reduce_motion_label" + }, + { + "defaultMessage": "Use system's default font", + "id": "preferences.fields.system_font_label" + }, + { + "defaultMessage": "Dyslexic mode", + "id": "preferences.fields.dyslexic_font_label" + }, + { + "defaultMessage": "Use Demetricator", + "id": "preferences.fields.demetricator_label" + }, + { + "defaultMessage": "Decrease social media anxiety by hiding all numbers from the site.", + "id": "preferences.hints.demetricator" } ], "path": "app/soapbox/features/preferences/index.json" diff --git a/app/soapbox/locales/el.json b/app/soapbox/locales/el.json index 8c2829a7f..72ff05aae 100644 --- a/app/soapbox/locales/el.json +++ b/app/soapbox/locales/el.json @@ -292,6 +292,27 @@ "poll.vote": "Ψήφισε", "poll_button.add_poll": "Προσθήκη δημοσκόπησης", "poll_button.remove_poll": "Αφαίρεση δημοσκόπησης", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Προσαρμογή ιδιωτικότητας δημοσίευσης", "privacy.direct.long": "Δημοσίευση μόνο σε όσους και όσες αναφέρονται", "privacy.direct.short": "Προσωπικά", diff --git a/app/soapbox/locales/en.json b/app/soapbox/locales/en.json index 81cf33582..0f07c5500 100644 --- a/app/soapbox/locales/en.json +++ b/app/soapbox/locales/en.json @@ -292,6 +292,27 @@ "poll.vote": "Vote", "poll_button.add_poll": "Add a poll", "poll_button.remove_poll": "Remove poll", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Adjust post privacy", "privacy.direct.long": "Post to mentioned users only", "privacy.direct.short": "Direct", diff --git a/app/soapbox/locales/eo.json b/app/soapbox/locales/eo.json index e47b25e9b..d673928f6 100644 --- a/app/soapbox/locales/eo.json +++ b/app/soapbox/locales/eo.json @@ -292,6 +292,27 @@ "poll.vote": "Voĉdoni", "poll_button.add_poll": "Aldoni balotenketon", "poll_button.remove_poll": "Forigi balotenketon", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Agordi mesaĝan privatecon", "privacy.direct.long": "Afiŝi nur al menciitaj uzantoj", "privacy.direct.short": "Rekta", diff --git a/app/soapbox/locales/es-AR.json b/app/soapbox/locales/es-AR.json index 84bb24727..1a9d1499d 100644 --- a/app/soapbox/locales/es-AR.json +++ b/app/soapbox/locales/es-AR.json @@ -292,6 +292,27 @@ "poll.vote": "Votar", "poll_button.add_poll": "Agregar una encuesta", "poll_button.remove_poll": "Quitar encuesta", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Configurar privacidad de estado", "privacy.direct.long": "Enviar toot sólo a los usuarios mencionados", "privacy.direct.short": "Directo", diff --git a/app/soapbox/locales/es.json b/app/soapbox/locales/es.json index 162d4c087..090c424e5 100644 --- a/app/soapbox/locales/es.json +++ b/app/soapbox/locales/es.json @@ -292,6 +292,27 @@ "poll.vote": "Votar", "poll_button.add_poll": "Añadir una encuesta", "poll_button.remove_poll": "Eliminar encuesta", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Ajustar privacidad", "privacy.direct.long": "Sólo mostrar a los usuarios mencionados", "privacy.direct.short": "Directo", diff --git a/app/soapbox/locales/et.json b/app/soapbox/locales/et.json index c996c4891..99086ca70 100644 --- a/app/soapbox/locales/et.json +++ b/app/soapbox/locales/et.json @@ -292,6 +292,27 @@ "poll.vote": "Hääleta", "poll_button.add_poll": "Lisa küsitlus", "poll_button.remove_poll": "Eemalda küsitlus", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Muuda staatuse privaatsust", "privacy.direct.long": "Postita ainult mainitud kasutajatele", "privacy.direct.short": "Otsene", diff --git a/app/soapbox/locales/eu.json b/app/soapbox/locales/eu.json index 013ded660..f5a6bf555 100644 --- a/app/soapbox/locales/eu.json +++ b/app/soapbox/locales/eu.json @@ -292,6 +292,27 @@ "poll.vote": "Bozkatu", "poll_button.add_poll": "Gehitu inkesta bat", "poll_button.remove_poll": "Kendu inkesta", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Doitu mezuaren pribatutasuna", "privacy.direct.long": "Bidali aipatutako erabiltzaileei besterik ez", "privacy.direct.short": "Zuzena", diff --git a/app/soapbox/locales/fa.json b/app/soapbox/locales/fa.json index f25b78169..dbb28c70c 100644 --- a/app/soapbox/locales/fa.json +++ b/app/soapbox/locales/fa.json @@ -292,6 +292,27 @@ "poll.vote": "رأی", "poll_button.add_poll": "افزودن نظرسنجی", "poll_button.remove_poll": "حذف نظرسنجی", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "تنظیم حریم خصوصی نوشته‌ها", "privacy.direct.long": "تنها به کاربران نام‌برده‌شده نشان بده", "privacy.direct.short": "مستقیم", diff --git a/app/soapbox/locales/fi.json b/app/soapbox/locales/fi.json index 478479ccc..e94c612fa 100644 --- a/app/soapbox/locales/fi.json +++ b/app/soapbox/locales/fi.json @@ -292,6 +292,27 @@ "poll.vote": "Äänestä", "poll_button.add_poll": "Lisää kysely", "poll_button.remove_poll": "Poista kysely", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Säädä tuuttauksen näkyvyyttä", "privacy.direct.long": "Julkaise vain mainituille käyttäjille", "privacy.direct.short": "Suora viesti", diff --git a/app/soapbox/locales/fr.json b/app/soapbox/locales/fr.json index 00ea43100..692ea1988 100644 --- a/app/soapbox/locales/fr.json +++ b/app/soapbox/locales/fr.json @@ -292,6 +292,27 @@ "poll.vote": "Voter", "poll_button.add_poll": "Ajouter un sondage", "poll_button.remove_poll": "Supprimer le sondage", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Ajuster la confidentialité du message", "privacy.direct.long": "N’envoyer qu’aux personnes mentionnées", "privacy.direct.short": "Direct", diff --git a/app/soapbox/locales/ga.json b/app/soapbox/locales/ga.json index 6251570fe..b336a4399 100644 --- a/app/soapbox/locales/ga.json +++ b/app/soapbox/locales/ga.json @@ -292,6 +292,27 @@ "poll.vote": "Vote", "poll_button.add_poll": "Add a poll", "poll_button.remove_poll": "Remove poll", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Adjust post privacy", "privacy.direct.long": "Post to mentioned users only", "privacy.direct.short": "Direct", diff --git a/app/soapbox/locales/gl.json b/app/soapbox/locales/gl.json index c892accd2..532d280bd 100644 --- a/app/soapbox/locales/gl.json +++ b/app/soapbox/locales/gl.json @@ -292,6 +292,27 @@ "poll.vote": "Votar", "poll_button.add_poll": "Engadir sondaxe", "poll_button.remove_poll": "Eliminar sondaxe", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Axustar a intimidade do estado", "privacy.direct.long": "Enviar exclusivamente as usuarias mencionadas", "privacy.direct.short": "Directa", diff --git a/app/soapbox/locales/he.json b/app/soapbox/locales/he.json index ab0a944c3..a77ef8762 100644 --- a/app/soapbox/locales/he.json +++ b/app/soapbox/locales/he.json @@ -292,6 +292,27 @@ "poll.vote": "Vote", "poll_button.add_poll": "Add a poll", "poll_button.remove_poll": "Remove poll", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "שינוי פרטיות ההודעה", "privacy.direct.long": "הצג רק למי שהודעה זו פונה אליו", "privacy.direct.short": "הודעה ישירה", diff --git a/app/soapbox/locales/hi.json b/app/soapbox/locales/hi.json index 0acaf2450..f53c8990c 100644 --- a/app/soapbox/locales/hi.json +++ b/app/soapbox/locales/hi.json @@ -292,6 +292,27 @@ "poll.vote": "Vote", "poll_button.add_poll": "Add a poll", "poll_button.remove_poll": "Remove poll", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Adjust post privacy", "privacy.direct.long": "Post to mentioned users only", "privacy.direct.short": "Direct", diff --git a/app/soapbox/locales/hr.json b/app/soapbox/locales/hr.json index 69bd8af6f..2dc84776d 100644 --- a/app/soapbox/locales/hr.json +++ b/app/soapbox/locales/hr.json @@ -292,6 +292,27 @@ "poll.vote": "Vote", "poll_button.add_poll": "Add a poll", "poll_button.remove_poll": "Remove poll", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Podesi status privatnosti", "privacy.direct.long": "Prikaži samo spomenutim korisnicima", "privacy.direct.short": "Direktno", diff --git a/app/soapbox/locales/hu.json b/app/soapbox/locales/hu.json index d93a5528a..db32387bc 100644 --- a/app/soapbox/locales/hu.json +++ b/app/soapbox/locales/hu.json @@ -292,6 +292,27 @@ "poll.vote": "Szavazás", "poll_button.add_poll": "Új szavazás", "poll_button.remove_poll": "Szavazás törlése", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Tülk láthatóságának módosítása", "privacy.direct.long": "Tülk csak az említett felhasználóknak", "privacy.direct.short": "Közvetlen", diff --git a/app/soapbox/locales/hy.json b/app/soapbox/locales/hy.json index a962d0ed1..1f2ba163a 100644 --- a/app/soapbox/locales/hy.json +++ b/app/soapbox/locales/hy.json @@ -292,6 +292,27 @@ "poll.vote": "Vote", "poll_button.add_poll": "Add a poll", "poll_button.remove_poll": "Remove poll", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Կարգավորել թթի գաղտնիությունը", "privacy.direct.long": "Թթել միայն նշված օգտատերերի համար", "privacy.direct.short": "Հասցեագրված", diff --git a/app/soapbox/locales/id.json b/app/soapbox/locales/id.json index e8649cdfd..ece30ef88 100644 --- a/app/soapbox/locales/id.json +++ b/app/soapbox/locales/id.json @@ -292,6 +292,27 @@ "poll.vote": "Vote", "poll_button.add_poll": "Add a poll", "poll_button.remove_poll": "Remove poll", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Tentukan privasi status", "privacy.direct.long": "Kirim hanya ke pengguna yang disebut", "privacy.direct.short": "Langsung", diff --git a/app/soapbox/locales/io.json b/app/soapbox/locales/io.json index 32773fdc5..fd0949d03 100644 --- a/app/soapbox/locales/io.json +++ b/app/soapbox/locales/io.json @@ -292,6 +292,27 @@ "poll.vote": "Vote", "poll_button.add_poll": "Add a poll", "poll_button.remove_poll": "Remove poll", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Aranjar privateso di mesaji", "privacy.direct.long": "Sendar nur a mencionata uzeri", "privacy.direct.short": "Direte", diff --git a/app/soapbox/locales/it.json b/app/soapbox/locales/it.json index ac7454cfb..13de3903b 100644 --- a/app/soapbox/locales/it.json +++ b/app/soapbox/locales/it.json @@ -292,6 +292,27 @@ "poll.vote": "Vota", "poll_button.add_poll": "Aggiungi un sondaggio", "poll_button.remove_poll": "Rimuovi sondaggio", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Modifica privacy del post", "privacy.direct.long": "Invia solo a utenti menzionati", "privacy.direct.short": "Diretto in privato", diff --git a/app/soapbox/locales/ja.json b/app/soapbox/locales/ja.json index 765887151..ce3783ecf 100644 --- a/app/soapbox/locales/ja.json +++ b/app/soapbox/locales/ja.json @@ -292,6 +292,27 @@ "poll.vote": "投票", "poll_button.add_poll": "アンケートを追加", "poll_button.remove_poll": "アンケートを削除", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "公開範囲を変更", "privacy.direct.long": "メンションしたユーザーだけに公開", "privacy.direct.short": "ダイレクト", diff --git a/app/soapbox/locales/ka.json b/app/soapbox/locales/ka.json index 481738fa6..da4cb74b0 100644 --- a/app/soapbox/locales/ka.json +++ b/app/soapbox/locales/ka.json @@ -292,6 +292,27 @@ "poll.vote": "Vote", "poll_button.add_poll": "Add a poll", "poll_button.remove_poll": "Remove poll", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "სტატუსის კონფიდენციალურობის მითითება", "privacy.direct.long": "დაიპოსტოს მხოლოდ დასახელებულ მომხმარებლებთან", "privacy.direct.short": "პირდაპირი", diff --git a/app/soapbox/locales/kk.json b/app/soapbox/locales/kk.json index 9b5202efe..f19ad2dea 100644 --- a/app/soapbox/locales/kk.json +++ b/app/soapbox/locales/kk.json @@ -292,6 +292,27 @@ "poll.vote": "Дауыс беру", "poll_button.add_poll": "Сауалнама қосу", "poll_button.remove_poll": "Сауалнаманы өшіру", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Құпиялылықты реттеу", "privacy.direct.long": "Аталған адамдарға ғана көрінетін жазба", "privacy.direct.short": "Тікелей", diff --git a/app/soapbox/locales/ko.json b/app/soapbox/locales/ko.json index 4961dbfdc..39b0bcdc4 100644 --- a/app/soapbox/locales/ko.json +++ b/app/soapbox/locales/ko.json @@ -292,6 +292,27 @@ "poll.vote": "투표", "poll_button.add_poll": "투표 추가", "poll_button.remove_poll": "투표 삭제", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "포스트의 프라이버시 설정을 변경", "privacy.direct.long": "멘션한 사용자에게만 공개", "privacy.direct.short": "다이렉트", diff --git a/app/soapbox/locales/lt.json b/app/soapbox/locales/lt.json index 6075f9c45..a0304400f 100644 --- a/app/soapbox/locales/lt.json +++ b/app/soapbox/locales/lt.json @@ -292,6 +292,27 @@ "poll.vote": "Vote", "poll_button.add_poll": "Add a poll", "poll_button.remove_poll": "Remove poll", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Adjust post privacy", "privacy.direct.long": "Post to mentioned users only", "privacy.direct.short": "Direct", diff --git a/app/soapbox/locales/lv.json b/app/soapbox/locales/lv.json index b5c33cfbc..b21799dec 100644 --- a/app/soapbox/locales/lv.json +++ b/app/soapbox/locales/lv.json @@ -292,6 +292,27 @@ "poll.vote": "Vote", "poll_button.add_poll": "Add a poll", "poll_button.remove_poll": "Remove poll", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Adjust post privacy", "privacy.direct.long": "Post to mentioned users only", "privacy.direct.short": "Direct", diff --git a/app/soapbox/locales/mk.json b/app/soapbox/locales/mk.json index 48119dc0e..bb9e5990c 100644 --- a/app/soapbox/locales/mk.json +++ b/app/soapbox/locales/mk.json @@ -292,6 +292,27 @@ "poll.vote": "Vote", "poll_button.add_poll": "Add a poll", "poll_button.remove_poll": "Remove poll", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Adjust post privacy", "privacy.direct.long": "Post to mentioned users only", "privacy.direct.short": "Direct", diff --git a/app/soapbox/locales/ms.json b/app/soapbox/locales/ms.json index 830c3b8d5..5b0c95ebb 100644 --- a/app/soapbox/locales/ms.json +++ b/app/soapbox/locales/ms.json @@ -292,6 +292,27 @@ "poll.vote": "Vote", "poll_button.add_poll": "Add a poll", "poll_button.remove_poll": "Remove poll", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Adjust post privacy", "privacy.direct.long": "Post to mentioned users only", "privacy.direct.short": "Direct", diff --git a/app/soapbox/locales/nl.json b/app/soapbox/locales/nl.json index 3bfcef44f..249b63b50 100644 --- a/app/soapbox/locales/nl.json +++ b/app/soapbox/locales/nl.json @@ -292,6 +292,27 @@ "poll.vote": "Stemmen", "poll_button.add_poll": "Poll toevoegen", "poll_button.remove_poll": "Poll verwijderen", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Zichtbaarheid toot aanpassen", "privacy.direct.long": "Alleen aan vermelde gebruikers tonen", "privacy.direct.short": "Direct", diff --git a/app/soapbox/locales/nn.json b/app/soapbox/locales/nn.json index 25228000e..8466f17b0 100644 --- a/app/soapbox/locales/nn.json +++ b/app/soapbox/locales/nn.json @@ -292,6 +292,27 @@ "poll.vote": "Vote", "poll_button.add_poll": "Add a poll", "poll_button.remove_poll": "Remove poll", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Adjust post privacy", "privacy.direct.long": "Post to mentioned users only", "privacy.direct.short": "Direct", diff --git a/app/soapbox/locales/no.json b/app/soapbox/locales/no.json index d1301021e..fc04ca6d5 100644 --- a/app/soapbox/locales/no.json +++ b/app/soapbox/locales/no.json @@ -292,6 +292,27 @@ "poll.vote": "Vote", "poll_button.add_poll": "Add a poll", "poll_button.remove_poll": "Remove poll", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Justér synlighet", "privacy.direct.long": "Post kun til nevnte brukere", "privacy.direct.short": "Direkte", diff --git a/app/soapbox/locales/oc.json b/app/soapbox/locales/oc.json index 9ee10dc30..527559081 100644 --- a/app/soapbox/locales/oc.json +++ b/app/soapbox/locales/oc.json @@ -292,6 +292,27 @@ "poll.vote": "Votar", "poll_button.add_poll": "Ajustar un sondatge", "poll_button.remove_poll": "Levar lo sondatge", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Ajustar la confidencialitat del messatge", "privacy.direct.long": "Mostrar pas qu’a las personas mencionadas", "privacy.direct.short": "Dirècte", diff --git a/app/soapbox/locales/pl.json b/app/soapbox/locales/pl.json index e7eaa2829..abc7500ab 100644 --- a/app/soapbox/locales/pl.json +++ b/app/soapbox/locales/pl.json @@ -292,6 +292,27 @@ "poll.vote": "Zagłosuj", "poll_button.add_poll": "Dodaj głosowanie", "poll_button.remove_poll": "Usuń głosowanie", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Dostosuj widoczność wpisów", "privacy.direct.long": "Widoczny tylko dla wspomnianych", "privacy.direct.short": "Bezpośrednio", diff --git a/app/soapbox/locales/pt-BR.json b/app/soapbox/locales/pt-BR.json index 35e63febf..c6085b107 100644 --- a/app/soapbox/locales/pt-BR.json +++ b/app/soapbox/locales/pt-BR.json @@ -292,6 +292,27 @@ "poll.vote": "Votar", "poll_button.add_poll": "Adicionar uma enquete", "poll_button.remove_poll": "Remover enquete", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Ajustar a privacidade da mensagem", "privacy.direct.long": "Apenas para usuários mencionados", "privacy.direct.short": "Direta", diff --git a/app/soapbox/locales/pt.json b/app/soapbox/locales/pt.json index 41c7c39dc..ba37e1ab6 100644 --- a/app/soapbox/locales/pt.json +++ b/app/soapbox/locales/pt.json @@ -292,6 +292,27 @@ "poll.vote": "Votar", "poll_button.add_poll": "Adicionar votação", "poll_button.remove_poll": "Remover votação", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Ajustar a privacidade da mensagem", "privacy.direct.long": "Apenas para utilizadores mencionados", "privacy.direct.short": "Directo", diff --git a/app/soapbox/locales/ro.json b/app/soapbox/locales/ro.json index e8c91ebb3..6aa97f5bf 100644 --- a/app/soapbox/locales/ro.json +++ b/app/soapbox/locales/ro.json @@ -292,6 +292,27 @@ "poll.vote": "Vote", "poll_button.add_poll": "Add a poll", "poll_button.remove_poll": "Remove poll", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Cine vede asta", "privacy.direct.long": "Postează doar pentru utilizatorii menționați", "privacy.direct.short": "Direct", diff --git a/app/soapbox/locales/ru.json b/app/soapbox/locales/ru.json index b908c87ac..095382262 100644 --- a/app/soapbox/locales/ru.json +++ b/app/soapbox/locales/ru.json @@ -292,6 +292,27 @@ "poll.vote": "Голосовать", "poll_button.add_poll": "Добавить опрос", "poll_button.remove_poll": "Удалить опрос", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Изменить видимость статуса", "privacy.direct.long": "Показать только упомянутым", "privacy.direct.short": "Направленный", diff --git a/app/soapbox/locales/sk.json b/app/soapbox/locales/sk.json index e42ea15b9..1b753e045 100644 --- a/app/soapbox/locales/sk.json +++ b/app/soapbox/locales/sk.json @@ -292,6 +292,27 @@ "poll.vote": "Hlasuj", "poll_button.add_poll": "Pridaj anketu", "poll_button.remove_poll": "Odstráň anketu", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Uprav súkromie príspevku", "privacy.direct.long": "Pošli iba spomenutým užívateľom", "privacy.direct.short": "Súkromne", diff --git a/app/soapbox/locales/sl.json b/app/soapbox/locales/sl.json index 2fa90820f..03888adb8 100644 --- a/app/soapbox/locales/sl.json +++ b/app/soapbox/locales/sl.json @@ -292,6 +292,27 @@ "poll.vote": "Glasuj", "poll_button.add_poll": "Dodaj anketo", "poll_button.remove_poll": "Odstrani anketo", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Prilagodi zasebnost statusa", "privacy.direct.long": "Objavi samo omenjenim uporabnikom", "privacy.direct.short": "Neposredno", diff --git a/app/soapbox/locales/sq.json b/app/soapbox/locales/sq.json index 974006f2f..aa8f47087 100644 --- a/app/soapbox/locales/sq.json +++ b/app/soapbox/locales/sq.json @@ -292,6 +292,27 @@ "poll.vote": "Vote", "poll_button.add_poll": "Add a poll", "poll_button.remove_poll": "Remove poll", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Rregulloni privatësi gjendje", "privacy.direct.long": "Postoja vetëm përdoruesve të përmendur", "privacy.direct.short": "I drejtpërdrejtë", diff --git a/app/soapbox/locales/sr-Latn.json b/app/soapbox/locales/sr-Latn.json index c54e4bbc4..84c505d50 100644 --- a/app/soapbox/locales/sr-Latn.json +++ b/app/soapbox/locales/sr-Latn.json @@ -292,6 +292,27 @@ "poll.vote": "Vote", "poll_button.add_poll": "Add a poll", "poll_button.remove_poll": "Remove poll", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Podesi status privatnosti", "privacy.direct.long": "Objavi samo korisnicima koji su pomenuti", "privacy.direct.short": "Direktno", diff --git a/app/soapbox/locales/sr.json b/app/soapbox/locales/sr.json index 220e322f7..7bb2fba60 100644 --- a/app/soapbox/locales/sr.json +++ b/app/soapbox/locales/sr.json @@ -292,6 +292,27 @@ "poll.vote": "Vote", "poll_button.add_poll": "Add a poll", "poll_button.remove_poll": "Remove poll", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Подеси статус приватности", "privacy.direct.long": "Објави само корисницима који су поменути", "privacy.direct.short": "Директно", diff --git a/app/soapbox/locales/sv.json b/app/soapbox/locales/sv.json index f6f0f241f..ad73d77b5 100644 --- a/app/soapbox/locales/sv.json +++ b/app/soapbox/locales/sv.json @@ -292,6 +292,27 @@ "poll.vote": "Rösta", "poll_button.add_poll": "Lägg till en omröstning", "poll_button.remove_poll": "Ta bort omröstning", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Justera sekretess", "privacy.direct.long": "Skicka endast till nämnda användare", "privacy.direct.short": "Direkt", diff --git a/app/soapbox/locales/ta.json b/app/soapbox/locales/ta.json index 8e50f00d8..2f2e2c590 100644 --- a/app/soapbox/locales/ta.json +++ b/app/soapbox/locales/ta.json @@ -292,6 +292,27 @@ "poll.vote": "வாக்களி", "poll_button.add_poll": "வாக்கெடுப்பைச் சேர்க்கவும்", "poll_button.remove_poll": "வாக்கெடுப்பை அகற்று", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "நிலை தனியுரிமை", "privacy.direct.long": "குறிப்பிடப்பட்ட பயனர்களுக்கு மட்டுமே இடுகையிடவும்", "privacy.direct.short": "நடத்து", diff --git a/app/soapbox/locales/te.json b/app/soapbox/locales/te.json index 3acedaddf..c20fdd03b 100644 --- a/app/soapbox/locales/te.json +++ b/app/soapbox/locales/te.json @@ -292,6 +292,27 @@ "poll.vote": "ఎన్నుకోండి", "poll_button.add_poll": "ఒక ఎన్నికను చేర్చు", "poll_button.remove_poll": "ఎన్నికను తొలగించు", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "స్టేటస్ గోప్యతను సర్దుబాటు చేయండి", "privacy.direct.long": "పేర్కొన్న వినియోగదారులకు మాత్రమే పోస్ట్ చేయి", "privacy.direct.short": "ప్రత్యక్ష", diff --git a/app/soapbox/locales/th.json b/app/soapbox/locales/th.json index 0014b1ad1..8e1f2a730 100644 --- a/app/soapbox/locales/th.json +++ b/app/soapbox/locales/th.json @@ -292,6 +292,27 @@ "poll.vote": "ลงคะแนน", "poll_button.add_poll": "เพิ่มโพล", "poll_button.remove_poll": "เอาโพลออก", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "ปรับเปลี่ยนความเป็นส่วนตัวของสถานะ", "privacy.direct.long": "โพสต์ไปยังผู้ใช้ที่กล่าวถึงเท่านั้น", "privacy.direct.short": "โดยตรง", diff --git a/app/soapbox/locales/tr.json b/app/soapbox/locales/tr.json index 0a8a96605..6cb7b2d74 100644 --- a/app/soapbox/locales/tr.json +++ b/app/soapbox/locales/tr.json @@ -292,6 +292,27 @@ "poll.vote": "Oy ver", "poll_button.add_poll": "Bir anket ekleyin", "poll_button.remove_poll": "Anket kaldır", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Gönderi gizliliğini ayarla", "privacy.direct.long": "Sadece bahsedilen kişilere gönder", "privacy.direct.short": "Direkt", diff --git a/app/soapbox/locales/uk.json b/app/soapbox/locales/uk.json index 3c5c3829e..e36668204 100644 --- a/app/soapbox/locales/uk.json +++ b/app/soapbox/locales/uk.json @@ -292,6 +292,27 @@ "poll.vote": "Проголосувати", "poll_button.add_poll": "Додати опитування", "poll_button.remove_poll": "Видалити опитування", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "Змінити видимість допису", "privacy.direct.long": "Показати тільки згаданим користувачам", "privacy.direct.short": "Особисто", diff --git a/app/soapbox/locales/zh-CN.json b/app/soapbox/locales/zh-CN.json index 93964b4ec..1679de7de 100644 --- a/app/soapbox/locales/zh-CN.json +++ b/app/soapbox/locales/zh-CN.json @@ -292,6 +292,27 @@ "poll.vote": "投票", "poll_button.add_poll": "发起投票", "poll_button.remove_poll": "移除投票", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "设置嘟文可见范围", "privacy.direct.long": "只有被提及的用户能看到", "privacy.direct.short": "私信", diff --git a/app/soapbox/locales/zh-HK.json b/app/soapbox/locales/zh-HK.json index df45adb4b..d80d7b33b 100644 --- a/app/soapbox/locales/zh-HK.json +++ b/app/soapbox/locales/zh-HK.json @@ -292,6 +292,27 @@ "poll.vote": "Vote", "poll_button.add_poll": "Add a poll", "poll_button.remove_poll": "Remove poll", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "調整私隱設定", "privacy.direct.long": "只有提及的用戶能看到", "privacy.direct.short": "私人訊息", diff --git a/app/soapbox/locales/zh-TW.json b/app/soapbox/locales/zh-TW.json index 8071b910d..39ea120fe 100644 --- a/app/soapbox/locales/zh-TW.json +++ b/app/soapbox/locales/zh-TW.json @@ -292,6 +292,27 @@ "poll.vote": "投票", "poll_button.add_poll": "建立投票", "poll_button.remove_poll": "移除投票", + "preferences.fields.auto_play_gif_label": "Auto-play animated GIFs", + "preferences.fields.boost_modal_label": "Show confirmation dialog before reposting", + "preferences.fields.delete_modal_label": "Show confirmation dialog before deleting a post", + "preferences.fields.demetricator_label": "Use Demetricator", + "preferences.fields.dyslexic_font_label": "Dyslexic mode", + "preferences.fields.expand_spoilers_label": "Always expand posts marked with content warnings", + "preferences.fields.language_label": "Language", + "preferences.fields.privacy_label": "Post privacy", + "preferences.fields.reduce_motion_label": "Reduce motion in animations", + "preferences.fields.system_font_label": "Use system's default font", + "preferences.fields.theme_label": "Theme", + "preferences.fields.unfollow_modal_label": "Show confirmation dialog before unfollowing someone", + "preferences.hints.demetricator": "Decrease social media anxiety by hiding all numbers from the site.", + "preferences.hints.privacy_followers_only": "Only show to followers", + "preferences.hints.privacy_public": "Everyone can see", + "preferences.hints.privacy_unlisted": "Everyone can see, but not listed on public timelines", + "preferences.options.privacy_followers_only": "Followers-only", + "preferences.options.privacy_public": "Public", + "preferences.options.privacy_unlisted": "Unlisted", + "preferences.options.theme_dark": "Dark", + "preferences.options.theme_light": "Light", "privacy.change": "調整隱私狀態", "privacy.direct.long": "只有被提到的使用者能看到", "privacy.direct.short": "私訊",