From d0ae77e431d2925408476a5f683a4a2769ec8058 Mon Sep 17 00:00:00 2001 From: crockwave Date: Sat, 27 Jun 2020 18:21:06 -0500 Subject: [PATCH 1/6] Began editing features/security to include Deactivate Account feature --- app/soapbox/features/security/index.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/app/soapbox/features/security/index.js b/app/soapbox/features/security/index.js index c3d5fe41f..983770136 100644 --- a/app/soapbox/features/security/index.js +++ b/app/soapbox/features/security/index.js @@ -19,6 +19,16 @@ import { } from 'soapbox/actions/auth'; import { showAlert } from 'soapbox/actions/alerts'; +/* +Security settings page for user account +Routed to /auth/edit +Includes following features: +- Change Email +- Change Password +- Sessions +- Deactivate Account +*/ + const messages = defineMessages({ heading: { id: 'column.security', defaultMessage: 'Security' }, submit: { id: 'security.submit', defaultMessage: 'Save changes' }, @@ -35,6 +45,10 @@ const messages = defineMessages({ emailHeader: { id: 'security.headers.update_email', defaultMessage: 'Change Email' }, passwordHeader: { id: 'security.headers.update_password', defaultMessage: 'Change Password' }, tokenHeader: { id: 'security.headers.tokens', defaultMessage: 'Sessions' }, + deactivateHeader: { id: 'security.headers.deactivate', defaultMessage: 'Deactivate Account' }, + deactivateText: { id: 'security.text.deactivate', defaultMessage: 'Deactivate your account. \n This action will hide your profile and your posts on this server. \n \ + However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was distributed to other servers will remain on those \ + servers.' }, }); export default @injectIntl From 36606154404001831863190e559c027c78a4bb70 Mon Sep 17 00:00:00 2001 From: crockwave Date: Sat, 27 Jun 2020 19:55:24 -0500 Subject: [PATCH 2/6] finished editing features/security to accommodate account deactivation --- app/soapbox/features/security/index.js | 74 ++++++++++++++++++++++++-- 1 file changed, 71 insertions(+), 3 deletions(-) diff --git a/app/soapbox/features/security/index.js b/app/soapbox/features/security/index.js index 983770136..dd291a095 100644 --- a/app/soapbox/features/security/index.js +++ b/app/soapbox/features/security/index.js @@ -46,9 +46,12 @@ const messages = defineMessages({ passwordHeader: { id: 'security.headers.update_password', defaultMessage: 'Change Password' }, tokenHeader: { id: 'security.headers.tokens', defaultMessage: 'Sessions' }, deactivateHeader: { id: 'security.headers.deactivate', defaultMessage: 'Deactivate Account' }, - deactivateText: { id: 'security.text.deactivate', defaultMessage: 'Deactivate your account. \n This action will hide your profile and your posts on this server. \n \ - However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was distributed to other servers will remain on those \ - servers.' }, + deactivateText: { id: 'security.text.deactivate', defaultMessage: 'To deactivate your account, you must first enter your account password, then click Deactivate Account. \ + \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \ + \n In addition, any of your data that was previously distributed to other servers will remain on those servers.' }, + deactivateSubmit: { id: 'security.submit.deactivate', defaultMessage: 'Deactivate Account' }, + deactivateAccountSuccess: { id: 'security.deactivate_account.success', defaultMessage: 'Account successfully deactivated.' }, + deactivateAccountFail: { id: 'security.deactivate_account.fail', defaultMessage: 'Account deactivation failed.' }, }); export default @injectIntl @@ -67,6 +70,7 @@ class SecurityForm extends ImmutablePureComponent { + ); } @@ -282,3 +286,67 @@ class AuthTokenList extends ImmutablePureComponent { } } + +@connect(mapStateToProps) +@injectIntl +class DeactivateAccount extends ImmutablePureComponent { + + static propTypes = { + dispatch: PropTypes.func.isRequired, + intl: PropTypes.object.isRequired, + }; + + state = { + password: '', + isLoading: false, + } + + handleInputChange = e => { + this.setState({ [e.target.name]: e.target.value }); + } + + handleSubmit = e => { + const { password } = this.state; + const { dispatch, intl } = this.props; + this.setState({ isLoading: true }); + return dispatch(deactivateAccount(password)).then(() => { + //this.setState({ email: '', password: '' }); // TODO: Maybe redirect user + dispatch(showAlert('', intl.formatMessage(messages.deactivateAccountSuccess))); + }).catch(error => { + this.setState({ password: '' }); + dispatch(showAlert('', intl.formatMessage(messages.deactivateAccountFail))); + }).then(() => { + this.setState({ isLoading: false }); + }); + } + + render() { + const { intl } = this.props; + + return ( + +

{intl.formatMessage(messages.deactivateHeader)}

+

+ {intl.formatMessage(messages.deactivateText)} +

+
+ + +
+ +
+
+
+
+ ); + } + +} From 8827b5ffd6b707bf5dbf1f84539d8279e492b722 Mon Sep 17 00:00:00 2001 From: crockwave Date: Sat, 27 Jun 2020 19:58:07 -0500 Subject: [PATCH 3/6] generated translations for account deactivation --- app/soapbox/locales/ar.json | 14 +++++ app/soapbox/locales/ast.json | 14 +++++ app/soapbox/locales/bg.json | 14 +++++ app/soapbox/locales/bn.json | 14 +++++ app/soapbox/locales/br.json | 14 +++++ app/soapbox/locales/ca.json | 14 +++++ app/soapbox/locales/co.json | 14 +++++ app/soapbox/locales/cs.json | 14 +++++ app/soapbox/locales/cy.json | 14 +++++ app/soapbox/locales/da.json | 14 +++++ app/soapbox/locales/de.json | 14 +++++ app/soapbox/locales/defaultMessages.json | 80 +++++++++++++++++++++++- app/soapbox/locales/el.json | 14 +++++ app/soapbox/locales/en.json | 14 +++++ app/soapbox/locales/eo.json | 14 +++++ app/soapbox/locales/es-AR.json | 14 +++++ app/soapbox/locales/es.json | 14 +++++ app/soapbox/locales/et.json | 14 +++++ app/soapbox/locales/eu.json | 14 +++++ app/soapbox/locales/fa.json | 14 +++++ app/soapbox/locales/fi.json | 14 +++++ app/soapbox/locales/fr.json | 14 +++++ app/soapbox/locales/ga.json | 14 +++++ app/soapbox/locales/gl.json | 14 +++++ app/soapbox/locales/he.json | 14 +++++ app/soapbox/locales/hi.json | 14 +++++ app/soapbox/locales/hr.json | 14 +++++ app/soapbox/locales/hu.json | 14 +++++ app/soapbox/locales/hy.json | 14 +++++ app/soapbox/locales/id.json | 14 +++++ app/soapbox/locales/io.json | 14 +++++ app/soapbox/locales/it.json | 14 +++++ app/soapbox/locales/ja.json | 14 +++++ app/soapbox/locales/ka.json | 14 +++++ app/soapbox/locales/kk.json | 14 +++++ app/soapbox/locales/ko.json | 14 +++++ app/soapbox/locales/lt.json | 14 +++++ app/soapbox/locales/lv.json | 14 +++++ app/soapbox/locales/mk.json | 14 +++++ app/soapbox/locales/ms.json | 14 +++++ app/soapbox/locales/nl.json | 14 +++++ app/soapbox/locales/nn.json | 14 +++++ app/soapbox/locales/no.json | 14 +++++ app/soapbox/locales/oc.json | 14 +++++ app/soapbox/locales/pl.json | 14 +++++ app/soapbox/locales/pt-BR.json | 14 +++++ app/soapbox/locales/pt.json | 14 +++++ app/soapbox/locales/ro.json | 14 +++++ app/soapbox/locales/ru.json | 14 +++++ app/soapbox/locales/sk.json | 14 +++++ app/soapbox/locales/sl.json | 14 +++++ app/soapbox/locales/sq.json | 14 +++++ app/soapbox/locales/sr-Latn.json | 14 +++++ app/soapbox/locales/sr.json | 14 +++++ app/soapbox/locales/sv.json | 14 +++++ app/soapbox/locales/ta.json | 14 +++++ app/soapbox/locales/te.json | 14 +++++ app/soapbox/locales/th.json | 14 +++++ app/soapbox/locales/tr.json | 14 +++++ app/soapbox/locales/uk.json | 14 +++++ app/soapbox/locales/zh-CN.json | 14 +++++ app/soapbox/locales/zh-HK.json | 14 +++++ app/soapbox/locales/zh-TW.json | 14 +++++ 63 files changed, 947 insertions(+), 1 deletion(-) diff --git a/app/soapbox/locales/ar.json b/app/soapbox/locales/ar.json index 38fc855f9..8d95ddc19 100644 --- a/app/soapbox/locales/ar.json +++ b/app/soapbox/locales/ar.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "لقد طرأ هناك خطأ غير متوقّع.", "alert.unexpected.title": "المعذرة!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "يمكنك/ي ضغط {combo} لتخطّي هذه في المرّة القادمة", "bundle_column_error.body": "لقد وقع هناك خطأ أثناء عملية تحميل هذا العنصر.", "bundle_column_error.retry": "إعادة المحاولة", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "مدة استطلاع الرأي", "compose_form.poll.option_placeholder": "الخيار {number}", "compose_form.poll.remove_option": "إزالة هذا الخيار", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "بوّق", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "تحديد الوسائط كحساسة", @@ -373,15 +381,20 @@ "search_results.statuses": "التبويقات", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {result} و {results}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "إضافة وسائط (JPEG، PNG، GIF، WebM، MP4، MOV)", "upload_error.limit": "لقد تم بلوغ الحد الأقصى المسموح به لإرسال الملفات.", "upload_error.poll": "لا يمكن إدراج ملفات في استطلاعات الرأي.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "وصف للمعاقين بصريا", "upload_form.focus": "Change preview", "upload_form.undo": "حذف", diff --git a/app/soapbox/locales/ast.json b/app/soapbox/locales/ast.json index 263c2970e..2ac028fa1 100644 --- a/app/soapbox/locales/ast.json +++ b/app/soapbox/locales/ast.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Asocedió un fallu inesperáu.", "alert.unexpected.title": "¡Ups!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Pues primir {combo} pa saltar esto la próxima vegada", "bundle_column_error.body": "Something went wrong while loading this component.", "bundle_column_error.retry": "Try again", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -373,15 +381,20 @@ "search_results.statuses": "Posts", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {result} other {results}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Add media (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Descripción pa discapacitaos visuales", "upload_form.focus": "Change preview", "upload_form.undo": "Desaniciar", diff --git a/app/soapbox/locales/bg.json b/app/soapbox/locales/bg.json index b71e3eee9..e5ce935bd 100644 --- a/app/soapbox/locales/bg.json +++ b/app/soapbox/locales/bg.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "An unexpected error occurred.", "alert.unexpected.title": "Oops!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "You can press {combo} to skip this next time", "bundle_column_error.body": "Something went wrong while loading this component.", "bundle_column_error.retry": "Опитай отново", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Раздумай", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -373,15 +381,20 @@ "search_results.statuses": "Posts", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {result} other {results}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Добави медия", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Describe for the visually impaired", "upload_form.focus": "Change preview", "upload_form.undo": "Отмяна", diff --git a/app/soapbox/locales/bn.json b/app/soapbox/locales/bn.json index 87f0b0583..c540a5de4 100644 --- a/app/soapbox/locales/bn.json +++ b/app/soapbox/locales/bn.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "অপ্রত্যাশিত একটি সমস্যা হয়েছে।", "alert.unexpected.title": "ওহো!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "পরেরবার আপনি {combo} চাপ দিলে এটার শেষে চলে যেতে পারবেন", "bundle_column_error.body": "এই অংশটি দেখতে যেয়ে কোনো সমস্যা হয়েছে।", "bundle_column_error.retry": "আবার চেষ্টা করুন", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "ভোটগ্রহনের সময়", "compose_form.poll.option_placeholder": "বিকল্প {number}", "compose_form.poll.remove_option": "এই বিকল্পটি মুছে ফেলুন", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "টুট", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "এই ছবি বা ভিডিওটি সংবেদনশীল হিসেবে চিহ্নিত করতে", @@ -373,15 +381,20 @@ "search_results.statuses": "টুট", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {ফলাফল} other {ফলাফল}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "ছবি বা ভিডিও যুক্ত করতে (এসব ধরণের: JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "যা যুক্ত করতে চাচ্ছেন সেটি বেশি বড়, এখানকার সর্বাধিকের মেমোরির উপরে চলে গেছে।", "upload_error.poll": "নির্বাচনক্ষেত্রে কোনো ফাইল যুক্ত করা যাবেনা।", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "যারা দেখতে পায়না তাদের জন্য এটা বর্ণনা করতে", "upload_form.focus": "Change preview", "upload_form.undo": "মুছে ফেলতে", diff --git a/app/soapbox/locales/br.json b/app/soapbox/locales/br.json index 8d681ccb4..cd3dae39c 100644 --- a/app/soapbox/locales/br.json +++ b/app/soapbox/locales/br.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Ur fazi dic'hortozet zo degouezhet.", "alert.unexpected.title": "C'hem !", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "You can press {combo} to skip this next time", "bundle_column_error.body": "Something went wrong while loading this component.", "bundle_column_error.retry": "Klask endro", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -373,15 +381,20 @@ "search_results.statuses": "Posts", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {result} other {results}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Add media (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Describe for the visually impaired", "upload_form.focus": "Change preview", "upload_form.undo": "Delete", diff --git a/app/soapbox/locales/ca.json b/app/soapbox/locales/ca.json index 165c0e336..afb34659d 100644 --- a/app/soapbox/locales/ca.json +++ b/app/soapbox/locales/ca.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "S'ha produït un error inesperat.", "alert.unexpected.title": "Vaja!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Pots premer {combo} per saltar-te això el proper cop", "bundle_column_error.body": "S'ha produït un error en carregar aquest component.", "bundle_column_error.retry": "Torna-ho a provar", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Durada de l'enquesta", "compose_form.poll.option_placeholder": "Opció {number}", "compose_form.poll.remove_option": "Elimina aquesta opció", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Marcar mèdia com a sensible", @@ -373,15 +381,20 @@ "search_results.statuses": "Posts", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {resultat} other {resultats}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Afegir multimèdia (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "S'ha superat el límit de càrrega d'arxius.", "upload_error.poll": "No es permet l'enviament de fitxers en les enquestes.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Descriure els problemes visuals", "upload_form.focus": "Change preview", "upload_form.undo": "Esborra", diff --git a/app/soapbox/locales/co.json b/app/soapbox/locales/co.json index 629f613b9..bdcb4722f 100644 --- a/app/soapbox/locales/co.json +++ b/app/soapbox/locales/co.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Un prublemu inaspettatu hè accadutu.", "alert.unexpected.title": "Uups!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Pudete appughjà nant'à {combo} per saltà quessa a prussima volta", "bundle_column_error.body": "C'hè statu un prublemu caricandu st'elementu.", "bundle_column_error.retry": "Pruvà torna", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Durata di u scandagliu", "compose_form.poll.option_placeholder": "Scelta {number}", "compose_form.poll.remove_option": "Toglie sta scelta", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Indicà u media cum'è sensibile", @@ -373,15 +381,20 @@ "search_results.statuses": "Statuti", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {risultatu} other {risultati}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Aghjunghje un media (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Limita di caricamentu di fugliali trapassata.", "upload_error.poll": "Ùn si pò micca caricà fugliali cù i scandagli.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Discrive per i malvistosi", "upload_form.focus": "Change preview", "upload_form.undo": "Sguassà", diff --git a/app/soapbox/locales/cs.json b/app/soapbox/locales/cs.json index 61eebcec5..8362c3580 100644 --- a/app/soapbox/locales/cs.json +++ b/app/soapbox/locales/cs.json @@ -43,6 +43,13 @@ "account_gallery.none": "Žádná média k zobrazení.", "alert.unexpected.message": "Objevila se neočekávaná chyba.", "alert.unexpected.title": "Jejda!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Příště můžete pro přeskočení stisknout {combo}", "bundle_column_error.body": "Při načítání tohoto komponentu se něco pokazilo.", "bundle_column_error.retry": "Zkuste to znovu", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Délka ankety", "compose_form.poll.option_placeholder": "Volba {number}", "compose_form.poll.remove_option": "Odstranit tuto volbu", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publikovat", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Označit média jako citlivá", @@ -373,15 +381,20 @@ "search_results.statuses": "Příspěvky", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {výsledek} few {výsledky} many {výsledku} other {výsledků}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Emailová addresa", "security.fields.new_password.label": "Nové heslo", "security.fields.old_password.label": "Současné heslo", "security.fields.password.label": "Heslo", "security.fields.password_confirmation.label": "Nové heslo (znova)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Změnit email", "security.headers.update_password": "Změnit heslo", "security.submit": "Uložit změny", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Změna emailu se nezdařila.", "security.update_email.success": "Email úspěšně změněn.", @@ -453,6 +466,7 @@ "upload_button.label": "Přidat média (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Byl překročen limit nahraných souborů.", "upload_error.poll": "Nahrávání souborů není povoleno u anket.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Popis pro zrakově postižené", "upload_form.focus": "Změnit náhled", "upload_form.undo": "Smazat", diff --git a/app/soapbox/locales/cy.json b/app/soapbox/locales/cy.json index 2d60cf414..9a4c5cabf 100644 --- a/app/soapbox/locales/cy.json +++ b/app/soapbox/locales/cy.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Digwyddodd gwall annisgwyl.", "alert.unexpected.title": "Wps!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Mae modd gwasgu {combo} er mwyn sgipio hyn tro nesa", "bundle_column_error.body": "Aeth rhywbeth o'i le tra'n llwytho'r elfen hon.", "bundle_column_error.retry": "Ceisiwch eto", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Cyfnod pleidlais", "compose_form.poll.option_placeholder": "Dewisiad {number}", "compose_form.poll.remove_option": "Tynnu'r dewisiad", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Tŵt", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Marcio cyfryngau fel eu bod yn sensitif", @@ -373,15 +381,20 @@ "search_results.statuses": "Tŵtiau", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {result} other {results}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Ychwanegwch gyfryngau (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Wedi mynd heibio'r uchafswm terfyn uwchlwytho.", "upload_error.poll": "Nid oes modd uwchlwytho ffeiliau â phleidleisiau.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Disgrifio i'r rheini a nam ar ei golwg", "upload_form.focus": "Change preview", "upload_form.undo": "Dileu", diff --git a/app/soapbox/locales/da.json b/app/soapbox/locales/da.json index b86410d35..ce907fa60 100644 --- a/app/soapbox/locales/da.json +++ b/app/soapbox/locales/da.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Der opstod en uventet fejl.", "alert.unexpected.title": "Ups!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Du kan trykke {combo} for at springe dette over næste gang", "bundle_column_error.body": "Noget gik galt under indlæsningen af dette komponent.", "bundle_column_error.retry": "Prøv igen", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Afstemningens varighed", "compose_form.poll.option_placeholder": "Valgmulighed {number}", "compose_form.poll.remove_option": "Fjern denne valgmulighed", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Trut", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Markér medie som følsomt", @@ -373,15 +381,20 @@ "search_results.statuses": "Trut", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {resultat} other {resultater}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Tilføj medie (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Uploadgrænse overskredet.", "upload_error.poll": "Filupload ikke tilladt sammen med afstemninger.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Beskriv for svagtseende", "upload_form.focus": "Change preview", "upload_form.undo": "Slet", diff --git a/app/soapbox/locales/de.json b/app/soapbox/locales/de.json index de6646d88..3bb440f78 100644 --- a/app/soapbox/locales/de.json +++ b/app/soapbox/locales/de.json @@ -43,6 +43,13 @@ "account_gallery.none": "Keine Medien vorhanden.", "alert.unexpected.message": "Ein unerwarteter Fehler ist aufgetreten.", "alert.unexpected.title": "Hoppla!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Drücke {combo}, um dieses Fenster zu überspringen", "bundle_column_error.body": "Etwas ist beim Laden schiefgelaufen.", "bundle_column_error.retry": "Erneut versuchen", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Umfragedauer", "compose_form.poll.option_placeholder": "Antwortmöglichkeit {number}", "compose_form.poll.remove_option": "Antwortmöglichkeit entfernen", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Senden", "compose_form.publish_loud": "{publish}", "compose_form.sensitive.hide": "Medien als heikel markieren", @@ -373,15 +381,20 @@ "search_results.statuses": "Beiträge", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {Ergebnis} other {Ergebnisse}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Emailaddresse", "security.fields.new_password.label": "Neues Passwort", "security.fields.old_password.label": "Bisheriges Passwort", "security.fields.password.label": "Passwort", "security.fields.password_confirmation.label": "Neues Passwort (wiederholen)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Email ändern", "security.headers.update_password": "Passwort ändern", "security.submit": "Änderungen speichern", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Widerrufen", "security.update_email.fail": "Änderung der Emailadresse fehlgeschlagen.", "security.update_email.success": "Die neue Emailadresse wurde gespeichert.", @@ -453,6 +466,7 @@ "upload_button.label": "Mediendatei hinzufügen (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Dateiupload-Limit erreicht.", "upload_error.poll": "Dateiuploads sind in Kombination mit Umfragen nicht erlaubt.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Für Menschen mit Sehbehinderung beschreiben", "upload_form.focus": "Vorschau ändern", "upload_form.undo": "Löschen", diff --git a/app/soapbox/locales/defaultMessages.json b/app/soapbox/locales/defaultMessages.json index a83aac3ce..e4bc9227e 100644 --- a/app/soapbox/locales/defaultMessages.json +++ b/app/soapbox/locales/defaultMessages.json @@ -15,12 +15,16 @@ { "descriptors": [ { - "defaultMessage": "File upload limit exceeded.", + "defaultMessage": "File upload quantity limit exceeded.", "id": "upload_error.limit" }, { "defaultMessage": "File upload not allowed with polls.", "id": "upload_error.poll" + }, + { + "defaultMessage": "File upload size limit exceeded.", + "id": "upload_error.size" } ], "path": "app/soapbox/actions/compose.json" @@ -864,6 +868,47 @@ ], "path": "app/soapbox/features/account/components/header.json" }, + { + "descriptors": [ + { + "defaultMessage": "Play", + "id": "audio.play" + }, + { + "defaultMessage": "Pause", + "id": "audio.pause" + }, + { + "defaultMessage": "Mute", + "id": "audio.mute" + }, + { + "defaultMessage": "Unmute", + "id": "audio.unmute" + }, + { + "defaultMessage": "Hide audio", + "id": "audio.hide" + }, + { + "defaultMessage": "Expand audio", + "id": "audio.expand" + }, + { + "defaultMessage": "Close audio", + "id": "audio.close" + }, + { + "defaultMessage": "Sensitive content", + "id": "status.sensitive_warning" + }, + { + "defaultMessage": "Media hidden", + "id": "status.media_hidden" + } + ], + "path": "app/soapbox/features/audio/index.json" + }, { "descriptors": [ { @@ -1110,6 +1155,10 @@ { "defaultMessage": "{number, plural, one {# day} other {# days}}", "id": "intervals.full.days" + }, + { + "defaultMessage": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", + "id": "compose_form.poll.type.hint" } ], "path": "app/soapbox/features/compose/components/poll_form.json" @@ -2358,6 +2407,26 @@ { "defaultMessage": "Sessions", "id": "security.headers.tokens" + }, + { + "defaultMessage": "Deactivate Account", + "id": "security.headers.deactivate" + }, + { + "defaultMessage": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", + "id": "security.text.deactivate" + }, + { + "defaultMessage": "Deactivate Account", + "id": "security.submit.deactivate" + }, + { + "defaultMessage": "Account successfully deactivated.", + "id": "security.deactivate_account.success" + }, + { + "defaultMessage": "Account deactivation failed.", + "id": "security.deactivate_account.fail" } ], "path": "app/soapbox/features/security/index.json" @@ -2508,6 +2577,15 @@ ], "path": "app/soapbox/features/status/index.json" }, + { + "descriptors": [ + { + "defaultMessage": "View context", + "id": "lightbox.view_context" + } + ], + "path": "app/soapbox/features/ui/components/audio_modal.json" + }, { "descriptors": [ { diff --git a/app/soapbox/locales/el.json b/app/soapbox/locales/el.json index 4a5a490a0..72a21b941 100644 --- a/app/soapbox/locales/el.json +++ b/app/soapbox/locales/el.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Προέκυψε απροσδόκητο σφάλμα.", "alert.unexpected.title": "Εεπ!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Μπορείς να πατήσεις {combo} για να το προσπεράσεις αυτό την επόμενη φορά", "bundle_column_error.body": "Κάτι πήγε στραβά ενώ φορτωνόταν αυτό το στοιχείο.", "bundle_column_error.retry": "Δοκίμασε ξανά", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Διάρκεια δημοσκόπησης", "compose_form.poll.option_placeholder": "Επιλογή {number}", "compose_form.poll.remove_option": "Αφαίρεση επιλογής", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Τουτ", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Σημείωσε τα πολυμέσα ως ευαίσθητα", @@ -373,15 +381,20 @@ "search_results.statuses": "Τουτ", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, zero {αποτελέσματα} one {αποτέλεσμα} other {αποτελέσματα}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Πρόσθεσε πολυμέσα (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Υπέρβαση ορίου μεγέθους ανεβασμένων αρχείων.", "upload_error.poll": "Στις δημοσκοπήσεις δεν επιτρέπεται η μεταφόρτωση αρχείου.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Περιέγραψε για όσους & όσες έχουν προβλήματα όρασης", "upload_form.focus": "Change preview", "upload_form.undo": "Διαγραφή", diff --git a/app/soapbox/locales/en.json b/app/soapbox/locales/en.json index 950098cf9..f23235371 100644 --- a/app/soapbox/locales/en.json +++ b/app/soapbox/locales/en.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "An unexpected error occurred.", "alert.unexpected.title": "Oops!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "You can press {combo} to skip this next time", "bundle_column_error.body": "Something went wrong while loading this component.", "bundle_column_error.retry": "Try again", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -373,15 +381,20 @@ "search_results.statuses": "Posts", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {result} other {results}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Add media (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Describe for the visually impaired", "upload_form.focus": "Change preview", "upload_form.undo": "Delete", diff --git a/app/soapbox/locales/eo.json b/app/soapbox/locales/eo.json index b814c5858..bb5e09528 100644 --- a/app/soapbox/locales/eo.json +++ b/app/soapbox/locales/eo.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Neatendita eraro okazis.", "alert.unexpected.title": "Ups!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Vi povas premi {combo} por preterpasi sekvafoje", "bundle_column_error.body": "Io misfunkciis en la ŝargado de ĉi tiu elemento.", "bundle_column_error.retry": "Bonvolu reprovi", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Balotenketa daŭro", "compose_form.poll.option_placeholder": "Elekteblo {number}", "compose_form.poll.remove_option": "Forigi ĉi tiu elekteblon", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Hup", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Marki la aŭdovidaĵojn kiel tiklaj", @@ -373,15 +381,20 @@ "search_results.statuses": "Mesaĝoj", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {rezulto} other {rezultoj}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Aldoni aŭdovidaĵon (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Limo de dosiera alŝutado transpasita.", "upload_error.poll": "Alŝuto de dosiero ne permesita kun balotenketo.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Priskribi por misvidantaj homoj", "upload_form.focus": "Change preview", "upload_form.undo": "Forigi", diff --git a/app/soapbox/locales/es-AR.json b/app/soapbox/locales/es-AR.json index 4a6ab7f16..d91ead7e1 100644 --- a/app/soapbox/locales/es-AR.json +++ b/app/soapbox/locales/es-AR.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Ocurrió un error inesperado.", "alert.unexpected.title": "¡Epa!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Podés hacer clic en {combo} para saltar esto la próxima vez", "bundle_column_error.body": "Algo salió mal al cargar este componente.", "bundle_column_error.retry": "Intentá de nuevo", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Duración de la encuesta", "compose_form.poll.option_placeholder": "Opción {number}", "compose_form.poll.remove_option": "Quitá esta opción", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Tootear", "compose_form.publish_loud": "¡{publish}!", "compose_form.sensitive.hide": "Marcar medio como sensible", @@ -373,15 +381,20 @@ "search_results.statuses": "Posts", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Agregar medios", "upload_error.limit": "Se excedió el límite de subida de archivos.", "upload_error.poll": "No se permite la subida de archivos en encuestas.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Agregar descripción para los usuarios con dificultades visuales", "upload_form.focus": "Change preview", "upload_form.undo": "Eliminar", diff --git a/app/soapbox/locales/es.json b/app/soapbox/locales/es.json index efb8c6b6d..05967a147 100644 --- a/app/soapbox/locales/es.json +++ b/app/soapbox/locales/es.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Hubo un error inesperado.", "alert.unexpected.title": "¡Ups!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Puedes hacer clic en {combo} para saltar este aviso la próxima vez", "bundle_column_error.body": "Algo salió mal al cargar este componente.", "bundle_column_error.retry": "Inténtalo de nuevo", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Duración de la encuesta", "compose_form.poll.option_placeholder": "Elección {number}", "compose_form.poll.remove_option": "Eliminar esta opción", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Tootear", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Marcar multimedia como sensible", @@ -373,15 +381,20 @@ "search_results.statuses": "Posts", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Subir multimedia (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Límite de subida de archivos excedido.", "upload_error.poll": "Subida de archivos no permitida con encuestas.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Describir para los usuarios con dificultad visual", "upload_form.focus": "Change preview", "upload_form.undo": "Borrar", diff --git a/app/soapbox/locales/et.json b/app/soapbox/locales/et.json index c9e92412c..6712d9375 100644 --- a/app/soapbox/locales/et.json +++ b/app/soapbox/locales/et.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Tekkis ootamatu viga.", "alert.unexpected.title": "Oih!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Saad vajutada {combo}, et see järgmine kord vahele jätta", "bundle_column_error.body": "Mindagi läks valesti selle komponendi laadimisel.", "bundle_column_error.retry": "Proovi uuesti", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Küsitluse kestus", "compose_form.poll.option_placeholder": "Valik {number}", "compose_form.poll.remove_option": "Eemalda see valik", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Tuut", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Märgista meedia tundlikuks", @@ -373,15 +381,20 @@ "search_results.statuses": "Tuudid", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {tulemus} other {tulemust}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Lisa meedia (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Faili üleslaadimise limiit ületatud.", "upload_error.poll": "Küsitlustes pole faili üleslaadimine lubatud.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Kirjelda vaegnägijatele", "upload_form.focus": "Change preview", "upload_form.undo": "Kustuta", diff --git a/app/soapbox/locales/eu.json b/app/soapbox/locales/eu.json index d1bfc7391..3941323f2 100644 --- a/app/soapbox/locales/eu.json +++ b/app/soapbox/locales/eu.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Ustekabeko errore bat gertatu da.", "alert.unexpected.title": "Ene!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "{combo} sakatu dezakezu hurrengoan hau saltatzeko", "bundle_column_error.body": "Zerbait okerra gertatu da osagai hau kargatzean.", "bundle_column_error.retry": "Saiatu berriro", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Inkestaren iraupena", "compose_form.poll.option_placeholder": "{number}. aukera", "compose_form.poll.remove_option": "Kendu aukera hau", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Markatu multimedia hunkigarri gisa", @@ -373,15 +381,20 @@ "search_results.statuses": "Toot-ak", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {emaitza} other {emaitzak}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Gehitu multimedia (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Fitxategi igoera muga gaindituta.", "upload_error.poll": "Ez da inkestetan fitxategiak igotzea onartzen.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Deskribatu ikusmen arazoak dituztenentzat", "upload_form.focus": "Change preview", "upload_form.undo": "Ezabatu", diff --git a/app/soapbox/locales/fa.json b/app/soapbox/locales/fa.json index e2b9abc31..974f4eec4 100644 --- a/app/soapbox/locales/fa.json +++ b/app/soapbox/locales/fa.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "خطای پیش‌بینی‌نشده‌ای رخ داد.", "alert.unexpected.title": "ای وای!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "دکمهٔ {combo} را بزنید تا دیگر این را نبینید", "bundle_column_error.body": "هنگام بازکردن این بخش خطایی رخ داد.", "bundle_column_error.retry": "تلاش دوباره", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "مدت نظرسنجی", "compose_form.poll.option_placeholder": "گزینهٔ {number}", "compose_form.poll.remove_option": "حذف این گزینه", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "بوق", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "علامت‌گذاری به عنوان حساس", @@ -373,15 +381,20 @@ "search_results.statuses": "بوق‌ها", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {نتیجه} other {نتیجه}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "افزودن عکس و ویدیو (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "از حد مجاز باگذاری فراتر رفتید.", "upload_error.poll": "باگذاری پرونده در نظرسنجی‌ها ممکن نیست.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "نوشتهٔ توضیحی برای کم‌بینایان و نابینایان", "upload_form.focus": "Change preview", "upload_form.undo": "حذف", diff --git a/app/soapbox/locales/fi.json b/app/soapbox/locales/fi.json index 673d2baf7..069424251 100644 --- a/app/soapbox/locales/fi.json +++ b/app/soapbox/locales/fi.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Tapahtui odottamaton virhe.", "alert.unexpected.title": "Hups!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Ensi kerralla voit ohittaa tämän painamalla {combo}", "bundle_column_error.body": "Jokin meni vikaan komponenttia ladattaessa.", "bundle_column_error.retry": "Yritä uudestaan", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Äänestyksen kesto", "compose_form.poll.option_placeholder": "Valinta numero", "compose_form.poll.remove_option": "Poista tämä valinta", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Tuuttaa", "compose_form.publish_loud": "Julkista!", "compose_form.sensitive.hide": "Valitse tämä arkaluontoisena", @@ -373,15 +381,20 @@ "search_results.statuses": "Tuuttaukset", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {tulos} other {tulosta}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Lisää mediaa", "upload_error.limit": "Tiedostolatauksien raja ylitetty.", "upload_error.poll": "Tiedon lataaminen ei ole sallittua kyselyissä.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Anna kuvaus näkörajoitteisia varten", "upload_form.focus": "Change preview", "upload_form.undo": "Peru", diff --git a/app/soapbox/locales/fr.json b/app/soapbox/locales/fr.json index a07f052cf..1505bb15c 100644 --- a/app/soapbox/locales/fr.json +++ b/app/soapbox/locales/fr.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Une erreur inattendue s’est produite.", "alert.unexpected.title": "Oups !", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Vous pouvez appuyer sur {combo} pour passer ceci, la prochaine fois", "bundle_column_error.body": "Une erreur s’est produite lors du chargement de ce composant.", "bundle_column_error.retry": "Réessayer", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Durée du sondage", "compose_form.poll.option_placeholder": "Choix {number}", "compose_form.poll.remove_option": "Supprimer ce choix", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Pouet", "compose_form.publish_loud": "{publish} !", "compose_form.sensitive.hide": "Marquer le média comme sensible", @@ -373,15 +381,20 @@ "search_results.statuses": "Pouets", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {résultat} other {résultats}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Joindre un média (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Taille maximale d'envoi de fichier dépassée.", "upload_error.poll": "L’envoi de fichiers n’est pas autorisé avec les sondages.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Décrire pour les malvoyant·e·s", "upload_form.focus": "Change preview", "upload_form.undo": "Supprimer", diff --git a/app/soapbox/locales/ga.json b/app/soapbox/locales/ga.json index 4707b4026..da0db9584 100644 --- a/app/soapbox/locales/ga.json +++ b/app/soapbox/locales/ga.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "An unexpected error occurred.", "alert.unexpected.title": "Oops!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "You can press {combo} to skip this next time", "bundle_column_error.body": "Something went wrong while loading this component.", "bundle_column_error.retry": "Try again", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -373,15 +381,20 @@ "search_results.statuses": "Posts", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {result} other {results}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Add media (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Describe for the visually impaired", "upload_form.focus": "Change preview", "upload_form.undo": "Delete", diff --git a/app/soapbox/locales/gl.json b/app/soapbox/locales/gl.json index da128bc21..d99615229 100644 --- a/app/soapbox/locales/gl.json +++ b/app/soapbox/locales/gl.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Aconteceu un fallo non agardado.", "alert.unexpected.title": "Vaia!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Pulse {combo} para saltar esto a próxima vez", "bundle_column_error.body": "Houbo un fallo mentras se cargaba este compoñente.", "bundle_column_error.retry": "Inténteo de novo", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Duración da sondaxe", "compose_form.poll.option_placeholder": "Opción {number}", "compose_form.poll.remove_option": "Eliminar esta opción", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Marcar medios como sensibles", @@ -373,15 +381,20 @@ "search_results.statuses": "Posts", "search_results.top": "Top", "search_results.total": "{count, number} {count,plural,one {result} outros {results}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Engadir medios (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Excedeu o límite de subida de ficheiros.", "upload_error.poll": "Non se poden subir ficheiros nas sondaxes.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Describa para deficientes visuais", "upload_form.focus": "Change preview", "upload_form.undo": "Eliminar", diff --git a/app/soapbox/locales/he.json b/app/soapbox/locales/he.json index a388a52f7..91585ff9c 100644 --- a/app/soapbox/locales/he.json +++ b/app/soapbox/locales/he.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "אירעה שגיאה בלתי צפויה.", "alert.unexpected.title": "אופס!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "ניתן להקיש {combo} כדי לדלג בפעם הבאה", "bundle_column_error.body": "משהו השתבש בעת הצגת הרכיב הזה.", "bundle_column_error.retry": "לנסות שוב", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "ללחוש", "compose_form.publish_loud": "לחצרץ!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -373,15 +381,20 @@ "search_results.statuses": "Posts", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {תוצאה} other {תוצאות}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "הוספת מדיה", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "תיאור לכבדי ראיה", "upload_form.focus": "Change preview", "upload_form.undo": "ביטול", diff --git a/app/soapbox/locales/hi.json b/app/soapbox/locales/hi.json index 5048e8df1..62a15157e 100644 --- a/app/soapbox/locales/hi.json +++ b/app/soapbox/locales/hi.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "An unexpected error occurred.", "alert.unexpected.title": "Oops!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "You can press {combo} to skip this next time", "bundle_column_error.body": "Something went wrong while loading this component.", "bundle_column_error.retry": "Try again", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -373,15 +381,20 @@ "search_results.statuses": "Posts", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {result} other {results}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Add media (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Describe for the visually impaired", "upload_form.focus": "Change preview", "upload_form.undo": "Delete", diff --git a/app/soapbox/locales/hr.json b/app/soapbox/locales/hr.json index 987e3c146..19da912d7 100644 --- a/app/soapbox/locales/hr.json +++ b/app/soapbox/locales/hr.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "An unexpected error occurred.", "alert.unexpected.title": "Oops!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Možeš pritisnuti {combo} kako bi ovo preskočio sljedeći put", "bundle_column_error.body": "Something went wrong while loading this component.", "bundle_column_error.retry": "Try again", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -373,15 +381,20 @@ "search_results.statuses": "Posts", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {result} other {results}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Dodaj media", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Describe for the visually impaired", "upload_form.focus": "Change preview", "upload_form.undo": "Poništi", diff --git a/app/soapbox/locales/hu.json b/app/soapbox/locales/hu.json index ec14a7853..3644099f9 100644 --- a/app/soapbox/locales/hu.json +++ b/app/soapbox/locales/hu.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Váratlan hiba történt.", "alert.unexpected.title": "Hoppá!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Hogy átugord ezt következő alkalommal, használd {combo}", "bundle_column_error.body": "Hiba történt a komponens betöltése közben.", "bundle_column_error.retry": "Próbáld újra", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Szavazás időtartama", "compose_form.poll.option_placeholder": "Lehetőség {number}", "compose_form.poll.remove_option": "Lehetőség törlése", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Tülk", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Média megjelölése szenzitívként", @@ -373,15 +381,20 @@ "search_results.statuses": "Tülkök", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {találat} other {találat}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Média hozzáadása (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Túllépted a fájl feltöltési limitet.", "upload_error.poll": "Szavazásnál nem lehet fájlt feltölteni.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Leírás látáskorlátozottak számára", "upload_form.focus": "Change preview", "upload_form.undo": "Mégsem", diff --git a/app/soapbox/locales/hy.json b/app/soapbox/locales/hy.json index 01e5f866f..431c7d6be 100644 --- a/app/soapbox/locales/hy.json +++ b/app/soapbox/locales/hy.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "An unexpected error occurred.", "alert.unexpected.title": "Վա՜յ", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Կարող ես սեղմել {combo}՝ սա հաջորդ անգամ բաց թողնելու համար", "bundle_column_error.body": "Այս բաղադրիչը բեռնելու ընթացքում ինչ֊որ բան խափանվեց։", "bundle_column_error.retry": "Կրկին փորձել", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Թթել", "compose_form.publish_loud": "Թթե՜լ", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -373,15 +381,20 @@ "search_results.statuses": "Posts", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {արդյունք} other {արդյունք}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Ավելացնել մեդիա", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Նկարագրություն ավելացրու տեսողական խնդիրներ ունեցողների համար", "upload_form.focus": "Change preview", "upload_form.undo": "Հետարկել", diff --git a/app/soapbox/locales/id.json b/app/soapbox/locales/id.json index f2340500f..ab6c51453 100644 --- a/app/soapbox/locales/id.json +++ b/app/soapbox/locales/id.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Terjadi kesalahan yang tidak terduga.", "alert.unexpected.title": "Oops!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Anda dapat menekan {combo} untuk melewati ini", "bundle_column_error.body": "Kesalahan terjadi saat memuat komponen ini.", "bundle_column_error.retry": "Coba lagi", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Durasi jajak pendapat", "compose_form.poll.option_placeholder": "Pilihan {number}", "compose_form.poll.remove_option": "Hapus opsi ini", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Tandai sebagai media sensitif", @@ -373,15 +381,20 @@ "search_results.statuses": "Posts", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {hasil} other {hasil}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Tambahkan media", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Deskripsikan untuk mereka yang tidak bisa melihat dengan jelas", "upload_form.focus": "Change preview", "upload_form.undo": "Undo", diff --git a/app/soapbox/locales/io.json b/app/soapbox/locales/io.json index 571d5e454..ed5f2b849 100644 --- a/app/soapbox/locales/io.json +++ b/app/soapbox/locales/io.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "An unexpected error occurred.", "alert.unexpected.title": "Oops!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Tu povas presar sur {combo} por omisar co en la venonta foyo", "bundle_column_error.body": "Something went wrong while loading this component.", "bundle_column_error.retry": "Try again", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Siflar", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -373,15 +381,20 @@ "search_results.statuses": "Posts", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {rezulto} other {rezulti}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Adjuntar kontenajo", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Describe for the visually impaired", "upload_form.focus": "Change preview", "upload_form.undo": "Desfacar", diff --git a/app/soapbox/locales/it.json b/app/soapbox/locales/it.json index a7b74e8b0..eb80b1262 100644 --- a/app/soapbox/locales/it.json +++ b/app/soapbox/locales/it.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Si è verificato un errore inatteso.", "alert.unexpected.title": "Oops!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Puoi premere {combo} per saltare questo passaggio la prossima volta", "bundle_column_error.body": "E' avvenuto un errore durante il caricamento di questo componente.", "bundle_column_error.retry": "Riprova", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Durata del sondaggio", "compose_form.poll.option_placeholder": "Scelta {number}", "compose_form.poll.remove_option": "Rimuovi questa scelta", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Segna media come sensibile", @@ -373,15 +381,20 @@ "search_results.statuses": "Toot", "search_results.top": "Top", "search_results.total": "{count} {count, plural, one {risultato} other {risultati}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Aggiungi file multimediale", "upload_error.limit": "Limite al caricamento di file superato.", "upload_error.poll": "Caricamento file non consentito nei sondaggi.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Descrizione per utenti con disabilità visive", "upload_form.focus": "Modifica anteprima", "upload_form.undo": "Cancella", diff --git a/app/soapbox/locales/ja.json b/app/soapbox/locales/ja.json index 49130eeb6..97c3b9267 100644 --- a/app/soapbox/locales/ja.json +++ b/app/soapbox/locales/ja.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "不明なエラーが発生しました。", "alert.unexpected.title": "エラー!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "次からは{combo}を押せばスキップできます", "bundle_column_error.body": "コンポーネントの読み込み中に問題が発生しました。", "bundle_column_error.retry": "再試行", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "アンケート期間", "compose_form.poll.option_placeholder": "項目 {number}", "compose_form.poll.remove_option": "この項目を削除", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "トゥート", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "メディアを閲覧注意にする", @@ -373,15 +381,20 @@ "search_results.statuses": "トゥート", "search_results.top": "Top", "search_results.total": "{count, number}件の結果", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "メディアを追加 (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "アップロードできる上限を超えています。", "upload_error.poll": "アンケートではファイルをアップロードできません。", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "視覚障害者のための説明", "upload_form.focus": "プレビューを変更", "upload_form.undo": "削除", diff --git a/app/soapbox/locales/ka.json b/app/soapbox/locales/ka.json index 1354efe0e..bfcf82cfa 100644 --- a/app/soapbox/locales/ka.json +++ b/app/soapbox/locales/ka.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "წარმოიშვა მოულოდნელი შეცდომა.", "alert.unexpected.title": "უპს!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "შეგიძლიათ დააჭიროთ {combo}-ს რათა შემდეგ ჯერზე გამოტოვოთ ეს", "bundle_column_error.body": "ამ კომპონენტის ჩატვირთვისას რაღაც აირია.", "bundle_column_error.retry": "სცადეთ კიდევ ერთხელ", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "ტუტი", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -373,15 +381,20 @@ "search_results.statuses": "ტუტები", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {result} other {results}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "მედიის დამატება", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "აღწერილობა ვიზუალურად უფასურისთვის", "upload_form.focus": "კროპი", "upload_form.undo": "გაუქმება", diff --git a/app/soapbox/locales/kk.json b/app/soapbox/locales/kk.json index 534c9d2cc..ce1966653 100644 --- a/app/soapbox/locales/kk.json +++ b/app/soapbox/locales/kk.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Бір нәрсе дұрыс болмады.", "alert.unexpected.title": "Өй!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Келесіде өткізіп жіберу үшін басыңыз {combo}", "bundle_column_error.body": "Бұл компонентті жүктеген кезде бір қате пайда болды.", "bundle_column_error.retry": "Қайтадан көріңіз", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Сауалнама мерзімі", "compose_form.poll.option_placeholder": "Жауап {number}", "compose_form.poll.remove_option": "Бұл жауапты өшір", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Түрт", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -373,15 +381,20 @@ "search_results.statuses": "Жазбалар", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {result} other {results}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Медиа қосу (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Файл жүктеу лимитінен асып кеттіңіз.", "upload_error.poll": "Сауалнамамен бірге файл жүктеуге болмайды.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Көру қабілеті нашар адамдар үшін сипаттаңыз", "upload_form.focus": "Превьюді өзгерту", "upload_form.undo": "Өшіру", diff --git a/app/soapbox/locales/ko.json b/app/soapbox/locales/ko.json index ea2cf0a8c..bcb528284 100644 --- a/app/soapbox/locales/ko.json +++ b/app/soapbox/locales/ko.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "예측하지 못한 에러가 발생했습니다.", "alert.unexpected.title": "앗!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "{combo}를 누르면 다음부터 이 과정을 건너뛸 수 있습니다", "bundle_column_error.body": "컴포넌트를 불러오는 과정에서 문제가 발생했습니다.", "bundle_column_error.retry": "다시 시도", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "투표 기간", "compose_form.poll.option_placeholder": "{number}번 항목", "compose_form.poll.remove_option": "이 항목 삭제", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "툿", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "미디어를 민감함으로 설정하기", @@ -373,15 +381,20 @@ "search_results.statuses": "툿", "search_results.top": "Top", "search_results.total": "{count, number}건의 결과", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "미디어 추가 (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "파일 업로드 제한에 도달했습니다.", "upload_error.poll": "파일 업로드는 투표와 함께 첨부할 수 없습니다.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "시각장애인을 위한 설명", "upload_form.focus": "미리보기 변경", "upload_form.undo": "삭제", diff --git a/app/soapbox/locales/lt.json b/app/soapbox/locales/lt.json index 7d0029698..3634ea876 100644 --- a/app/soapbox/locales/lt.json +++ b/app/soapbox/locales/lt.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "An unexpected error occurred.", "alert.unexpected.title": "Oops!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "You can press {combo} to skip this next time", "bundle_column_error.body": "Something went wrong while loading this component.", "bundle_column_error.retry": "Try again", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -373,15 +381,20 @@ "search_results.statuses": "Posts", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {result} other {results}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Add media (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Describe for the visually impaired", "upload_form.focus": "Change preview", "upload_form.undo": "Delete", diff --git a/app/soapbox/locales/lv.json b/app/soapbox/locales/lv.json index b0ce483fc..ebd61e6cc 100644 --- a/app/soapbox/locales/lv.json +++ b/app/soapbox/locales/lv.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Negaidīta kļūda.", "alert.unexpected.title": "Ups!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Nospied {combo} lai izlaistu šo nākamreiz", "bundle_column_error.body": "Kaut kas nogāja greizi ielādējot šo komponenti.", "bundle_column_error.retry": "Mēģini vēlreiz", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publicēt", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -373,15 +381,20 @@ "search_results.statuses": "Posts", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {result} other {results}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Add media (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Describe for the visually impaired", "upload_form.focus": "Change preview", "upload_form.undo": "Delete", diff --git a/app/soapbox/locales/mk.json b/app/soapbox/locales/mk.json index ae9caac15..66d4b3208 100644 --- a/app/soapbox/locales/mk.json +++ b/app/soapbox/locales/mk.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Неочекувана грешка.", "alert.unexpected.title": "Упс!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Кликни {combo} за да го прескокниш ова нареден пат", "bundle_column_error.body": "Се случи проблем при вчитувањето.", "bundle_column_error.retry": "Обидете се повторно", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -373,15 +381,20 @@ "search_results.statuses": "Posts", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {result} other {results}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Add media (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Describe for the visually impaired", "upload_form.focus": "Change preview", "upload_form.undo": "Delete", diff --git a/app/soapbox/locales/ms.json b/app/soapbox/locales/ms.json index db44141b3..a06c9c6e3 100644 --- a/app/soapbox/locales/ms.json +++ b/app/soapbox/locales/ms.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "An unexpected error occurred.", "alert.unexpected.title": "Oops!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "You can press {combo} to skip this next time", "bundle_column_error.body": "Something went wrong while loading this component.", "bundle_column_error.retry": "Try again", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -373,15 +381,20 @@ "search_results.statuses": "Posts", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {result} other {results}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Add media (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Describe for the visually impaired", "upload_form.focus": "Change preview", "upload_form.undo": "Delete", diff --git a/app/soapbox/locales/nl.json b/app/soapbox/locales/nl.json index f447dba4d..d15d0e92a 100644 --- a/app/soapbox/locales/nl.json +++ b/app/soapbox/locales/nl.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Er deed zich een onverwachte fout voor", "alert.unexpected.title": "Oeps!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Je kunt {combo} klikken om dit de volgende keer over te slaan", "bundle_column_error.body": "Tijdens het laden van dit onderdeel is er iets fout gegaan.", "bundle_column_error.retry": "Opnieuw proberen", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Duur van de poll", "compose_form.poll.option_placeholder": "Keuze {number}", "compose_form.poll.remove_option": "Deze keuze verwijderen", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Media als gevoelig markeren", @@ -373,15 +381,20 @@ "search_results.statuses": "Posts", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {resultaat} other {resultaten}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Media toevoegen (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Uploadlimiet van bestand overschreden.", "upload_error.poll": "Het uploaden van bestanden is in polls niet toegestaan.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Omschrijf dit voor mensen met een visuele beperking", "upload_form.focus": "Voorvertoning aanpassen", "upload_form.undo": "Verwijderen", diff --git a/app/soapbox/locales/nn.json b/app/soapbox/locales/nn.json index fd4469101..706e18ca9 100644 --- a/app/soapbox/locales/nn.json +++ b/app/soapbox/locales/nn.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Eit uforventa problem har hendt.", "alert.unexpected.title": "Oops!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Du kan trykke {combo} for å hoppe over dette neste gong", "bundle_column_error.body": "Noko gikk gale mens komponent ble nedlasta.", "bundle_column_error.retry": "Prøv igjen", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Varigheit for spørring", "compose_form.poll.option_placeholder": "Val {number}", "compose_form.poll.remove_option": "Ta burt dette valet", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Tut", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Merk media som sensitivt", @@ -373,15 +381,20 @@ "search_results.statuses": "Posts", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {result} other {results}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Add media (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Describe for the visually impaired", "upload_form.focus": "Change preview", "upload_form.undo": "Delete", diff --git a/app/soapbox/locales/no.json b/app/soapbox/locales/no.json index f7fabd61b..270b8db2f 100644 --- a/app/soapbox/locales/no.json +++ b/app/soapbox/locales/no.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "An unexpected error occurred.", "alert.unexpected.title": "Oops!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "You kan trykke {combo} for å hoppe over dette neste gang", "bundle_column_error.body": "Noe gikk galt mens denne komponenten lastet.", "bundle_column_error.retry": "Prøv igjen", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Tut", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -373,15 +381,20 @@ "search_results.statuses": "Posts", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {resultat} other {resultater}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Legg til media", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Beskriv for synshemmede", "upload_form.focus": "Change preview", "upload_form.undo": "Angre", diff --git a/app/soapbox/locales/oc.json b/app/soapbox/locales/oc.json index 6cf263beb..5664070a3 100644 --- a/app/soapbox/locales/oc.json +++ b/app/soapbox/locales/oc.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Una error s’es producha.", "alert.unexpected.title": "Ops !", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Podètz botar {combo} per passar aquò lo còp que ven", "bundle_column_error.body": "Quicòm a fach mèuca pendent lo cargament d’aqueste compausant.", "bundle_column_error.retry": "Tornar ensajar", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Durada del sondatge", "compose_form.poll.option_placeholder": "Opcion {number}", "compose_form.poll.remove_option": "Levar aquesta opcion", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Tut", "compose_form.publish_loud": "{publish} !", "compose_form.sensitive.hide": "Marcar coma sensible", @@ -373,15 +381,20 @@ "search_results.statuses": "Tuts", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {resultat} other {resultats}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Ajustar un mèdia (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Talha maximum pels mandadís subrepassada.", "upload_error.poll": "Lo mandadís de fichièr es pas autorizat pels sondatges.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Descripcion pels mal vesents", "upload_form.focus": "Modificar l’apercebut", "upload_form.undo": "Suprimir", diff --git a/app/soapbox/locales/pl.json b/app/soapbox/locales/pl.json index d41476d26..d26b1d004 100644 --- a/app/soapbox/locales/pl.json +++ b/app/soapbox/locales/pl.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Wystąpił nieoczekiwany błąd.", "alert.unexpected.title": "O nie!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Naciśnij {combo}, aby pominąć to następnym razem", "bundle_column_error.body": "Coś poszło nie tak podczas ładowania tego składnika.", "bundle_column_error.retry": "Spróbuj ponownie", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Czas trwania głosowania", "compose_form.poll.option_placeholder": "Opcja {number}", "compose_form.poll.remove_option": "Usuń tę opcję", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Wyślij", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Oznacz multimedia jako wrażliwe", @@ -373,15 +381,20 @@ "search_results.statuses": "Wpisy", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {wynik} few {wyniki} many {wyników} more {wyników}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Dodaj zawartość multimedialną (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Przekroczono limit plików do wysłania.", "upload_error.poll": "Dołączanie plików nie dozwolone z głosowaniami.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Wprowadź opis dla niewidomych i niedowidzących", "upload_form.focus": "Change preview", "upload_form.undo": "Usuń", diff --git a/app/soapbox/locales/pt-BR.json b/app/soapbox/locales/pt-BR.json index 05d7a77c6..83bc4c203 100644 --- a/app/soapbox/locales/pt-BR.json +++ b/app/soapbox/locales/pt-BR.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Um erro inesperado ocorreu.", "alert.unexpected.title": "Eita!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Você pode pressionar {combo} para ignorar este diálogo na próxima vez", "bundle_column_error.body": "Algo de errado aconteceu enquanto este componente era carregado.", "bundle_column_error.retry": "Tente novamente", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Duração da enquete", "compose_form.poll.option_placeholder": "Opção {number}", "compose_form.poll.remove_option": "Remover essa opção", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publicar", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Marcar mídia como sensível", @@ -373,15 +381,20 @@ "search_results.statuses": "Posts", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Adicionar mídia (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Limite de envio de arquivos excedido.", "upload_error.poll": "Envio de arquivos não é permitido com enquetes.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Descreva a imagem para deficientes visuais", "upload_form.focus": "Ajustar foco", "upload_form.undo": "Remover", diff --git a/app/soapbox/locales/pt.json b/app/soapbox/locales/pt.json index 3ea7c2466..90c578b22 100644 --- a/app/soapbox/locales/pt.json +++ b/app/soapbox/locales/pt.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Ocorreu um erro inesperado.", "alert.unexpected.title": "Bolas!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Pode clicar {combo} para não voltar a ver", "bundle_column_error.body": "Algo de errado aconteceu enquanto este componente era carregado.", "bundle_column_error.retry": "Tente de novo", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Duração da votação", "compose_form.poll.option_placeholder": "Opção {number}", "compose_form.poll.remove_option": "Eliminar esta opção", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Marcar multimédia como sensível", @@ -373,15 +381,20 @@ "search_results.statuses": "Posts", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Adicionar media", "upload_error.limit": "Limite máximo do ficheiro a carregar excedido.", "upload_error.poll": "Carregamento de ficheiros não é permitido em votações.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Descrição da imagem para pessoas com dificuldades visuais", "upload_form.focus": "Change preview", "upload_form.undo": "Apagar", diff --git a/app/soapbox/locales/ro.json b/app/soapbox/locales/ro.json index d751dafa6..4b8e6a7d9 100644 --- a/app/soapbox/locales/ro.json +++ b/app/soapbox/locales/ro.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "A apărut o eroare neașteptată.", "alert.unexpected.title": "Hopa!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Poți apăsa {combo} pentru a omite asta data viitoare", "bundle_column_error.body": "Ceva nu a funcționat la încărcarea acestui component.", "bundle_column_error.retry": "Încearcă din nou", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Postează", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -373,15 +381,20 @@ "search_results.statuses": "Postări", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {result} other {results}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Adaugă media (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Adaugă o descriere pentru persoanele cu deficiențe de vedere", "upload_form.focus": "Schimbă previzualizarea", "upload_form.undo": "Șterge", diff --git a/app/soapbox/locales/ru.json b/app/soapbox/locales/ru.json index b3a956d4f..07dca706a 100644 --- a/app/soapbox/locales/ru.json +++ b/app/soapbox/locales/ru.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Что-то пошло не так.", "alert.unexpected.title": "Ой!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Нажмите {combo}, чтобы пропустить это в следующий раз", "bundle_column_error.body": "Что-то пошло не так при загрузке этого компонента.", "bundle_column_error.retry": "Попробовать снова", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Длительность опроса", "compose_form.poll.option_placeholder": "Вариант {number}", "compose_form.poll.remove_option": "Удалить этот вариант", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Запостить", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Пометить медиафайл как чувствительный", @@ -373,15 +381,20 @@ "search_results.statuses": "Посты", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {результат} few {результата} many {результатов} other {результатов}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Добавить медиаконтент", "upload_error.limit": "Достигнут лимит загруженных файлов.", "upload_error.poll": "К опросам нельзя прикреплять файлы.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Добавьте описание для людей с нарушениями зрения:", "upload_form.focus": "Обрезать", "upload_form.undo": "Отменить", diff --git a/app/soapbox/locales/sk.json b/app/soapbox/locales/sk.json index aaed9f420..bfb2ac636 100644 --- a/app/soapbox/locales/sk.json +++ b/app/soapbox/locales/sk.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Vyskytla sa nečakaná chyba.", "alert.unexpected.title": "Ups!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Nabudúce môžeš kliknúť {combo} pre preskočenie", "bundle_column_error.body": "Pri načítaní tohto prvku nastala nejaká chyba.", "bundle_column_error.retry": "Skús to znova", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Trvanie ankety", "compose_form.poll.option_placeholder": "Voľba {number}", "compose_form.poll.remove_option": "Odstráň túto voľbu", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Pošli", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Označ médiá ako chúlostivé", @@ -373,15 +381,20 @@ "search_results.statuses": "Príspevky", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {výsledok} many {výsledkov} other {výsledky}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Pridaj médiálny súbor (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Limit pre nahrávanie súborov bol prekročený.", "upload_error.poll": "Nahrávanie súborov pri anketách nieje možné.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Opis pre slabo vidiacich", "upload_form.focus": "Change preview", "upload_form.undo": "Vymaž", diff --git a/app/soapbox/locales/sl.json b/app/soapbox/locales/sl.json index 76a3b4cf5..2accb2fb5 100644 --- a/app/soapbox/locales/sl.json +++ b/app/soapbox/locales/sl.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Zgodila se je nepričakovana napaka.", "alert.unexpected.title": "Uups!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Če želite preskočiti to, lahko pritisnete {combo}", "bundle_column_error.body": "Med nalaganjem te komponente je prišlo do napake.", "bundle_column_error.retry": "Poskusi ponovno", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Trajanje ankete", "compose_form.poll.option_placeholder": "Izbira {number}", "compose_form.poll.remove_option": "Odstrani to izbiro", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Tutni", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Označi medij kot občutljiv", @@ -373,15 +381,20 @@ "search_results.statuses": "Tuti", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {rezultat} other {rezultatov}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Dodaj medij", "upload_error.limit": "Omejitev prenosa datoteke je presežena.", "upload_error.poll": "Prenos datoteke z anketami ni dovoljen.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Opišite za slabovidne", "upload_form.focus": "Obreži", "upload_form.undo": "Izbriši", diff --git a/app/soapbox/locales/sq.json b/app/soapbox/locales/sq.json index 1a72a5922..91bca787d 100644 --- a/app/soapbox/locales/sq.json +++ b/app/soapbox/locales/sq.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Ndodhi një gabim të papritur.", "alert.unexpected.title": "Hëm!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Mund të shtypni {combo}, që të anashkalohet kjo herës tjetër", "bundle_column_error.body": "Diç shkoi ters teksa ngarkohej ky përbërës.", "bundle_column_error.retry": "Riprovoni", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Mesazh", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -373,15 +381,20 @@ "search_results.statuses": "Mesazhe", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {rezultat} other {rezultate}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Shtoni media (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "U tejkalua kufi ngarkimi kartelash.", "upload_error.poll": "File upload not allowed with polls.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Përshkruajeni për persona me probleme shikimi", "upload_form.focus": "Ndryshoni parapamjen", "upload_form.undo": "Fshije", diff --git a/app/soapbox/locales/sr-Latn.json b/app/soapbox/locales/sr-Latn.json index ee1ef2017..60f7a34bb 100644 --- a/app/soapbox/locales/sr-Latn.json +++ b/app/soapbox/locales/sr-Latn.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "An unexpected error occurred.", "alert.unexpected.title": "Oops!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Možete pritisnuti {combo} da preskočite ovo sledeći put", "bundle_column_error.body": "Nešto je pošlo po zlu prilikom učitavanja ove komponente.", "bundle_column_error.retry": "Pokušajte ponovo", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Tutni", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -373,15 +381,20 @@ "search_results.statuses": "Posts", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {rezultat} few {rezultata} other {rezultata}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Dodaj multimediju", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Opiši za slabovide osobe", "upload_form.focus": "Change preview", "upload_form.undo": "Opozovi", diff --git a/app/soapbox/locales/sr.json b/app/soapbox/locales/sr.json index 0cdaee5ed..f342f50ff 100644 --- a/app/soapbox/locales/sr.json +++ b/app/soapbox/locales/sr.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Појавила се неочекивана грешка.", "alert.unexpected.title": "Упс!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Можете притиснути {combo} да прескочите ово следећи пут", "bundle_column_error.body": "Нешто је пошло по злу приликом учитавања ове компоненте.", "bundle_column_error.retry": "Покушајте поново", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Труби", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -373,15 +381,20 @@ "search_results.statuses": "Трубе", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {резултат} few {резултата} other {резултата}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Додај мултимедију (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Опишите за особе са оштећеним видом", "upload_form.focus": "Change preview", "upload_form.undo": "Обриши", diff --git a/app/soapbox/locales/sv.json b/app/soapbox/locales/sv.json index 62ae1ee83..4e0d1f3d3 100644 --- a/app/soapbox/locales/sv.json +++ b/app/soapbox/locales/sv.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Ett oväntat fel uppstod.", "alert.unexpected.title": "Hoppsan!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Du kan trycka {combo} för att slippa denna nästa gång", "bundle_column_error.body": "Något gick fel när du laddade denna komponent.", "bundle_column_error.retry": "Försök igen", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Varaktighet för omröstning", "compose_form.poll.option_placeholder": "Alternativ {number}", "compose_form.poll.remove_option": "Ta bort alternativ", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Tut", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Markera media som känsligt", @@ -373,15 +381,20 @@ "search_results.statuses": "Posts", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, ett {result} andra {results}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Lägg till media", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Beskriv för synskadade", "upload_form.focus": "Beskär", "upload_form.undo": "Ta bort", diff --git a/app/soapbox/locales/ta.json b/app/soapbox/locales/ta.json index 19220d8d1..b0814c50d 100644 --- a/app/soapbox/locales/ta.json +++ b/app/soapbox/locales/ta.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "எதிர் பாராத பிழை ஏற்பட்டு விட்டது.", "alert.unexpected.title": "அச்சச்சோ!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "நீங்கள் அழுத்தவும் {combo} அடுத்த முறை தவிர்க்கவும்", "bundle_column_error.body": "இந்த கூறுகளை ஏற்றும்போது ஏதோ தவறு ஏற்பட்டது.", "bundle_column_error.retry": "மீண்டும் முயற்சி செய்", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "வாக்கெடுப்பு காலம்", "compose_form.poll.option_placeholder": "தேர்ந்தெடுப்ப {number}", "compose_form.poll.remove_option": "இந்த விருப்பத்தை அகற்றவும்", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -373,15 +381,20 @@ "search_results.statuses": "Posts", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {result} மற்ற {results}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "மீடியாவைச் சேர்க்கவும் (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "கோப்பு பதிவேற்ற வரம்பு மீறப்பட்டது.", "upload_error.poll": "கோப்பு பதிவேற்றம் அனுமதிக்கப்படவில்லை.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "பார்வையற்ற விவரிக்கவும்", "upload_form.focus": "Change preview", "upload_form.undo": "Delete", diff --git a/app/soapbox/locales/te.json b/app/soapbox/locales/te.json index e84b9f2b3..314ffe21a 100644 --- a/app/soapbox/locales/te.json +++ b/app/soapbox/locales/te.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "అనుకోని తప్పు జరిగినది.", "alert.unexpected.title": "అయ్యో!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "మీరు తదుపరిసారి దీనిని దాటవేయడానికి {combo} నొక్కవచ్చు", "bundle_column_error.body": "ఈ భాగం లోడ్ అవుతున్నప్పుడు ఏదో తప్పు జరిగింది.", "bundle_column_error.retry": "మళ్ళీ ప్రయత్నించండి", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "ఎన్నిక వ్యవధి", "compose_form.poll.option_placeholder": "ఎంపిక {number}", "compose_form.poll.remove_option": "ఈ ఎంపికను తొలగించు", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "టూట్", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -373,15 +381,20 @@ "search_results.statuses": "టూట్లు", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {result} other {results}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "మీడియాను జోడించండి (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "దృష్టి లోపమున్న వారి కోసం వివరించండి", "upload_form.focus": "ప్రివ్యూను మార్చు", "upload_form.undo": "తొలగించు", diff --git a/app/soapbox/locales/th.json b/app/soapbox/locales/th.json index 43b5b359f..c17e0c367 100644 --- a/app/soapbox/locales/th.json +++ b/app/soapbox/locales/th.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "เกิดข้อผิดพลาดที่ไม่คาดคิด", "alert.unexpected.title": "อุปส์!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "คุณสามารถกด {combo} เพื่อข้ามสิ่งนี้ในครั้งถัดไป", "bundle_column_error.body": "มีบางอย่างผิดพลาดขณะโหลดส่วนประกอบนี้", "bundle_column_error.retry": "ลองอีกครั้ง", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "ระยะเวลาโพล", "compose_form.poll.option_placeholder": "ทางเลือก {number}", "compose_form.poll.remove_option": "เอาทางเลือกนี้ออก", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "โพสต์", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "ทำเครื่องหมายสื่อว่าละเอียดอ่อน", @@ -373,15 +381,20 @@ "search_results.statuses": "โพสต์", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, other {ผลลัพธ์}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "เพิ่มสื่อ (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "เกินขีดจำกัดการอัปโหลดไฟล์", "upload_error.poll": "ไม่อนุญาตให้อัปโหลดไฟล์กับการลงคะแนน", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "อธิบายสำหรับผู้บกพร่องทางการมองเห็น", "upload_form.focus": "ตัวอย่างการเปลี่ยนแปลง", "upload_form.undo": "ลบ", diff --git a/app/soapbox/locales/tr.json b/app/soapbox/locales/tr.json index fe06cdf45..47bcf937a 100644 --- a/app/soapbox/locales/tr.json +++ b/app/soapbox/locales/tr.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Beklenmedik bir hata oluştu.", "alert.unexpected.title": "Hay aksi!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Bir daha ki sefere {combo} tuşuna basabilirsiniz", "bundle_column_error.body": "Bu bileşen yüklenirken bir şeyler ters gitti.", "bundle_column_error.retry": "Tekrar deneyin", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Anket süresi", "compose_form.poll.option_placeholder": "Seçim {number}", "compose_form.poll.remove_option": "Bu seçimi kaldır", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Gönder", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Medyayı hassas olarak işaretle", @@ -373,15 +381,20 @@ "search_results.statuses": "Gönderiler", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {sonuç} other {sonuçlar}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Görsel ekle", "upload_error.limit": "Dosya yükleme sınırı aşıldı.", "upload_error.poll": "Anketlerde dosya yüklemesine izin verilmez.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Görme engelliler için açıklama", "upload_form.focus": "Change preview", "upload_form.undo": "Geri al", diff --git a/app/soapbox/locales/uk.json b/app/soapbox/locales/uk.json index f88091b35..1cbb2f942 100644 --- a/app/soapbox/locales/uk.json +++ b/app/soapbox/locales/uk.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Трапилась неочікувана помилка.", "alert.unexpected.title": "Ой!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "Ви можете натиснути {combo}, щоб пропустити це наступного разу", "bundle_column_error.body": "Щось пішло не так під час завантаження компоненту.", "bundle_column_error.retry": "Спробуйте ще раз", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Тривалість опитування", "compose_form.poll.option_placeholder": "Варіант {number}", "compose_form.poll.remove_option": "Видалити цей варіант", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Дмухнути", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Позначити медіа як дражливе", @@ -373,15 +381,20 @@ "search_results.statuses": "Дмухів", "search_results.top": "Top", "search_results.total": "{count, number} {count, plural, one {результат} few {результати} many {результатів} other {результатів}}", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "Додати медіаконтент", "upload_error.limit": "Ліміт завантаження файлів перевищено.", "upload_error.poll": "Не можна завантажувати файли до опитувань.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Опишіть для людей з вадами зору", "upload_form.focus": "Обрізати", "upload_form.undo": "Видалити", diff --git a/app/soapbox/locales/zh-CN.json b/app/soapbox/locales/zh-CN.json index 9cd2c9206..9e1d23662 100644 --- a/app/soapbox/locales/zh-CN.json +++ b/app/soapbox/locales/zh-CN.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "发生了意外错误。", "alert.unexpected.title": "哎呀!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "下次按住 {combo} 即可跳过此提示", "bundle_column_error.body": "载入这个组件时发生了错误。", "bundle_column_error.retry": "重试", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "投票持续时间", "compose_form.poll.option_placeholder": "选项 {number}", "compose_form.poll.remove_option": "移除这个选项", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "嘟嘟", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "标记媒体为敏感内容", @@ -373,15 +381,20 @@ "search_results.statuses": "嘟文", "search_results.top": "Top", "search_results.total": "共 {count, number} 个结果", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "上传媒体文件 (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "文件大小超过限制。", "upload_error.poll": "投票中不允许上传文件。", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "为视觉障碍人士添加文字说明", "upload_form.focus": "剪裁", "upload_form.undo": "删除", diff --git a/app/soapbox/locales/zh-HK.json b/app/soapbox/locales/zh-HK.json index 920663708..28f248ba6 100644 --- a/app/soapbox/locales/zh-HK.json +++ b/app/soapbox/locales/zh-HK.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "發生不可預期的錯誤。", "alert.unexpected.title": "噢!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "如你想在下次路過這顯示,請按{combo},", "bundle_column_error.body": "加載本組件出錯。", "bundle_column_error.retry": "重試", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "發文", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -373,15 +381,20 @@ "search_results.statuses": "文章", "search_results.top": "Top", "search_results.total": "{count, number} 項結果", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "上載媒體檔案", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "為視覺障礙人士添加文字說明", "upload_form.focus": "裁切", "upload_form.undo": "刪除", diff --git a/app/soapbox/locales/zh-TW.json b/app/soapbox/locales/zh-TW.json index 3c74a08bb..ddf6944d9 100644 --- a/app/soapbox/locales/zh-TW.json +++ b/app/soapbox/locales/zh-TW.json @@ -43,6 +43,13 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "發生了非預期的錯誤。", "alert.unexpected.title": "哎呀!", + "audio.close": "Close audio", + "audio.expand": "Expand audio", + "audio.hide": "Hide audio", + "audio.mute": "Mute", + "audio.pause": "Pause", + "audio.play": "Play", + "audio.unmute": "Unmute", "boost_modal.combo": "下次您可以按 {combo} 跳過", "bundle_column_error.body": "載入此元件時發生錯誤。", "bundle_column_error.retry": "重試", @@ -80,6 +87,7 @@ "compose_form.poll.duration": "投票期限", "compose_form.poll.option_placeholder": "第 {number} 個選擇", "compose_form.poll.remove_option": "移除此選擇", + "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "嘟出去", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "標記媒體為敏感內容", @@ -373,15 +381,20 @@ "search_results.statuses": "嘟文", "search_results.top": "Top", "search_results.total": "{count, number} 項結果", + "security.deactivate_account.fail": "Account deactivation failed.", + "security.deactivate_account.success": "Account successfully deactivated.", "security.fields.email.label": "Email address", "security.fields.new_password.label": "New password", "security.fields.old_password.label": "Current password", "security.fields.password.label": "Password", "security.fields.password_confirmation.label": "New password (again)", + "security.headers.deactivate": "Deactivate Account", "security.headers.tokens": "Sessions", "security.headers.update_email": "Change Email", "security.headers.update_password": "Change Password", "security.submit": "Save changes", + "security.submit.deactivate": "Deactivate Account", + "security.text.deactivate": "To deactivate your account, you must first enter your account password, then click Deactivate Account. \n Account deactivation will hide your profile and your posts on this server. \n However, your account will not be deleted and your data will not be purged. \n In addition, any of your data that was previously distributed to other servers will remain on those servers.", "security.tokens.revoke": "Revoke", "security.update_email.fail": "Update email failed.", "security.update_email.success": "Email successfully updated.", @@ -453,6 +466,7 @@ "upload_button.label": "上傳媒體檔案 (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "已達到檔案上傳限制。", "upload_error.poll": "不允許在投票上傳檔案。", + "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "為視障人士增加文字說明", "upload_form.focus": "變更預覽", "upload_form.undo": "刪除", From a2bd359c76217aacaec9ce4ad2a104abdfe0303b Mon Sep 17 00:00:00 2001 From: crockwave Date: Sun, 28 Jun 2020 10:51:55 -0500 Subject: [PATCH 4/6] - debugged features/security - added deactivateAccount method to actions/auth - successful deactivation logs user out --- app/soapbox/actions/auth.js | 21 +++++++++++++++++++++ app/soapbox/features/security/index.js | 1 + 2 files changed, 22 insertions(+) diff --git a/app/soapbox/actions/auth.js b/app/soapbox/actions/auth.js index 007622d80..412ea0d82 100644 --- a/app/soapbox/actions/auth.js +++ b/app/soapbox/actions/auth.js @@ -19,6 +19,10 @@ export const CHANGE_EMAIL_REQUEST = 'CHANGE_EMAIL_REQUEST'; export const CHANGE_EMAIL_SUCCESS = 'CHANGE_EMAIL_SUCCESS'; export const CHANGE_EMAIL_FAIL = 'CHANGE_EMAIL_FAIL'; +export const DEACTIVATE_ACCOUNT_REQUEST = 'DEACTIVATE_ACCOUNT_REQUEST'; +export const DEACTIVATE_ACCOUNT_SUCCESS = 'DEACTIVATE_ACCOUNT_SUCCESS'; +export const DEACTIVATE_ACCOUNT_FAIL = 'DEACTIVATE_ACCOUNT_FAIL'; + export const CHANGE_PASSWORD_REQUEST = 'CHANGE_PASSWORD_REQUEST'; export const CHANGE_PASSWORD_SUCCESS = 'CHANGE_PASSWORD_SUCCESS'; export const CHANGE_PASSWORD_FAIL = 'CHANGE_PASSWORD_FAIL'; @@ -183,6 +187,23 @@ export function changeEmail(email, password) { }; } +export function deactivateAccount(password) { + return (dispatch, getState) => { + dispatch({ type: DEACTIVATE_ACCOUNT_REQUEST }); + return api(getState).post('/api/pleroma/disable_account', { + password, + }).then(response => { + if (response.data.error) throw response.data.error; // This endpoint returns HTTP 200 even on failure + dispatch({ type: DEACTIVATE_ACCOUNT_SUCCESS, response }); + dispatch({ type: AUTH_LOGGED_OUT }); + dispatch(showAlert('Successfully logged out.', '')); + }).catch(error => { + dispatch({ type: DEACTIVATE_ACCOUNT_FAIL, error, skipAlert: true }); + throw error; + }); + }; +} + export function changePassword(oldPassword, newPassword, confirmation) { return (dispatch, getState) => { dispatch({ type: CHANGE_PASSWORD_REQUEST }); diff --git a/app/soapbox/features/security/index.js b/app/soapbox/features/security/index.js index dd291a095..df8e75f4e 100644 --- a/app/soapbox/features/security/index.js +++ b/app/soapbox/features/security/index.js @@ -16,6 +16,7 @@ import { changePassword, fetchOAuthTokens, revokeOAuthToken, + deactivateAccount, } from 'soapbox/actions/auth'; import { showAlert } from 'soapbox/actions/alerts'; From a21589d9ce4b91950b880e4ff95b0321e4661668 Mon Sep 17 00:00:00 2001 From: crockwave Date: Sun, 28 Jun 2020 11:09:03 -0500 Subject: [PATCH 5/6] translations --- app/soapbox/actions/accounts.js | 1 + app/soapbox/locales/ar.json | 9 ---- app/soapbox/locales/ast.json | 9 ---- app/soapbox/locales/bg.json | 9 ---- app/soapbox/locales/bn.json | 9 ---- app/soapbox/locales/br.json | 9 ---- app/soapbox/locales/ca.json | 9 ---- app/soapbox/locales/co.json | 9 ---- app/soapbox/locales/cs.json | 9 ---- app/soapbox/locales/cy.json | 9 ---- app/soapbox/locales/da.json | 9 ---- app/soapbox/locales/de.json | 9 ---- app/soapbox/locales/defaultMessages.json | 60 +----------------------- app/soapbox/locales/el.json | 9 ---- app/soapbox/locales/en.json | 9 ---- app/soapbox/locales/eo.json | 9 ---- app/soapbox/locales/es-AR.json | 9 ---- app/soapbox/locales/es.json | 9 ---- app/soapbox/locales/et.json | 9 ---- app/soapbox/locales/eu.json | 9 ---- app/soapbox/locales/fa.json | 9 ---- app/soapbox/locales/fi.json | 9 ---- app/soapbox/locales/fr.json | 9 ---- app/soapbox/locales/ga.json | 9 ---- app/soapbox/locales/gl.json | 9 ---- app/soapbox/locales/he.json | 9 ---- app/soapbox/locales/hi.json | 9 ---- app/soapbox/locales/hr.json | 9 ---- app/soapbox/locales/hu.json | 9 ---- app/soapbox/locales/hy.json | 9 ---- app/soapbox/locales/id.json | 9 ---- app/soapbox/locales/io.json | 9 ---- app/soapbox/locales/it.json | 9 ---- app/soapbox/locales/ja.json | 9 ---- app/soapbox/locales/ka.json | 9 ---- app/soapbox/locales/kk.json | 9 ---- app/soapbox/locales/ko.json | 9 ---- app/soapbox/locales/lt.json | 9 ---- app/soapbox/locales/lv.json | 9 ---- app/soapbox/locales/mk.json | 9 ---- app/soapbox/locales/ms.json | 9 ---- app/soapbox/locales/nl.json | 9 ---- app/soapbox/locales/nn.json | 9 ---- app/soapbox/locales/no.json | 9 ---- app/soapbox/locales/oc.json | 9 ---- app/soapbox/locales/pl.json | 9 ---- app/soapbox/locales/pt-BR.json | 9 ---- app/soapbox/locales/pt.json | 9 ---- app/soapbox/locales/ro.json | 9 ---- app/soapbox/locales/ru.json | 9 ---- app/soapbox/locales/sk.json | 9 ---- app/soapbox/locales/sl.json | 9 ---- app/soapbox/locales/sq.json | 9 ---- app/soapbox/locales/sr-Latn.json | 9 ---- app/soapbox/locales/sr.json | 9 ---- app/soapbox/locales/sv.json | 9 ---- app/soapbox/locales/ta.json | 9 ---- app/soapbox/locales/te.json | 9 ---- app/soapbox/locales/th.json | 9 ---- app/soapbox/locales/tr.json | 9 ---- app/soapbox/locales/uk.json | 9 ---- app/soapbox/locales/zh-CN.json | 9 ---- app/soapbox/locales/zh-HK.json | 9 ---- app/soapbox/locales/zh-TW.json | 9 ---- 64 files changed, 2 insertions(+), 617 deletions(-) diff --git a/app/soapbox/actions/accounts.js b/app/soapbox/actions/accounts.js index ec1d1cb6b..e261e73d5 100644 --- a/app/soapbox/actions/accounts.js +++ b/app/soapbox/actions/accounts.js @@ -10,6 +10,7 @@ import { export const ACCOUNT_FETCH_REQUEST = 'ACCOUNT_FETCH_REQUEST'; export const ACCOUNT_FETCH_SUCCESS = 'ACCOUNT_FETCH_SUCCESS'; export const ACCOUNT_FETCH_FAIL = 'ACCOUNT_FETCH_FAIL'; +test export const ACCOUNT_FOLLOW_REQUEST = 'ACCOUNT_FOLLOW_REQUEST'; export const ACCOUNT_FOLLOW_SUCCESS = 'ACCOUNT_FOLLOW_SUCCESS'; diff --git a/app/soapbox/locales/ar.json b/app/soapbox/locales/ar.json index 8d95ddc19..7fa5e4376 100644 --- a/app/soapbox/locales/ar.json +++ b/app/soapbox/locales/ar.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "لقد طرأ هناك خطأ غير متوقّع.", "alert.unexpected.title": "المعذرة!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "يمكنك/ي ضغط {combo} لتخطّي هذه في المرّة القادمة", "bundle_column_error.body": "لقد وقع هناك خطأ أثناء عملية تحميل هذا العنصر.", "bundle_column_error.retry": "إعادة المحاولة", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "مدة استطلاع الرأي", "compose_form.poll.option_placeholder": "الخيار {number}", "compose_form.poll.remove_option": "إزالة هذا الخيار", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "بوّق", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "تحديد الوسائط كحساسة", @@ -466,7 +458,6 @@ "upload_button.label": "إضافة وسائط (JPEG، PNG، GIF، WebM، MP4، MOV)", "upload_error.limit": "لقد تم بلوغ الحد الأقصى المسموح به لإرسال الملفات.", "upload_error.poll": "لا يمكن إدراج ملفات في استطلاعات الرأي.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "وصف للمعاقين بصريا", "upload_form.focus": "Change preview", "upload_form.undo": "حذف", diff --git a/app/soapbox/locales/ast.json b/app/soapbox/locales/ast.json index 2ac028fa1..712907506 100644 --- a/app/soapbox/locales/ast.json +++ b/app/soapbox/locales/ast.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Asocedió un fallu inesperáu.", "alert.unexpected.title": "¡Ups!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Pues primir {combo} pa saltar esto la próxima vegada", "bundle_column_error.body": "Something went wrong while loading this component.", "bundle_column_error.retry": "Try again", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -466,7 +458,6 @@ "upload_button.label": "Add media (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Descripción pa discapacitaos visuales", "upload_form.focus": "Change preview", "upload_form.undo": "Desaniciar", diff --git a/app/soapbox/locales/bg.json b/app/soapbox/locales/bg.json index e5ce935bd..07c3ac655 100644 --- a/app/soapbox/locales/bg.json +++ b/app/soapbox/locales/bg.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "An unexpected error occurred.", "alert.unexpected.title": "Oops!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "You can press {combo} to skip this next time", "bundle_column_error.body": "Something went wrong while loading this component.", "bundle_column_error.retry": "Опитай отново", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Раздумай", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -466,7 +458,6 @@ "upload_button.label": "Добави медия", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Describe for the visually impaired", "upload_form.focus": "Change preview", "upload_form.undo": "Отмяна", diff --git a/app/soapbox/locales/bn.json b/app/soapbox/locales/bn.json index c540a5de4..c5d6758b9 100644 --- a/app/soapbox/locales/bn.json +++ b/app/soapbox/locales/bn.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "অপ্রত্যাশিত একটি সমস্যা হয়েছে।", "alert.unexpected.title": "ওহো!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "পরেরবার আপনি {combo} চাপ দিলে এটার শেষে চলে যেতে পারবেন", "bundle_column_error.body": "এই অংশটি দেখতে যেয়ে কোনো সমস্যা হয়েছে।", "bundle_column_error.retry": "আবার চেষ্টা করুন", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "ভোটগ্রহনের সময়", "compose_form.poll.option_placeholder": "বিকল্প {number}", "compose_form.poll.remove_option": "এই বিকল্পটি মুছে ফেলুন", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "টুট", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "এই ছবি বা ভিডিওটি সংবেদনশীল হিসেবে চিহ্নিত করতে", @@ -466,7 +458,6 @@ "upload_button.label": "ছবি বা ভিডিও যুক্ত করতে (এসব ধরণের: JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "যা যুক্ত করতে চাচ্ছেন সেটি বেশি বড়, এখানকার সর্বাধিকের মেমোরির উপরে চলে গেছে।", "upload_error.poll": "নির্বাচনক্ষেত্রে কোনো ফাইল যুক্ত করা যাবেনা।", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "যারা দেখতে পায়না তাদের জন্য এটা বর্ণনা করতে", "upload_form.focus": "Change preview", "upload_form.undo": "মুছে ফেলতে", diff --git a/app/soapbox/locales/br.json b/app/soapbox/locales/br.json index cd3dae39c..0f9e8bbce 100644 --- a/app/soapbox/locales/br.json +++ b/app/soapbox/locales/br.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Ur fazi dic'hortozet zo degouezhet.", "alert.unexpected.title": "C'hem !", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "You can press {combo} to skip this next time", "bundle_column_error.body": "Something went wrong while loading this component.", "bundle_column_error.retry": "Klask endro", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -466,7 +458,6 @@ "upload_button.label": "Add media (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Describe for the visually impaired", "upload_form.focus": "Change preview", "upload_form.undo": "Delete", diff --git a/app/soapbox/locales/ca.json b/app/soapbox/locales/ca.json index afb34659d..6cc3ba7ea 100644 --- a/app/soapbox/locales/ca.json +++ b/app/soapbox/locales/ca.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "S'ha produït un error inesperat.", "alert.unexpected.title": "Vaja!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Pots premer {combo} per saltar-te això el proper cop", "bundle_column_error.body": "S'ha produït un error en carregar aquest component.", "bundle_column_error.retry": "Torna-ho a provar", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Durada de l'enquesta", "compose_form.poll.option_placeholder": "Opció {number}", "compose_form.poll.remove_option": "Elimina aquesta opció", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Marcar mèdia com a sensible", @@ -466,7 +458,6 @@ "upload_button.label": "Afegir multimèdia (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "S'ha superat el límit de càrrega d'arxius.", "upload_error.poll": "No es permet l'enviament de fitxers en les enquestes.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Descriure els problemes visuals", "upload_form.focus": "Change preview", "upload_form.undo": "Esborra", diff --git a/app/soapbox/locales/co.json b/app/soapbox/locales/co.json index bdcb4722f..656361fad 100644 --- a/app/soapbox/locales/co.json +++ b/app/soapbox/locales/co.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Un prublemu inaspettatu hè accadutu.", "alert.unexpected.title": "Uups!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Pudete appughjà nant'à {combo} per saltà quessa a prussima volta", "bundle_column_error.body": "C'hè statu un prublemu caricandu st'elementu.", "bundle_column_error.retry": "Pruvà torna", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Durata di u scandagliu", "compose_form.poll.option_placeholder": "Scelta {number}", "compose_form.poll.remove_option": "Toglie sta scelta", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Indicà u media cum'è sensibile", @@ -466,7 +458,6 @@ "upload_button.label": "Aghjunghje un media (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Limita di caricamentu di fugliali trapassata.", "upload_error.poll": "Ùn si pò micca caricà fugliali cù i scandagli.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Discrive per i malvistosi", "upload_form.focus": "Change preview", "upload_form.undo": "Sguassà", diff --git a/app/soapbox/locales/cs.json b/app/soapbox/locales/cs.json index 8362c3580..e5b447cfc 100644 --- a/app/soapbox/locales/cs.json +++ b/app/soapbox/locales/cs.json @@ -43,13 +43,6 @@ "account_gallery.none": "Žádná média k zobrazení.", "alert.unexpected.message": "Objevila se neočekávaná chyba.", "alert.unexpected.title": "Jejda!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Příště můžete pro přeskočení stisknout {combo}", "bundle_column_error.body": "Při načítání tohoto komponentu se něco pokazilo.", "bundle_column_error.retry": "Zkuste to znovu", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Délka ankety", "compose_form.poll.option_placeholder": "Volba {number}", "compose_form.poll.remove_option": "Odstranit tuto volbu", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publikovat", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Označit média jako citlivá", @@ -466,7 +458,6 @@ "upload_button.label": "Přidat média (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Byl překročen limit nahraných souborů.", "upload_error.poll": "Nahrávání souborů není povoleno u anket.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Popis pro zrakově postižené", "upload_form.focus": "Změnit náhled", "upload_form.undo": "Smazat", diff --git a/app/soapbox/locales/cy.json b/app/soapbox/locales/cy.json index 9a4c5cabf..f5f5ca025 100644 --- a/app/soapbox/locales/cy.json +++ b/app/soapbox/locales/cy.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Digwyddodd gwall annisgwyl.", "alert.unexpected.title": "Wps!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Mae modd gwasgu {combo} er mwyn sgipio hyn tro nesa", "bundle_column_error.body": "Aeth rhywbeth o'i le tra'n llwytho'r elfen hon.", "bundle_column_error.retry": "Ceisiwch eto", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Cyfnod pleidlais", "compose_form.poll.option_placeholder": "Dewisiad {number}", "compose_form.poll.remove_option": "Tynnu'r dewisiad", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Tŵt", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Marcio cyfryngau fel eu bod yn sensitif", @@ -466,7 +458,6 @@ "upload_button.label": "Ychwanegwch gyfryngau (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Wedi mynd heibio'r uchafswm terfyn uwchlwytho.", "upload_error.poll": "Nid oes modd uwchlwytho ffeiliau â phleidleisiau.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Disgrifio i'r rheini a nam ar ei golwg", "upload_form.focus": "Change preview", "upload_form.undo": "Dileu", diff --git a/app/soapbox/locales/da.json b/app/soapbox/locales/da.json index ce907fa60..860ffc293 100644 --- a/app/soapbox/locales/da.json +++ b/app/soapbox/locales/da.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Der opstod en uventet fejl.", "alert.unexpected.title": "Ups!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Du kan trykke {combo} for at springe dette over næste gang", "bundle_column_error.body": "Noget gik galt under indlæsningen af dette komponent.", "bundle_column_error.retry": "Prøv igen", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Afstemningens varighed", "compose_form.poll.option_placeholder": "Valgmulighed {number}", "compose_form.poll.remove_option": "Fjern denne valgmulighed", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Trut", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Markér medie som følsomt", @@ -466,7 +458,6 @@ "upload_button.label": "Tilføj medie (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Uploadgrænse overskredet.", "upload_error.poll": "Filupload ikke tilladt sammen med afstemninger.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Beskriv for svagtseende", "upload_form.focus": "Change preview", "upload_form.undo": "Slet", diff --git a/app/soapbox/locales/de.json b/app/soapbox/locales/de.json index 3bb440f78..fcb47a5f6 100644 --- a/app/soapbox/locales/de.json +++ b/app/soapbox/locales/de.json @@ -43,13 +43,6 @@ "account_gallery.none": "Keine Medien vorhanden.", "alert.unexpected.message": "Ein unerwarteter Fehler ist aufgetreten.", "alert.unexpected.title": "Hoppla!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Drücke {combo}, um dieses Fenster zu überspringen", "bundle_column_error.body": "Etwas ist beim Laden schiefgelaufen.", "bundle_column_error.retry": "Erneut versuchen", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Umfragedauer", "compose_form.poll.option_placeholder": "Antwortmöglichkeit {number}", "compose_form.poll.remove_option": "Antwortmöglichkeit entfernen", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Senden", "compose_form.publish_loud": "{publish}", "compose_form.sensitive.hide": "Medien als heikel markieren", @@ -466,7 +458,6 @@ "upload_button.label": "Mediendatei hinzufügen (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Dateiupload-Limit erreicht.", "upload_error.poll": "Dateiuploads sind in Kombination mit Umfragen nicht erlaubt.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Für Menschen mit Sehbehinderung beschreiben", "upload_form.focus": "Vorschau ändern", "upload_form.undo": "Löschen", diff --git a/app/soapbox/locales/defaultMessages.json b/app/soapbox/locales/defaultMessages.json index e4bc9227e..7da18d2a4 100644 --- a/app/soapbox/locales/defaultMessages.json +++ b/app/soapbox/locales/defaultMessages.json @@ -15,16 +15,12 @@ { "descriptors": [ { - "defaultMessage": "File upload quantity limit exceeded.", + "defaultMessage": "File upload limit exceeded.", "id": "upload_error.limit" }, { "defaultMessage": "File upload not allowed with polls.", "id": "upload_error.poll" - }, - { - "defaultMessage": "File upload size limit exceeded.", - "id": "upload_error.size" } ], "path": "app/soapbox/actions/compose.json" @@ -868,47 +864,6 @@ ], "path": "app/soapbox/features/account/components/header.json" }, - { - "descriptors": [ - { - "defaultMessage": "Play", - "id": "audio.play" - }, - { - "defaultMessage": "Pause", - "id": "audio.pause" - }, - { - "defaultMessage": "Mute", - "id": "audio.mute" - }, - { - "defaultMessage": "Unmute", - "id": "audio.unmute" - }, - { - "defaultMessage": "Hide audio", - "id": "audio.hide" - }, - { - "defaultMessage": "Expand audio", - "id": "audio.expand" - }, - { - "defaultMessage": "Close audio", - "id": "audio.close" - }, - { - "defaultMessage": "Sensitive content", - "id": "status.sensitive_warning" - }, - { - "defaultMessage": "Media hidden", - "id": "status.media_hidden" - } - ], - "path": "app/soapbox/features/audio/index.json" - }, { "descriptors": [ { @@ -1155,10 +1110,6 @@ { "defaultMessage": "{number, plural, one {# day} other {# days}}", "id": "intervals.full.days" - }, - { - "defaultMessage": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", - "id": "compose_form.poll.type.hint" } ], "path": "app/soapbox/features/compose/components/poll_form.json" @@ -2577,15 +2528,6 @@ ], "path": "app/soapbox/features/status/index.json" }, - { - "descriptors": [ - { - "defaultMessage": "View context", - "id": "lightbox.view_context" - } - ], - "path": "app/soapbox/features/ui/components/audio_modal.json" - }, { "descriptors": [ { diff --git a/app/soapbox/locales/el.json b/app/soapbox/locales/el.json index 72a21b941..c4fd34d02 100644 --- a/app/soapbox/locales/el.json +++ b/app/soapbox/locales/el.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Προέκυψε απροσδόκητο σφάλμα.", "alert.unexpected.title": "Εεπ!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Μπορείς να πατήσεις {combo} για να το προσπεράσεις αυτό την επόμενη φορά", "bundle_column_error.body": "Κάτι πήγε στραβά ενώ φορτωνόταν αυτό το στοιχείο.", "bundle_column_error.retry": "Δοκίμασε ξανά", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Διάρκεια δημοσκόπησης", "compose_form.poll.option_placeholder": "Επιλογή {number}", "compose_form.poll.remove_option": "Αφαίρεση επιλογής", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Τουτ", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Σημείωσε τα πολυμέσα ως ευαίσθητα", @@ -466,7 +458,6 @@ "upload_button.label": "Πρόσθεσε πολυμέσα (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Υπέρβαση ορίου μεγέθους ανεβασμένων αρχείων.", "upload_error.poll": "Στις δημοσκοπήσεις δεν επιτρέπεται η μεταφόρτωση αρχείου.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Περιέγραψε για όσους & όσες έχουν προβλήματα όρασης", "upload_form.focus": "Change preview", "upload_form.undo": "Διαγραφή", diff --git a/app/soapbox/locales/en.json b/app/soapbox/locales/en.json index f23235371..ed0c93466 100644 --- a/app/soapbox/locales/en.json +++ b/app/soapbox/locales/en.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "An unexpected error occurred.", "alert.unexpected.title": "Oops!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "You can press {combo} to skip this next time", "bundle_column_error.body": "Something went wrong while loading this component.", "bundle_column_error.retry": "Try again", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -466,7 +458,6 @@ "upload_button.label": "Add media (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Describe for the visually impaired", "upload_form.focus": "Change preview", "upload_form.undo": "Delete", diff --git a/app/soapbox/locales/eo.json b/app/soapbox/locales/eo.json index bb5e09528..7ad0e21c7 100644 --- a/app/soapbox/locales/eo.json +++ b/app/soapbox/locales/eo.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Neatendita eraro okazis.", "alert.unexpected.title": "Ups!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Vi povas premi {combo} por preterpasi sekvafoje", "bundle_column_error.body": "Io misfunkciis en la ŝargado de ĉi tiu elemento.", "bundle_column_error.retry": "Bonvolu reprovi", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Balotenketa daŭro", "compose_form.poll.option_placeholder": "Elekteblo {number}", "compose_form.poll.remove_option": "Forigi ĉi tiu elekteblon", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Hup", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Marki la aŭdovidaĵojn kiel tiklaj", @@ -466,7 +458,6 @@ "upload_button.label": "Aldoni aŭdovidaĵon (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Limo de dosiera alŝutado transpasita.", "upload_error.poll": "Alŝuto de dosiero ne permesita kun balotenketo.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Priskribi por misvidantaj homoj", "upload_form.focus": "Change preview", "upload_form.undo": "Forigi", diff --git a/app/soapbox/locales/es-AR.json b/app/soapbox/locales/es-AR.json index d91ead7e1..16b2d9d3e 100644 --- a/app/soapbox/locales/es-AR.json +++ b/app/soapbox/locales/es-AR.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Ocurrió un error inesperado.", "alert.unexpected.title": "¡Epa!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Podés hacer clic en {combo} para saltar esto la próxima vez", "bundle_column_error.body": "Algo salió mal al cargar este componente.", "bundle_column_error.retry": "Intentá de nuevo", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Duración de la encuesta", "compose_form.poll.option_placeholder": "Opción {number}", "compose_form.poll.remove_option": "Quitá esta opción", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Tootear", "compose_form.publish_loud": "¡{publish}!", "compose_form.sensitive.hide": "Marcar medio como sensible", @@ -466,7 +458,6 @@ "upload_button.label": "Agregar medios", "upload_error.limit": "Se excedió el límite de subida de archivos.", "upload_error.poll": "No se permite la subida de archivos en encuestas.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Agregar descripción para los usuarios con dificultades visuales", "upload_form.focus": "Change preview", "upload_form.undo": "Eliminar", diff --git a/app/soapbox/locales/es.json b/app/soapbox/locales/es.json index 05967a147..8834b8a9b 100644 --- a/app/soapbox/locales/es.json +++ b/app/soapbox/locales/es.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Hubo un error inesperado.", "alert.unexpected.title": "¡Ups!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Puedes hacer clic en {combo} para saltar este aviso la próxima vez", "bundle_column_error.body": "Algo salió mal al cargar este componente.", "bundle_column_error.retry": "Inténtalo de nuevo", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Duración de la encuesta", "compose_form.poll.option_placeholder": "Elección {number}", "compose_form.poll.remove_option": "Eliminar esta opción", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Tootear", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Marcar multimedia como sensible", @@ -466,7 +458,6 @@ "upload_button.label": "Subir multimedia (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Límite de subida de archivos excedido.", "upload_error.poll": "Subida de archivos no permitida con encuestas.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Describir para los usuarios con dificultad visual", "upload_form.focus": "Change preview", "upload_form.undo": "Borrar", diff --git a/app/soapbox/locales/et.json b/app/soapbox/locales/et.json index 6712d9375..478b53fbd 100644 --- a/app/soapbox/locales/et.json +++ b/app/soapbox/locales/et.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Tekkis ootamatu viga.", "alert.unexpected.title": "Oih!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Saad vajutada {combo}, et see järgmine kord vahele jätta", "bundle_column_error.body": "Mindagi läks valesti selle komponendi laadimisel.", "bundle_column_error.retry": "Proovi uuesti", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Küsitluse kestus", "compose_form.poll.option_placeholder": "Valik {number}", "compose_form.poll.remove_option": "Eemalda see valik", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Tuut", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Märgista meedia tundlikuks", @@ -466,7 +458,6 @@ "upload_button.label": "Lisa meedia (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Faili üleslaadimise limiit ületatud.", "upload_error.poll": "Küsitlustes pole faili üleslaadimine lubatud.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Kirjelda vaegnägijatele", "upload_form.focus": "Change preview", "upload_form.undo": "Kustuta", diff --git a/app/soapbox/locales/eu.json b/app/soapbox/locales/eu.json index 3941323f2..5d8f9a2a8 100644 --- a/app/soapbox/locales/eu.json +++ b/app/soapbox/locales/eu.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Ustekabeko errore bat gertatu da.", "alert.unexpected.title": "Ene!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "{combo} sakatu dezakezu hurrengoan hau saltatzeko", "bundle_column_error.body": "Zerbait okerra gertatu da osagai hau kargatzean.", "bundle_column_error.retry": "Saiatu berriro", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Inkestaren iraupena", "compose_form.poll.option_placeholder": "{number}. aukera", "compose_form.poll.remove_option": "Kendu aukera hau", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Markatu multimedia hunkigarri gisa", @@ -466,7 +458,6 @@ "upload_button.label": "Gehitu multimedia (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Fitxategi igoera muga gaindituta.", "upload_error.poll": "Ez da inkestetan fitxategiak igotzea onartzen.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Deskribatu ikusmen arazoak dituztenentzat", "upload_form.focus": "Change preview", "upload_form.undo": "Ezabatu", diff --git a/app/soapbox/locales/fa.json b/app/soapbox/locales/fa.json index 974f4eec4..7dad24eda 100644 --- a/app/soapbox/locales/fa.json +++ b/app/soapbox/locales/fa.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "خطای پیش‌بینی‌نشده‌ای رخ داد.", "alert.unexpected.title": "ای وای!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "دکمهٔ {combo} را بزنید تا دیگر این را نبینید", "bundle_column_error.body": "هنگام بازکردن این بخش خطایی رخ داد.", "bundle_column_error.retry": "تلاش دوباره", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "مدت نظرسنجی", "compose_form.poll.option_placeholder": "گزینهٔ {number}", "compose_form.poll.remove_option": "حذف این گزینه", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "بوق", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "علامت‌گذاری به عنوان حساس", @@ -466,7 +458,6 @@ "upload_button.label": "افزودن عکس و ویدیو (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "از حد مجاز باگذاری فراتر رفتید.", "upload_error.poll": "باگذاری پرونده در نظرسنجی‌ها ممکن نیست.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "نوشتهٔ توضیحی برای کم‌بینایان و نابینایان", "upload_form.focus": "Change preview", "upload_form.undo": "حذف", diff --git a/app/soapbox/locales/fi.json b/app/soapbox/locales/fi.json index 069424251..cf385d011 100644 --- a/app/soapbox/locales/fi.json +++ b/app/soapbox/locales/fi.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Tapahtui odottamaton virhe.", "alert.unexpected.title": "Hups!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Ensi kerralla voit ohittaa tämän painamalla {combo}", "bundle_column_error.body": "Jokin meni vikaan komponenttia ladattaessa.", "bundle_column_error.retry": "Yritä uudestaan", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Äänestyksen kesto", "compose_form.poll.option_placeholder": "Valinta numero", "compose_form.poll.remove_option": "Poista tämä valinta", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Tuuttaa", "compose_form.publish_loud": "Julkista!", "compose_form.sensitive.hide": "Valitse tämä arkaluontoisena", @@ -466,7 +458,6 @@ "upload_button.label": "Lisää mediaa", "upload_error.limit": "Tiedostolatauksien raja ylitetty.", "upload_error.poll": "Tiedon lataaminen ei ole sallittua kyselyissä.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Anna kuvaus näkörajoitteisia varten", "upload_form.focus": "Change preview", "upload_form.undo": "Peru", diff --git a/app/soapbox/locales/fr.json b/app/soapbox/locales/fr.json index 1505bb15c..d1c1dd402 100644 --- a/app/soapbox/locales/fr.json +++ b/app/soapbox/locales/fr.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Une erreur inattendue s’est produite.", "alert.unexpected.title": "Oups !", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Vous pouvez appuyer sur {combo} pour passer ceci, la prochaine fois", "bundle_column_error.body": "Une erreur s’est produite lors du chargement de ce composant.", "bundle_column_error.retry": "Réessayer", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Durée du sondage", "compose_form.poll.option_placeholder": "Choix {number}", "compose_form.poll.remove_option": "Supprimer ce choix", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Pouet", "compose_form.publish_loud": "{publish} !", "compose_form.sensitive.hide": "Marquer le média comme sensible", @@ -466,7 +458,6 @@ "upload_button.label": "Joindre un média (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Taille maximale d'envoi de fichier dépassée.", "upload_error.poll": "L’envoi de fichiers n’est pas autorisé avec les sondages.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Décrire pour les malvoyant·e·s", "upload_form.focus": "Change preview", "upload_form.undo": "Supprimer", diff --git a/app/soapbox/locales/ga.json b/app/soapbox/locales/ga.json index da0db9584..b68c0190a 100644 --- a/app/soapbox/locales/ga.json +++ b/app/soapbox/locales/ga.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "An unexpected error occurred.", "alert.unexpected.title": "Oops!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "You can press {combo} to skip this next time", "bundle_column_error.body": "Something went wrong while loading this component.", "bundle_column_error.retry": "Try again", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -466,7 +458,6 @@ "upload_button.label": "Add media (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Describe for the visually impaired", "upload_form.focus": "Change preview", "upload_form.undo": "Delete", diff --git a/app/soapbox/locales/gl.json b/app/soapbox/locales/gl.json index d99615229..6397dbc32 100644 --- a/app/soapbox/locales/gl.json +++ b/app/soapbox/locales/gl.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Aconteceu un fallo non agardado.", "alert.unexpected.title": "Vaia!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Pulse {combo} para saltar esto a próxima vez", "bundle_column_error.body": "Houbo un fallo mentras se cargaba este compoñente.", "bundle_column_error.retry": "Inténteo de novo", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Duración da sondaxe", "compose_form.poll.option_placeholder": "Opción {number}", "compose_form.poll.remove_option": "Eliminar esta opción", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Marcar medios como sensibles", @@ -466,7 +458,6 @@ "upload_button.label": "Engadir medios (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Excedeu o límite de subida de ficheiros.", "upload_error.poll": "Non se poden subir ficheiros nas sondaxes.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Describa para deficientes visuais", "upload_form.focus": "Change preview", "upload_form.undo": "Eliminar", diff --git a/app/soapbox/locales/he.json b/app/soapbox/locales/he.json index 91585ff9c..056b8f36d 100644 --- a/app/soapbox/locales/he.json +++ b/app/soapbox/locales/he.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "אירעה שגיאה בלתי צפויה.", "alert.unexpected.title": "אופס!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "ניתן להקיש {combo} כדי לדלג בפעם הבאה", "bundle_column_error.body": "משהו השתבש בעת הצגת הרכיב הזה.", "bundle_column_error.retry": "לנסות שוב", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "ללחוש", "compose_form.publish_loud": "לחצרץ!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -466,7 +458,6 @@ "upload_button.label": "הוספת מדיה", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "תיאור לכבדי ראיה", "upload_form.focus": "Change preview", "upload_form.undo": "ביטול", diff --git a/app/soapbox/locales/hi.json b/app/soapbox/locales/hi.json index 62a15157e..ac89219c1 100644 --- a/app/soapbox/locales/hi.json +++ b/app/soapbox/locales/hi.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "An unexpected error occurred.", "alert.unexpected.title": "Oops!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "You can press {combo} to skip this next time", "bundle_column_error.body": "Something went wrong while loading this component.", "bundle_column_error.retry": "Try again", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -466,7 +458,6 @@ "upload_button.label": "Add media (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Describe for the visually impaired", "upload_form.focus": "Change preview", "upload_form.undo": "Delete", diff --git a/app/soapbox/locales/hr.json b/app/soapbox/locales/hr.json index 19da912d7..c17544f6c 100644 --- a/app/soapbox/locales/hr.json +++ b/app/soapbox/locales/hr.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "An unexpected error occurred.", "alert.unexpected.title": "Oops!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Možeš pritisnuti {combo} kako bi ovo preskočio sljedeći put", "bundle_column_error.body": "Something went wrong while loading this component.", "bundle_column_error.retry": "Try again", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -466,7 +458,6 @@ "upload_button.label": "Dodaj media", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Describe for the visually impaired", "upload_form.focus": "Change preview", "upload_form.undo": "Poništi", diff --git a/app/soapbox/locales/hu.json b/app/soapbox/locales/hu.json index 3644099f9..db53235f5 100644 --- a/app/soapbox/locales/hu.json +++ b/app/soapbox/locales/hu.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Váratlan hiba történt.", "alert.unexpected.title": "Hoppá!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Hogy átugord ezt következő alkalommal, használd {combo}", "bundle_column_error.body": "Hiba történt a komponens betöltése közben.", "bundle_column_error.retry": "Próbáld újra", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Szavazás időtartama", "compose_form.poll.option_placeholder": "Lehetőség {number}", "compose_form.poll.remove_option": "Lehetőség törlése", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Tülk", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Média megjelölése szenzitívként", @@ -466,7 +458,6 @@ "upload_button.label": "Média hozzáadása (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Túllépted a fájl feltöltési limitet.", "upload_error.poll": "Szavazásnál nem lehet fájlt feltölteni.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Leírás látáskorlátozottak számára", "upload_form.focus": "Change preview", "upload_form.undo": "Mégsem", diff --git a/app/soapbox/locales/hy.json b/app/soapbox/locales/hy.json index 431c7d6be..35c2a727e 100644 --- a/app/soapbox/locales/hy.json +++ b/app/soapbox/locales/hy.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "An unexpected error occurred.", "alert.unexpected.title": "Վա՜յ", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Կարող ես սեղմել {combo}՝ սա հաջորդ անգամ բաց թողնելու համար", "bundle_column_error.body": "Այս բաղադրիչը բեռնելու ընթացքում ինչ֊որ բան խափանվեց։", "bundle_column_error.retry": "Կրկին փորձել", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Թթել", "compose_form.publish_loud": "Թթե՜լ", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -466,7 +458,6 @@ "upload_button.label": "Ավելացնել մեդիա", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Նկարագրություն ավելացրու տեսողական խնդիրներ ունեցողների համար", "upload_form.focus": "Change preview", "upload_form.undo": "Հետարկել", diff --git a/app/soapbox/locales/id.json b/app/soapbox/locales/id.json index ab6c51453..e90eaebe5 100644 --- a/app/soapbox/locales/id.json +++ b/app/soapbox/locales/id.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Terjadi kesalahan yang tidak terduga.", "alert.unexpected.title": "Oops!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Anda dapat menekan {combo} untuk melewati ini", "bundle_column_error.body": "Kesalahan terjadi saat memuat komponen ini.", "bundle_column_error.retry": "Coba lagi", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Durasi jajak pendapat", "compose_form.poll.option_placeholder": "Pilihan {number}", "compose_form.poll.remove_option": "Hapus opsi ini", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Tandai sebagai media sensitif", @@ -466,7 +458,6 @@ "upload_button.label": "Tambahkan media", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Deskripsikan untuk mereka yang tidak bisa melihat dengan jelas", "upload_form.focus": "Change preview", "upload_form.undo": "Undo", diff --git a/app/soapbox/locales/io.json b/app/soapbox/locales/io.json index ed5f2b849..581f07a9e 100644 --- a/app/soapbox/locales/io.json +++ b/app/soapbox/locales/io.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "An unexpected error occurred.", "alert.unexpected.title": "Oops!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Tu povas presar sur {combo} por omisar co en la venonta foyo", "bundle_column_error.body": "Something went wrong while loading this component.", "bundle_column_error.retry": "Try again", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Siflar", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -466,7 +458,6 @@ "upload_button.label": "Adjuntar kontenajo", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Describe for the visually impaired", "upload_form.focus": "Change preview", "upload_form.undo": "Desfacar", diff --git a/app/soapbox/locales/it.json b/app/soapbox/locales/it.json index eb80b1262..18956497f 100644 --- a/app/soapbox/locales/it.json +++ b/app/soapbox/locales/it.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Si è verificato un errore inatteso.", "alert.unexpected.title": "Oops!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Puoi premere {combo} per saltare questo passaggio la prossima volta", "bundle_column_error.body": "E' avvenuto un errore durante il caricamento di questo componente.", "bundle_column_error.retry": "Riprova", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Durata del sondaggio", "compose_form.poll.option_placeholder": "Scelta {number}", "compose_form.poll.remove_option": "Rimuovi questa scelta", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Segna media come sensibile", @@ -466,7 +458,6 @@ "upload_button.label": "Aggiungi file multimediale", "upload_error.limit": "Limite al caricamento di file superato.", "upload_error.poll": "Caricamento file non consentito nei sondaggi.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Descrizione per utenti con disabilità visive", "upload_form.focus": "Modifica anteprima", "upload_form.undo": "Cancella", diff --git a/app/soapbox/locales/ja.json b/app/soapbox/locales/ja.json index 97c3b9267..5399b2514 100644 --- a/app/soapbox/locales/ja.json +++ b/app/soapbox/locales/ja.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "不明なエラーが発生しました。", "alert.unexpected.title": "エラー!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "次からは{combo}を押せばスキップできます", "bundle_column_error.body": "コンポーネントの読み込み中に問題が発生しました。", "bundle_column_error.retry": "再試行", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "アンケート期間", "compose_form.poll.option_placeholder": "項目 {number}", "compose_form.poll.remove_option": "この項目を削除", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "トゥート", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "メディアを閲覧注意にする", @@ -466,7 +458,6 @@ "upload_button.label": "メディアを追加 (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "アップロードできる上限を超えています。", "upload_error.poll": "アンケートではファイルをアップロードできません。", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "視覚障害者のための説明", "upload_form.focus": "プレビューを変更", "upload_form.undo": "削除", diff --git a/app/soapbox/locales/ka.json b/app/soapbox/locales/ka.json index bfcf82cfa..322497539 100644 --- a/app/soapbox/locales/ka.json +++ b/app/soapbox/locales/ka.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "წარმოიშვა მოულოდნელი შეცდომა.", "alert.unexpected.title": "უპს!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "შეგიძლიათ დააჭიროთ {combo}-ს რათა შემდეგ ჯერზე გამოტოვოთ ეს", "bundle_column_error.body": "ამ კომპონენტის ჩატვირთვისას რაღაც აირია.", "bundle_column_error.retry": "სცადეთ კიდევ ერთხელ", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "ტუტი", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -466,7 +458,6 @@ "upload_button.label": "მედიის დამატება", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "აღწერილობა ვიზუალურად უფასურისთვის", "upload_form.focus": "კროპი", "upload_form.undo": "გაუქმება", diff --git a/app/soapbox/locales/kk.json b/app/soapbox/locales/kk.json index ce1966653..a2186dd88 100644 --- a/app/soapbox/locales/kk.json +++ b/app/soapbox/locales/kk.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Бір нәрсе дұрыс болмады.", "alert.unexpected.title": "Өй!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Келесіде өткізіп жіберу үшін басыңыз {combo}", "bundle_column_error.body": "Бұл компонентті жүктеген кезде бір қате пайда болды.", "bundle_column_error.retry": "Қайтадан көріңіз", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Сауалнама мерзімі", "compose_form.poll.option_placeholder": "Жауап {number}", "compose_form.poll.remove_option": "Бұл жауапты өшір", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Түрт", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -466,7 +458,6 @@ "upload_button.label": "Медиа қосу (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Файл жүктеу лимитінен асып кеттіңіз.", "upload_error.poll": "Сауалнамамен бірге файл жүктеуге болмайды.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Көру қабілеті нашар адамдар үшін сипаттаңыз", "upload_form.focus": "Превьюді өзгерту", "upload_form.undo": "Өшіру", diff --git a/app/soapbox/locales/ko.json b/app/soapbox/locales/ko.json index bcb528284..e605ee622 100644 --- a/app/soapbox/locales/ko.json +++ b/app/soapbox/locales/ko.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "예측하지 못한 에러가 발생했습니다.", "alert.unexpected.title": "앗!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "{combo}를 누르면 다음부터 이 과정을 건너뛸 수 있습니다", "bundle_column_error.body": "컴포넌트를 불러오는 과정에서 문제가 발생했습니다.", "bundle_column_error.retry": "다시 시도", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "투표 기간", "compose_form.poll.option_placeholder": "{number}번 항목", "compose_form.poll.remove_option": "이 항목 삭제", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "툿", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "미디어를 민감함으로 설정하기", @@ -466,7 +458,6 @@ "upload_button.label": "미디어 추가 (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "파일 업로드 제한에 도달했습니다.", "upload_error.poll": "파일 업로드는 투표와 함께 첨부할 수 없습니다.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "시각장애인을 위한 설명", "upload_form.focus": "미리보기 변경", "upload_form.undo": "삭제", diff --git a/app/soapbox/locales/lt.json b/app/soapbox/locales/lt.json index 3634ea876..abba02d19 100644 --- a/app/soapbox/locales/lt.json +++ b/app/soapbox/locales/lt.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "An unexpected error occurred.", "alert.unexpected.title": "Oops!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "You can press {combo} to skip this next time", "bundle_column_error.body": "Something went wrong while loading this component.", "bundle_column_error.retry": "Try again", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -466,7 +458,6 @@ "upload_button.label": "Add media (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Describe for the visually impaired", "upload_form.focus": "Change preview", "upload_form.undo": "Delete", diff --git a/app/soapbox/locales/lv.json b/app/soapbox/locales/lv.json index ebd61e6cc..92bcb8f19 100644 --- a/app/soapbox/locales/lv.json +++ b/app/soapbox/locales/lv.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Negaidīta kļūda.", "alert.unexpected.title": "Ups!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Nospied {combo} lai izlaistu šo nākamreiz", "bundle_column_error.body": "Kaut kas nogāja greizi ielādējot šo komponenti.", "bundle_column_error.retry": "Mēģini vēlreiz", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publicēt", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -466,7 +458,6 @@ "upload_button.label": "Add media (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Describe for the visually impaired", "upload_form.focus": "Change preview", "upload_form.undo": "Delete", diff --git a/app/soapbox/locales/mk.json b/app/soapbox/locales/mk.json index 66d4b3208..07ebba3dc 100644 --- a/app/soapbox/locales/mk.json +++ b/app/soapbox/locales/mk.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Неочекувана грешка.", "alert.unexpected.title": "Упс!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Кликни {combo} за да го прескокниш ова нареден пат", "bundle_column_error.body": "Се случи проблем при вчитувањето.", "bundle_column_error.retry": "Обидете се повторно", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -466,7 +458,6 @@ "upload_button.label": "Add media (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Describe for the visually impaired", "upload_form.focus": "Change preview", "upload_form.undo": "Delete", diff --git a/app/soapbox/locales/ms.json b/app/soapbox/locales/ms.json index a06c9c6e3..f31f5d175 100644 --- a/app/soapbox/locales/ms.json +++ b/app/soapbox/locales/ms.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "An unexpected error occurred.", "alert.unexpected.title": "Oops!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "You can press {combo} to skip this next time", "bundle_column_error.body": "Something went wrong while loading this component.", "bundle_column_error.retry": "Try again", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -466,7 +458,6 @@ "upload_button.label": "Add media (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Describe for the visually impaired", "upload_form.focus": "Change preview", "upload_form.undo": "Delete", diff --git a/app/soapbox/locales/nl.json b/app/soapbox/locales/nl.json index d15d0e92a..7a77c67f7 100644 --- a/app/soapbox/locales/nl.json +++ b/app/soapbox/locales/nl.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Er deed zich een onverwachte fout voor", "alert.unexpected.title": "Oeps!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Je kunt {combo} klikken om dit de volgende keer over te slaan", "bundle_column_error.body": "Tijdens het laden van dit onderdeel is er iets fout gegaan.", "bundle_column_error.retry": "Opnieuw proberen", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Duur van de poll", "compose_form.poll.option_placeholder": "Keuze {number}", "compose_form.poll.remove_option": "Deze keuze verwijderen", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Media als gevoelig markeren", @@ -466,7 +458,6 @@ "upload_button.label": "Media toevoegen (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Uploadlimiet van bestand overschreden.", "upload_error.poll": "Het uploaden van bestanden is in polls niet toegestaan.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Omschrijf dit voor mensen met een visuele beperking", "upload_form.focus": "Voorvertoning aanpassen", "upload_form.undo": "Verwijderen", diff --git a/app/soapbox/locales/nn.json b/app/soapbox/locales/nn.json index 706e18ca9..4844c14a2 100644 --- a/app/soapbox/locales/nn.json +++ b/app/soapbox/locales/nn.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Eit uforventa problem har hendt.", "alert.unexpected.title": "Oops!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Du kan trykke {combo} for å hoppe over dette neste gong", "bundle_column_error.body": "Noko gikk gale mens komponent ble nedlasta.", "bundle_column_error.retry": "Prøv igjen", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Varigheit for spørring", "compose_form.poll.option_placeholder": "Val {number}", "compose_form.poll.remove_option": "Ta burt dette valet", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Tut", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Merk media som sensitivt", @@ -466,7 +458,6 @@ "upload_button.label": "Add media (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Describe for the visually impaired", "upload_form.focus": "Change preview", "upload_form.undo": "Delete", diff --git a/app/soapbox/locales/no.json b/app/soapbox/locales/no.json index 270b8db2f..d588968d1 100644 --- a/app/soapbox/locales/no.json +++ b/app/soapbox/locales/no.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "An unexpected error occurred.", "alert.unexpected.title": "Oops!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "You kan trykke {combo} for å hoppe over dette neste gang", "bundle_column_error.body": "Noe gikk galt mens denne komponenten lastet.", "bundle_column_error.retry": "Prøv igjen", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Tut", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -466,7 +458,6 @@ "upload_button.label": "Legg til media", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Beskriv for synshemmede", "upload_form.focus": "Change preview", "upload_form.undo": "Angre", diff --git a/app/soapbox/locales/oc.json b/app/soapbox/locales/oc.json index 5664070a3..f7220190a 100644 --- a/app/soapbox/locales/oc.json +++ b/app/soapbox/locales/oc.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Una error s’es producha.", "alert.unexpected.title": "Ops !", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Podètz botar {combo} per passar aquò lo còp que ven", "bundle_column_error.body": "Quicòm a fach mèuca pendent lo cargament d’aqueste compausant.", "bundle_column_error.retry": "Tornar ensajar", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Durada del sondatge", "compose_form.poll.option_placeholder": "Opcion {number}", "compose_form.poll.remove_option": "Levar aquesta opcion", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Tut", "compose_form.publish_loud": "{publish} !", "compose_form.sensitive.hide": "Marcar coma sensible", @@ -466,7 +458,6 @@ "upload_button.label": "Ajustar un mèdia (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Talha maximum pels mandadís subrepassada.", "upload_error.poll": "Lo mandadís de fichièr es pas autorizat pels sondatges.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Descripcion pels mal vesents", "upload_form.focus": "Modificar l’apercebut", "upload_form.undo": "Suprimir", diff --git a/app/soapbox/locales/pl.json b/app/soapbox/locales/pl.json index d26b1d004..4f484dc3c 100644 --- a/app/soapbox/locales/pl.json +++ b/app/soapbox/locales/pl.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Wystąpił nieoczekiwany błąd.", "alert.unexpected.title": "O nie!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Naciśnij {combo}, aby pominąć to następnym razem", "bundle_column_error.body": "Coś poszło nie tak podczas ładowania tego składnika.", "bundle_column_error.retry": "Spróbuj ponownie", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Czas trwania głosowania", "compose_form.poll.option_placeholder": "Opcja {number}", "compose_form.poll.remove_option": "Usuń tę opcję", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Wyślij", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Oznacz multimedia jako wrażliwe", @@ -466,7 +458,6 @@ "upload_button.label": "Dodaj zawartość multimedialną (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Przekroczono limit plików do wysłania.", "upload_error.poll": "Dołączanie plików nie dozwolone z głosowaniami.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Wprowadź opis dla niewidomych i niedowidzących", "upload_form.focus": "Change preview", "upload_form.undo": "Usuń", diff --git a/app/soapbox/locales/pt-BR.json b/app/soapbox/locales/pt-BR.json index 83bc4c203..45dbc7a0a 100644 --- a/app/soapbox/locales/pt-BR.json +++ b/app/soapbox/locales/pt-BR.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Um erro inesperado ocorreu.", "alert.unexpected.title": "Eita!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Você pode pressionar {combo} para ignorar este diálogo na próxima vez", "bundle_column_error.body": "Algo de errado aconteceu enquanto este componente era carregado.", "bundle_column_error.retry": "Tente novamente", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Duração da enquete", "compose_form.poll.option_placeholder": "Opção {number}", "compose_form.poll.remove_option": "Remover essa opção", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publicar", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Marcar mídia como sensível", @@ -466,7 +458,6 @@ "upload_button.label": "Adicionar mídia (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Limite de envio de arquivos excedido.", "upload_error.poll": "Envio de arquivos não é permitido com enquetes.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Descreva a imagem para deficientes visuais", "upload_form.focus": "Ajustar foco", "upload_form.undo": "Remover", diff --git a/app/soapbox/locales/pt.json b/app/soapbox/locales/pt.json index 90c578b22..145120e8e 100644 --- a/app/soapbox/locales/pt.json +++ b/app/soapbox/locales/pt.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Ocorreu um erro inesperado.", "alert.unexpected.title": "Bolas!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Pode clicar {combo} para não voltar a ver", "bundle_column_error.body": "Algo de errado aconteceu enquanto este componente era carregado.", "bundle_column_error.retry": "Tente de novo", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Duração da votação", "compose_form.poll.option_placeholder": "Opção {number}", "compose_form.poll.remove_option": "Eliminar esta opção", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Marcar multimédia como sensível", @@ -466,7 +458,6 @@ "upload_button.label": "Adicionar media", "upload_error.limit": "Limite máximo do ficheiro a carregar excedido.", "upload_error.poll": "Carregamento de ficheiros não é permitido em votações.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Descrição da imagem para pessoas com dificuldades visuais", "upload_form.focus": "Change preview", "upload_form.undo": "Apagar", diff --git a/app/soapbox/locales/ro.json b/app/soapbox/locales/ro.json index 4b8e6a7d9..4f5e1a21e 100644 --- a/app/soapbox/locales/ro.json +++ b/app/soapbox/locales/ro.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "A apărut o eroare neașteptată.", "alert.unexpected.title": "Hopa!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Poți apăsa {combo} pentru a omite asta data viitoare", "bundle_column_error.body": "Ceva nu a funcționat la încărcarea acestui component.", "bundle_column_error.retry": "Încearcă din nou", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Postează", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -466,7 +458,6 @@ "upload_button.label": "Adaugă media (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Adaugă o descriere pentru persoanele cu deficiențe de vedere", "upload_form.focus": "Schimbă previzualizarea", "upload_form.undo": "Șterge", diff --git a/app/soapbox/locales/ru.json b/app/soapbox/locales/ru.json index 07dca706a..4f72a6250 100644 --- a/app/soapbox/locales/ru.json +++ b/app/soapbox/locales/ru.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Что-то пошло не так.", "alert.unexpected.title": "Ой!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Нажмите {combo}, чтобы пропустить это в следующий раз", "bundle_column_error.body": "Что-то пошло не так при загрузке этого компонента.", "bundle_column_error.retry": "Попробовать снова", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Длительность опроса", "compose_form.poll.option_placeholder": "Вариант {number}", "compose_form.poll.remove_option": "Удалить этот вариант", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Запостить", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Пометить медиафайл как чувствительный", @@ -466,7 +458,6 @@ "upload_button.label": "Добавить медиаконтент", "upload_error.limit": "Достигнут лимит загруженных файлов.", "upload_error.poll": "К опросам нельзя прикреплять файлы.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Добавьте описание для людей с нарушениями зрения:", "upload_form.focus": "Обрезать", "upload_form.undo": "Отменить", diff --git a/app/soapbox/locales/sk.json b/app/soapbox/locales/sk.json index bfb2ac636..cf8b6bdaf 100644 --- a/app/soapbox/locales/sk.json +++ b/app/soapbox/locales/sk.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Vyskytla sa nečakaná chyba.", "alert.unexpected.title": "Ups!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Nabudúce môžeš kliknúť {combo} pre preskočenie", "bundle_column_error.body": "Pri načítaní tohto prvku nastala nejaká chyba.", "bundle_column_error.retry": "Skús to znova", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Trvanie ankety", "compose_form.poll.option_placeholder": "Voľba {number}", "compose_form.poll.remove_option": "Odstráň túto voľbu", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Pošli", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Označ médiá ako chúlostivé", @@ -466,7 +458,6 @@ "upload_button.label": "Pridaj médiálny súbor (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "Limit pre nahrávanie súborov bol prekročený.", "upload_error.poll": "Nahrávanie súborov pri anketách nieje možné.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Opis pre slabo vidiacich", "upload_form.focus": "Change preview", "upload_form.undo": "Vymaž", diff --git a/app/soapbox/locales/sl.json b/app/soapbox/locales/sl.json index 2accb2fb5..f5f1127b1 100644 --- a/app/soapbox/locales/sl.json +++ b/app/soapbox/locales/sl.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Zgodila se je nepričakovana napaka.", "alert.unexpected.title": "Uups!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Če želite preskočiti to, lahko pritisnete {combo}", "bundle_column_error.body": "Med nalaganjem te komponente je prišlo do napake.", "bundle_column_error.retry": "Poskusi ponovno", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Trajanje ankete", "compose_form.poll.option_placeholder": "Izbira {number}", "compose_form.poll.remove_option": "Odstrani to izbiro", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Tutni", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Označi medij kot občutljiv", @@ -466,7 +458,6 @@ "upload_button.label": "Dodaj medij", "upload_error.limit": "Omejitev prenosa datoteke je presežena.", "upload_error.poll": "Prenos datoteke z anketami ni dovoljen.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Opišite za slabovidne", "upload_form.focus": "Obreži", "upload_form.undo": "Izbriši", diff --git a/app/soapbox/locales/sq.json b/app/soapbox/locales/sq.json index 91bca787d..baa12b140 100644 --- a/app/soapbox/locales/sq.json +++ b/app/soapbox/locales/sq.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Ndodhi një gabim të papritur.", "alert.unexpected.title": "Hëm!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Mund të shtypni {combo}, që të anashkalohet kjo herës tjetër", "bundle_column_error.body": "Diç shkoi ters teksa ngarkohej ky përbërës.", "bundle_column_error.retry": "Riprovoni", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Mesazh", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -466,7 +458,6 @@ "upload_button.label": "Shtoni media (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "U tejkalua kufi ngarkimi kartelash.", "upload_error.poll": "File upload not allowed with polls.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Përshkruajeni për persona me probleme shikimi", "upload_form.focus": "Ndryshoni parapamjen", "upload_form.undo": "Fshije", diff --git a/app/soapbox/locales/sr-Latn.json b/app/soapbox/locales/sr-Latn.json index 60f7a34bb..5de2d6518 100644 --- a/app/soapbox/locales/sr-Latn.json +++ b/app/soapbox/locales/sr-Latn.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "An unexpected error occurred.", "alert.unexpected.title": "Oops!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Možete pritisnuti {combo} da preskočite ovo sledeći put", "bundle_column_error.body": "Nešto je pošlo po zlu prilikom učitavanja ove komponente.", "bundle_column_error.retry": "Pokušajte ponovo", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Tutni", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -466,7 +458,6 @@ "upload_button.label": "Dodaj multimediju", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Opiši za slabovide osobe", "upload_form.focus": "Change preview", "upload_form.undo": "Opozovi", diff --git a/app/soapbox/locales/sr.json b/app/soapbox/locales/sr.json index f342f50ff..818b3e4be 100644 --- a/app/soapbox/locales/sr.json +++ b/app/soapbox/locales/sr.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Појавила се неочекивана грешка.", "alert.unexpected.title": "Упс!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Можете притиснути {combo} да прескочите ово следећи пут", "bundle_column_error.body": "Нешто је пошло по злу приликом учитавања ове компоненте.", "bundle_column_error.retry": "Покушајте поново", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Труби", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -466,7 +458,6 @@ "upload_button.label": "Додај мултимедију (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Опишите за особе са оштећеним видом", "upload_form.focus": "Change preview", "upload_form.undo": "Обриши", diff --git a/app/soapbox/locales/sv.json b/app/soapbox/locales/sv.json index 4e0d1f3d3..1d77f9fda 100644 --- a/app/soapbox/locales/sv.json +++ b/app/soapbox/locales/sv.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Ett oväntat fel uppstod.", "alert.unexpected.title": "Hoppsan!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Du kan trycka {combo} för att slippa denna nästa gång", "bundle_column_error.body": "Något gick fel när du laddade denna komponent.", "bundle_column_error.retry": "Försök igen", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Varaktighet för omröstning", "compose_form.poll.option_placeholder": "Alternativ {number}", "compose_form.poll.remove_option": "Ta bort alternativ", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Tut", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Markera media som känsligt", @@ -466,7 +458,6 @@ "upload_button.label": "Lägg till media", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Beskriv för synskadade", "upload_form.focus": "Beskär", "upload_form.undo": "Ta bort", diff --git a/app/soapbox/locales/ta.json b/app/soapbox/locales/ta.json index b0814c50d..dde7d1606 100644 --- a/app/soapbox/locales/ta.json +++ b/app/soapbox/locales/ta.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "எதிர் பாராத பிழை ஏற்பட்டு விட்டது.", "alert.unexpected.title": "அச்சச்சோ!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "நீங்கள் அழுத்தவும் {combo} அடுத்த முறை தவிர்க்கவும்", "bundle_column_error.body": "இந்த கூறுகளை ஏற்றும்போது ஏதோ தவறு ஏற்பட்டது.", "bundle_column_error.retry": "மீண்டும் முயற்சி செய்", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "வாக்கெடுப்பு காலம்", "compose_form.poll.option_placeholder": "தேர்ந்தெடுப்ப {number}", "compose_form.poll.remove_option": "இந்த விருப்பத்தை அகற்றவும்", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Publish", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -466,7 +458,6 @@ "upload_button.label": "மீடியாவைச் சேர்க்கவும் (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "கோப்பு பதிவேற்ற வரம்பு மீறப்பட்டது.", "upload_error.poll": "கோப்பு பதிவேற்றம் அனுமதிக்கப்படவில்லை.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "பார்வையற்ற விவரிக்கவும்", "upload_form.focus": "Change preview", "upload_form.undo": "Delete", diff --git a/app/soapbox/locales/te.json b/app/soapbox/locales/te.json index 314ffe21a..e9dc5b86b 100644 --- a/app/soapbox/locales/te.json +++ b/app/soapbox/locales/te.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "అనుకోని తప్పు జరిగినది.", "alert.unexpected.title": "అయ్యో!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "మీరు తదుపరిసారి దీనిని దాటవేయడానికి {combo} నొక్కవచ్చు", "bundle_column_error.body": "ఈ భాగం లోడ్ అవుతున్నప్పుడు ఏదో తప్పు జరిగింది.", "bundle_column_error.retry": "మళ్ళీ ప్రయత్నించండి", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "ఎన్నిక వ్యవధి", "compose_form.poll.option_placeholder": "ఎంపిక {number}", "compose_form.poll.remove_option": "ఈ ఎంపికను తొలగించు", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "టూట్", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -466,7 +458,6 @@ "upload_button.label": "మీడియాను జోడించండి (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "దృష్టి లోపమున్న వారి కోసం వివరించండి", "upload_form.focus": "ప్రివ్యూను మార్చు", "upload_form.undo": "తొలగించు", diff --git a/app/soapbox/locales/th.json b/app/soapbox/locales/th.json index c17e0c367..cfae6c293 100644 --- a/app/soapbox/locales/th.json +++ b/app/soapbox/locales/th.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "เกิดข้อผิดพลาดที่ไม่คาดคิด", "alert.unexpected.title": "อุปส์!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "คุณสามารถกด {combo} เพื่อข้ามสิ่งนี้ในครั้งถัดไป", "bundle_column_error.body": "มีบางอย่างผิดพลาดขณะโหลดส่วนประกอบนี้", "bundle_column_error.retry": "ลองอีกครั้ง", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "ระยะเวลาโพล", "compose_form.poll.option_placeholder": "ทางเลือก {number}", "compose_form.poll.remove_option": "เอาทางเลือกนี้ออก", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "โพสต์", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "ทำเครื่องหมายสื่อว่าละเอียดอ่อน", @@ -466,7 +458,6 @@ "upload_button.label": "เพิ่มสื่อ (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "เกินขีดจำกัดการอัปโหลดไฟล์", "upload_error.poll": "ไม่อนุญาตให้อัปโหลดไฟล์กับการลงคะแนน", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "อธิบายสำหรับผู้บกพร่องทางการมองเห็น", "upload_form.focus": "ตัวอย่างการเปลี่ยนแปลง", "upload_form.undo": "ลบ", diff --git a/app/soapbox/locales/tr.json b/app/soapbox/locales/tr.json index 47bcf937a..a6ad957c8 100644 --- a/app/soapbox/locales/tr.json +++ b/app/soapbox/locales/tr.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Beklenmedik bir hata oluştu.", "alert.unexpected.title": "Hay aksi!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Bir daha ki sefere {combo} tuşuna basabilirsiniz", "bundle_column_error.body": "Bu bileşen yüklenirken bir şeyler ters gitti.", "bundle_column_error.retry": "Tekrar deneyin", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Anket süresi", "compose_form.poll.option_placeholder": "Seçim {number}", "compose_form.poll.remove_option": "Bu seçimi kaldır", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Gönder", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Medyayı hassas olarak işaretle", @@ -466,7 +458,6 @@ "upload_button.label": "Görsel ekle", "upload_error.limit": "Dosya yükleme sınırı aşıldı.", "upload_error.poll": "Anketlerde dosya yüklemesine izin verilmez.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Görme engelliler için açıklama", "upload_form.focus": "Change preview", "upload_form.undo": "Geri al", diff --git a/app/soapbox/locales/uk.json b/app/soapbox/locales/uk.json index 1cbb2f942..5cdd7cb43 100644 --- a/app/soapbox/locales/uk.json +++ b/app/soapbox/locales/uk.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "Трапилась неочікувана помилка.", "alert.unexpected.title": "Ой!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "Ви можете натиснути {combo}, щоб пропустити це наступного разу", "bundle_column_error.body": "Щось пішло не так під час завантаження компоненту.", "bundle_column_error.retry": "Спробуйте ще раз", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Тривалість опитування", "compose_form.poll.option_placeholder": "Варіант {number}", "compose_form.poll.remove_option": "Видалити цей варіант", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "Дмухнути", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Позначити медіа як дражливе", @@ -466,7 +458,6 @@ "upload_button.label": "Додати медіаконтент", "upload_error.limit": "Ліміт завантаження файлів перевищено.", "upload_error.poll": "Не можна завантажувати файли до опитувань.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "Опишіть для людей з вадами зору", "upload_form.focus": "Обрізати", "upload_form.undo": "Видалити", diff --git a/app/soapbox/locales/zh-CN.json b/app/soapbox/locales/zh-CN.json index 9e1d23662..3d2b569da 100644 --- a/app/soapbox/locales/zh-CN.json +++ b/app/soapbox/locales/zh-CN.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "发生了意外错误。", "alert.unexpected.title": "哎呀!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "下次按住 {combo} 即可跳过此提示", "bundle_column_error.body": "载入这个组件时发生了错误。", "bundle_column_error.retry": "重试", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "投票持续时间", "compose_form.poll.option_placeholder": "选项 {number}", "compose_form.poll.remove_option": "移除这个选项", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "嘟嘟", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "标记媒体为敏感内容", @@ -466,7 +458,6 @@ "upload_button.label": "上传媒体文件 (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "文件大小超过限制。", "upload_error.poll": "投票中不允许上传文件。", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "为视觉障碍人士添加文字说明", "upload_form.focus": "剪裁", "upload_form.undo": "删除", diff --git a/app/soapbox/locales/zh-HK.json b/app/soapbox/locales/zh-HK.json index 28f248ba6..c32df8c5d 100644 --- a/app/soapbox/locales/zh-HK.json +++ b/app/soapbox/locales/zh-HK.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "發生不可預期的錯誤。", "alert.unexpected.title": "噢!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "如你想在下次路過這顯示,請按{combo},", "bundle_column_error.body": "加載本組件出錯。", "bundle_column_error.retry": "重試", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "Poll duration", "compose_form.poll.option_placeholder": "Choice {number}", "compose_form.poll.remove_option": "Remove this choice", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "發文", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "Mark media as sensitive", @@ -466,7 +458,6 @@ "upload_button.label": "上載媒體檔案", "upload_error.limit": "File upload limit exceeded.", "upload_error.poll": "File upload not allowed with polls.", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "為視覺障礙人士添加文字說明", "upload_form.focus": "裁切", "upload_form.undo": "刪除", diff --git a/app/soapbox/locales/zh-TW.json b/app/soapbox/locales/zh-TW.json index ddf6944d9..4f0766b6d 100644 --- a/app/soapbox/locales/zh-TW.json +++ b/app/soapbox/locales/zh-TW.json @@ -43,13 +43,6 @@ "account_gallery.none": "No media to show.", "alert.unexpected.message": "發生了非預期的錯誤。", "alert.unexpected.title": "哎呀!", - "audio.close": "Close audio", - "audio.expand": "Expand audio", - "audio.hide": "Hide audio", - "audio.mute": "Mute", - "audio.pause": "Pause", - "audio.play": "Play", - "audio.unmute": "Unmute", "boost_modal.combo": "下次您可以按 {combo} 跳過", "bundle_column_error.body": "載入此元件時發生錯誤。", "bundle_column_error.retry": "重試", @@ -87,7 +80,6 @@ "compose_form.poll.duration": "投票期限", "compose_form.poll.option_placeholder": "第 {number} 個選擇", "compose_form.poll.remove_option": "移除此選擇", - "compose_form.poll.type.hint": "Click to toggle poll type. Radio button (default) is single. Checkbox is multiple.", "compose_form.publish": "嘟出去", "compose_form.publish_loud": "{publish}!", "compose_form.sensitive.hide": "標記媒體為敏感內容", @@ -466,7 +458,6 @@ "upload_button.label": "上傳媒體檔案 (JPEG, PNG, GIF, WebM, MP4, MOV)", "upload_error.limit": "已達到檔案上傳限制。", "upload_error.poll": "不允許在投票上傳檔案。", - "upload_error.size": "File upload size limit exceeded.", "upload_form.description": "為視障人士增加文字說明", "upload_form.focus": "變更預覽", "upload_form.undo": "刪除", From 08b783c0508ad59866d173bd95e596f3154ca3bc Mon Sep 17 00:00:00 2001 From: crockwave Date: Sun, 28 Jun 2020 11:14:52 -0500 Subject: [PATCH 6/6] correct lint error --- app/soapbox/actions/accounts.js | 1 - 1 file changed, 1 deletion(-) diff --git a/app/soapbox/actions/accounts.js b/app/soapbox/actions/accounts.js index e261e73d5..ec1d1cb6b 100644 --- a/app/soapbox/actions/accounts.js +++ b/app/soapbox/actions/accounts.js @@ -10,7 +10,6 @@ import { export const ACCOUNT_FETCH_REQUEST = 'ACCOUNT_FETCH_REQUEST'; export const ACCOUNT_FETCH_SUCCESS = 'ACCOUNT_FETCH_SUCCESS'; export const ACCOUNT_FETCH_FAIL = 'ACCOUNT_FETCH_FAIL'; -test export const ACCOUNT_FOLLOW_REQUEST = 'ACCOUNT_FOLLOW_REQUEST'; export const ACCOUNT_FOLLOW_SUCCESS = 'ACCOUNT_FOLLOW_SUCCESS';