From bc91069e08e0dadcb523b6e372c0c0830376706c Mon Sep 17 00:00:00 2001 From: Claire Date: Tue, 13 Dec 2022 19:41:53 +0100 Subject: [Glitch] Change default reply language to be default language when replying to a translated reply Port f70bdba9264bd7c572cee3c45421733919b7d03c to glitch-soc Signed-off-by: Claire --- app/javascript/flavours/glitch/reducers/compose.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/reducers/compose.js b/app/javascript/flavours/glitch/reducers/compose.js index 9b50ec23a..ddc3fa41e 100644 --- a/app/javascript/flavours/glitch/reducers/compose.js +++ b/app/javascript/flavours/glitch/reducers/compose.js @@ -421,8 +421,10 @@ export default function compose(state = initialState, action) { map.set('preselectDate', new Date()); map.set('idempotencyKey', uuid()); - if (action.status.get('language')) { + if (action.status.get('language') && !action.status.has('translation')) { map.set('language', action.status.get('language')); + } else { + map.set('language', state.get('default_language')); } if (action.status.get('spoiler_text').length > 0) { -- cgit From 32b8b3355b8a4c2d8993cd52445512c06ae07d5c Mon Sep 17 00:00:00 2001 From: cadars Date: Tue, 13 Dec 2022 19:43:03 +0100 Subject: [Glitch] Make handle more easily selectable on profile page Port 52a50c5e43a78f21a1054869352db31b4fa3aba0 to glitch-soc Signed-off-by: Claire --- app/javascript/flavours/glitch/features/account/components/header.js | 4 +++- app/javascript/flavours/glitch/styles/components/accounts.scss | 4 ++++ 2 files changed, 7 insertions(+), 1 deletion(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/features/account/components/header.js b/app/javascript/flavours/glitch/features/account/components/header.js index 9a5f2fd62..d261c6ea5 100644 --- a/app/javascript/flavours/glitch/features/account/components/header.js +++ b/app/javascript/flavours/glitch/features/account/components/header.js @@ -345,7 +345,9 @@ class Header extends ImmutablePureComponent {

{badge} - @{acct} {lockedIcon} + + @{acct} {lockedIcon} +

diff --git a/app/javascript/flavours/glitch/styles/components/accounts.scss b/app/javascript/flavours/glitch/styles/components/accounts.scss index ac2d642a8..ed1d3d660 100644 --- a/app/javascript/flavours/glitch/styles/components/accounts.scss +++ b/app/javascript/flavours/glitch/styles/components/accounts.scss @@ -593,6 +593,10 @@ font-weight: 400; overflow: hidden; text-overflow: ellipsis; + + span { + user-select: all; + } } } } -- cgit From 21ee6a777d785b07af769caf629b007588f1bb7e Mon Sep 17 00:00:00 2001 From: Rin <36845451+AtelierSnek@users.noreply.github.com> Date: Wed, 14 Dec 2022 06:03:09 +1100 Subject: [Glitch] fix missing style in warning and strike cards Port 42e16ea52dcafef7737368b05537670cc49d3f91 to glitch-soc Signed-off-by: Claire --- app/javascript/flavours/glitch/styles/admin.scss | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/styles/admin.scss b/app/javascript/flavours/glitch/styles/admin.scss index c2426944b..ad9a36bb5 100644 --- a/app/javascript/flavours/glitch/styles/admin.scss +++ b/app/javascript/flavours/glitch/styles/admin.scss @@ -1681,6 +1681,15 @@ a.sparkline { box-sizing: border-box; min-height: 100%; + a { + text: &highlight-text-color; + text-decoration: none; + + &:hover { + text-decoration: underline; + } + } + p { margin-bottom: 20px; unicode-bidi: plaintext; -- cgit From ccc01559de06ca46319abe4f09856e267812c7ba Mon Sep 17 00:00:00 2001 From: Claire Date: Wed, 14 Dec 2022 10:11:04 +0100 Subject: Fix invalid CSS for links in warning and strike cards --- app/javascript/flavours/glitch/styles/admin.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/styles/admin.scss b/app/javascript/flavours/glitch/styles/admin.scss index ad9a36bb5..7d5b28a12 100644 --- a/app/javascript/flavours/glitch/styles/admin.scss +++ b/app/javascript/flavours/glitch/styles/admin.scss @@ -1682,7 +1682,7 @@ a.sparkline { min-height: 100%; a { - text: &highlight-text-color; + color: $highlight-text-color; text-decoration: none; &:hover { -- cgit From 1e8aff072a7e7d356ee3a1894c6b74966d8e11af Mon Sep 17 00:00:00 2001 From: Claire Date: Thu, 15 Dec 2022 14:07:34 +0100 Subject: [Glitch] Fix wasteful request to /api/v1/custom_emojis when not logged in Port 1f762f4271685e30373b15a2e204f8edff59d349 to glitch-soc Signed-off-by: Claire --- app/javascript/flavours/glitch/containers/mastodon.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/containers/mastodon.js b/app/javascript/flavours/glitch/containers/mastodon.js index 6c92376d8..dd7623a81 100644 --- a/app/javascript/flavours/glitch/containers/mastodon.js +++ b/app/javascript/flavours/glitch/containers/mastodon.js @@ -27,8 +27,9 @@ store.dispatch(hydrateAction); // check for deprecated local settings store.dispatch(checkDeprecatedLocalSettings()); -// load custom emojis -store.dispatch(fetchCustomEmojis()); +if (initialState.meta.me) { + store.dispatch(fetchCustomEmojis()); +} const createIdentityContext = state => ({ signedIn: !!state.meta.me, -- cgit From 65cc5cb891c46637d897e49731d2e96f4be35731 Mon Sep 17 00:00:00 2001 From: Claire Date: Thu, 15 Dec 2022 15:43:16 +0100 Subject: [Glitch] Change dropdown menu to contain “Copy link to post” even for non-public posts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Port fe9eab51d140ee0e0343eb07982f0a7ce825398c to glitch-soc Signed-off-by: Claire --- app/javascript/flavours/glitch/components/status_action_bar.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/components/status_action_bar.js b/app/javascript/flavours/glitch/components/status_action_bar.js index 977c98ccb..7949b2db3 100644 --- a/app/javascript/flavours/glitch/components/status_action_bar.js +++ b/app/javascript/flavours/glitch/components/status_action_bar.js @@ -212,11 +212,13 @@ class StatusActionBar extends ImmutablePureComponent { menu.push({ text: intl.formatMessage(messages.open), action: this.handleOpen }); + if (publicStatus && isRemote) { + menu.push({ text: intl.formatMessage(messages.openOriginalPage), href: status.get('url') }); + } + + menu.push({ text: intl.formatMessage(messages.copy), action: this.handleCopy }); + if (publicStatus) { - if (isRemote) { - menu.push({ text: intl.formatMessage(messages.openOriginalPage), href: status.get('url') }); - } - menu.push({ text: intl.formatMessage(messages.copy), action: this.handleCopy }); menu.push({ text: intl.formatMessage(messages.embed), action: this.handleEmbed }); } -- cgit From 8cd7b9555996f03d7fb747f17470c4f5749065dc Mon Sep 17 00:00:00 2001 From: Riedler Date: Thu, 15 Dec 2022 15:57:02 +0100 Subject: [Glitch] Fix profile avatar being slightly offset into left border Port c3388f4ab151a2603fabd67dadea435f851eaf12 to glitch-soc Co-authored-by: Riedler Signed-off-by: Claire --- app/javascript/flavours/glitch/styles/components/accounts.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/styles/components/accounts.scss b/app/javascript/flavours/glitch/styles/components/accounts.scss index ed1d3d660..2a955f426 100644 --- a/app/javascript/flavours/glitch/styles/components/accounts.scss +++ b/app/javascript/flavours/glitch/styles/components/accounts.scss @@ -523,7 +523,6 @@ display: block; flex: 0 0 auto; width: 94px; - margin-left: -2px; .account__avatar { background: darken($ui-base-color, 8%); @@ -540,6 +539,7 @@ margin-top: -55px; gap: 8px; overflow: hidden; + margin-left: -2px; // aligns the pfp with content below &__buttons { display: flex; -- cgit From aad42cfc35447b9fccb401471cbf335185c55a97 Mon Sep 17 00:00:00 2001 From: Alex Stine Date: Thu, 15 Dec 2022 09:20:21 -0600 Subject: [Glitch] Fix hidden label causing accessibility issue for search inputs Port 903e5a3f459d28b093438dc4827b2fb976aef406 to glitch-soc Signed-off-by: Claire --- .../glitch/features/compose/components/search.js | 36 +++++++++------------- 1 file changed, 14 insertions(+), 22 deletions(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/features/compose/components/search.js b/app/javascript/flavours/glitch/features/compose/components/search.js index 326fe5b70..a1963c15d 100644 --- a/app/javascript/flavours/glitch/features/compose/components/search.js +++ b/app/javascript/flavours/glitch/features/compose/components/search.js @@ -144,28 +144,20 @@ class Search extends React.PureComponent { return (
- - -
+ + +
-- cgit From 98f7b3657a202c51a40cc079ad7f04ce96d3a37c Mon Sep 17 00:00:00 2001 From: Pleclown Date: Thu, 15 Dec 2022 16:20:34 +0100 Subject: [Glitch] Adding 12 hours option for polls Port 3a59ffde8d1600729bf51ff42f1d646062edfc8d to glitch-soc Signed-off-by: Claire --- app/javascript/flavours/glitch/features/compose/components/poll_form.js | 1 + 1 file changed, 1 insertion(+) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/features/compose/components/poll_form.js b/app/javascript/flavours/glitch/features/compose/components/poll_form.js index d5edccff3..afb5da097 100644 --- a/app/javascript/flavours/glitch/features/compose/components/poll_form.js +++ b/app/javascript/flavours/glitch/features/compose/components/poll_form.js @@ -153,6 +153,7 @@ class PollForm extends ImmutablePureComponent { + -- cgit From 9f3cc9e5551a0c47cff9ebeb6e6398472107afa4 Mon Sep 17 00:00:00 2001 From: Yamagishi Kazutoshi Date: Fri, 16 Dec 2022 00:20:46 +0900 Subject: [Glitch] `FormattedMessage` must be used directly Port 58200132d07bc0b641c95af614b9ac02ce48c9fc to glitch-soc Signed-off-by: Claire --- .../flavours/glitch/features/explore/index.js | 32 +++++++++++----------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/features/explore/index.js b/app/javascript/flavours/glitch/features/explore/index.js index ba435d7e3..da0dc7f7c 100644 --- a/app/javascript/flavours/glitch/features/explore/index.js +++ b/app/javascript/flavours/glitch/features/explore/index.js @@ -24,16 +24,6 @@ const mapStateToProps = state => ({ isSearching: state.getIn(['search', 'submitted']) || !showTrends, }); -// Fix strange bug on Safari where (rendered by FormattedMessage) disappears -// after clicking around Explore top bar (issue #20885). -// Removing width=100% from also fixes it, as well as replacing with
-// We're choosing to wrap span with div to keep the changes local only to this tool bar. -const WrapFormattedMessage = ({ children, ...props }) =>
{children}
; -WrapFormattedMessage.propTypes = { - children: PropTypes.any, -}; - - export default @connect(mapStateToProps) @injectIntl class Explore extends React.PureComponent { @@ -78,12 +68,22 @@ class Explore extends React.PureComponent { {isSearching ? ( ) : ( - + <>
- - - - {signedIn && } + + + + + + + + + + {signedIn && ( + + + + )}
@@ -97,7 +97,7 @@ class Explore extends React.PureComponent { {intl.formatMessage(messages.title)} -
+ )}
-- cgit From b22da94a65fcdafe8df13fcb2bf6c88a139785c6 Mon Sep 17 00:00:00 2001 From: Francis Murillo Date: Thu, 15 Dec 2022 15:35:25 +0000 Subject: [Glitch] Render current day formats in the client timezone Port c50e9d078aa3c353afc140669f1cedcd354ee53e to glitch-soc Co-authored-by: Effy Elden Signed-off-by: Claire --- app/javascript/flavours/glitch/packs/public.js | 38 ++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/packs/public.js b/app/javascript/flavours/glitch/packs/public.js index 843fd5163..b256fdbd5 100644 --- a/app/javascript/flavours/glitch/packs/public.js +++ b/app/javascript/flavours/glitch/packs/public.js @@ -42,6 +42,18 @@ function main() { minute: 'numeric', }); + const dateFormat = new Intl.DateTimeFormat(locale, { + year: 'numeric', + month: 'short', + day: 'numeric', + timeFormat: false, + }); + + const timeFormat = new Intl.DateTimeFormat(locale, { + timeStyle: 'short', + hour12: false, + }); + [].forEach.call(document.querySelectorAll('.emojify'), (content) => { content.innerHTML = emojify(content.innerHTML); }); @@ -54,6 +66,32 @@ function main() { content.textContent = formattedDate; }); + const isToday = date => { + const today = new Date(); + + return date.getDate() === today.getDate() && + date.getMonth() === today.getMonth() && + date.getFullYear() === today.getFullYear(); + }; + const todayFormat = new IntlMessageFormat(messages['relative_format.today'] || 'Today at {time}', locale); + + [].forEach.call(document.querySelectorAll('time.relative-formatted'), (content) => { + const datetime = new Date(content.getAttribute('datetime')); + + let formattedContent; + + if (isToday(datetime)) { + const formattedTime = timeFormat.format(datetime); + + formattedContent = todayFormat.format({ time: formattedTime }); + } else { + formattedContent = dateFormat.format(datetime); + } + + content.title = formattedContent; + content.textContent = formattedContent; + }); + [].forEach.call(document.querySelectorAll('time.time-ago'), (content) => { const datetime = new Date(content.getAttribute('datetime')); const now = new Date(); -- cgit From e76fb9b2c46db07d830e2fa2c0282e5f1f087434 Mon Sep 17 00:00:00 2001 From: Connor Shea Date: Thu, 15 Dec 2022 08:37:07 -0700 Subject: [Glitch] Increase the width of the unread notification border. Port 08c0e43b6fca879d7435f63b1b2c718a53c6cacc to glitch-soc Signed-off-by: Claire --- app/javascript/flavours/glitch/styles/components/status.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/styles/components/status.scss b/app/javascript/flavours/glitch/styles/components/status.scss index 7cc6f5386..39184ba7a 100644 --- a/app/javascript/flavours/glitch/styles/components/status.scss +++ b/app/javascript/flavours/glitch/styles/components/status.scss @@ -1067,7 +1067,7 @@ a.status-card.compact:hover { pointer-events: 0; width: 100%; height: 100%; - border-left: 2px solid $highlight-text-color; + border-left: 4px solid $highlight-text-color; pointer-events: none; } } -- cgit From 57eab6dbee32be6efca5b93c7e848a108ada9261 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Thu, 15 Dec 2022 10:37:17 -0500 Subject: [Glitch] Fix typo in handler function call name Port 72a8af80886f270a27bd686f1fa86ef478748963 to glitch-soc Signed-off-by: Claire --- app/javascript/flavours/glitch/features/ui/components/columns_area.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/features/ui/components/columns_area.js b/app/javascript/flavours/glitch/features/ui/components/columns_area.js index bf3e79c24..993a50796 100644 --- a/app/javascript/flavours/glitch/features/ui/components/columns_area.js +++ b/app/javascript/flavours/glitch/features/ui/components/columns_area.js @@ -99,7 +99,7 @@ export default class ColumnsArea extends ImmutablePureComponent { if (this.mediaQuery.removeEventListener) { this.mediaQuery.removeEventListener('change', this.handleLayoutChange); } else { - this.mediaQuery.removeListener(this.handleLayouteChange); + this.mediaQuery.removeListener(this.handleLayoutChange); } } } -- cgit From 602f18103ccf716667a9736f4665428a9b65c34d Mon Sep 17 00:00:00 2001 From: Claire Date: Thu, 15 Dec 2022 16:40:45 +0100 Subject: [Glitch] Fix the top action bar appearing in multi-column layout Port 38596e49d4ea00b9a538f32fd443afc6aa29824a to glitch-soc Signed-off-by: Claire --- app/javascript/flavours/glitch/styles/components/single_column.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/styles/components/single_column.scss b/app/javascript/flavours/glitch/styles/components/single_column.scss index 45d57aedd..992a42d78 100644 --- a/app/javascript/flavours/glitch/styles/components/single_column.scss +++ b/app/javascript/flavours/glitch/styles/components/single_column.scss @@ -281,7 +281,7 @@ } } - .ui__header { + .layout-single-column .ui__header { display: flex; background: $ui-base-color; border-bottom: 1px solid lighten($ui-base-color, 8%); -- cgit From 7883ba34bb49da19904642be973014b3f26b22f3 Mon Sep 17 00:00:00 2001 From: Meisam <39205857+MFTabriz@users.noreply.github.com> Date: Thu, 15 Dec 2022 17:04:52 +0100 Subject: [Glitch] set activation for tag follow button Port 059d64a59ea27c40ca6b5b9bf34487169d2a741f to glitch-soc Co-authored-by: meisam Signed-off-by: Claire --- app/javascript/flavours/glitch/features/hashtag_timeline/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/features/hashtag_timeline/index.js b/app/javascript/flavours/glitch/features/hashtag_timeline/index.js index 4428fdecf..219dc0ec6 100644 --- a/app/javascript/flavours/glitch/features/hashtag_timeline/index.js +++ b/app/javascript/flavours/glitch/features/hashtag_timeline/index.js @@ -194,7 +194,7 @@ class HashtagTimeline extends React.PureComponent { const following = tag.get('following'); followButton = ( - ); -- cgit From 0f5ecb3860f0bf5add422b30f5683b578c4205bc Mon Sep 17 00:00:00 2001 From: Mina Her Date: Fri, 16 Dec 2022 01:24:38 +0900 Subject: [Glitch] Fix margin for search field on medium window size Port cedf1383138b2e58ba6ff9aab46beddeaf1a1354 to glitch-soc Signed-off-by: Claire --- app/javascript/flavours/glitch/styles/components/search.scss | 1 + app/javascript/flavours/glitch/styles/components/single_column.scss | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/styles/components/search.scss b/app/javascript/flavours/glitch/styles/components/search.scss index 70af0f651..b8078bdb6 100644 --- a/app/javascript/flavours/glitch/styles/components/search.scss +++ b/app/javascript/flavours/glitch/styles/components/search.scss @@ -1,4 +1,5 @@ .search { + margin-bottom: 10px; position: relative; } diff --git a/app/javascript/flavours/glitch/styles/components/single_column.scss b/app/javascript/flavours/glitch/styles/components/single_column.scss index 992a42d78..74e5d0884 100644 --- a/app/javascript/flavours/glitch/styles/components/single_column.scss +++ b/app/javascript/flavours/glitch/styles/components/single_column.scss @@ -227,8 +227,7 @@ height: calc(100% - 10px) !important; } - .getting-started__wrapper, - .search { + .getting-started__wrapper { margin-bottom: 10px; } -- cgit From 89d3d85cf21df93c04e09cb1182884c1534a8f48 Mon Sep 17 00:00:00 2001 From: Terence Eden Date: Thu, 15 Dec 2022 16:38:35 +0000 Subject: [Glitch] Add transparancy to modal background for accessibility Port ff414a5489fd2c6d154b18effca24dde54d92958 to glitch-soc Signed-off-by: Claire --- app/javascript/flavours/glitch/styles/modal.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/styles/modal.scss b/app/javascript/flavours/glitch/styles/modal.scss index 6c6de4206..a333926dd 100644 --- a/app/javascript/flavours/glitch/styles/modal.scss +++ b/app/javascript/flavours/glitch/styles/modal.scss @@ -1,5 +1,5 @@ .modal-layout { - background: $ui-base-color url('data:image/svg+xml;utf8,') repeat-x bottom fixed; + background: $ui-base-color url('data:image/svg+xml;utf8,') repeat-x bottom fixed; display: flex; flex-direction: column; height: 100vh; -- cgit From d7a6a9393a8b4ba3e578bf3ecaa08dd34100e8b8 Mon Sep 17 00:00:00 2001 From: Rens Groothuijsen Date: Thu, 15 Dec 2022 17:38:50 +0100 Subject: [Glitch] Display search popout at fixed screen position Port 726c7dea31d2ee60b327afd327e945e3ece09ac4 to glitch-soc Signed-off-by: Claire --- app/javascript/flavours/glitch/features/compose/components/search.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/features/compose/components/search.js b/app/javascript/flavours/glitch/features/compose/components/search.js index a1963c15d..9f90a767d 100644 --- a/app/javascript/flavours/glitch/features/compose/components/search.js +++ b/app/javascript/flavours/glitch/features/compose/components/search.js @@ -161,8 +161,7 @@ class Search extends React.PureComponent {
- - +
-- cgit From cdba1ec5f4edd3e3095c161f34f8d1cc3beebaef Mon Sep 17 00:00:00 2001 From: Claire Date: Thu, 15 Dec 2022 17:47:43 +0100 Subject: [Glitch] Fix being stuck in edit mode when deleting the edited status Port ebf1d74e409ece10864a8615691cd80c434c9055 to glitch-soc Signed-off-by: Claire --- app/javascript/flavours/glitch/reducers/compose.js | 2 ++ 1 file changed, 2 insertions(+) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/reducers/compose.js b/app/javascript/flavours/glitch/reducers/compose.js index ddc3fa41e..814b6a1a7 100644 --- a/app/javascript/flavours/glitch/reducers/compose.js +++ b/app/javascript/flavours/glitch/reducers/compose.js @@ -538,6 +538,8 @@ export default function compose(state = initialState, action) { case TIMELINE_DELETE: if (action.id === state.get('in_reply_to')) { return state.set('in_reply_to', null); + } else if (action.id === state.get('id')) { + return state.set('id', null); } else { return state; } -- cgit From 1ced365371bebe667b05eb1cd593f97a1851a335 Mon Sep 17 00:00:00 2001 From: Bramus! Date: Thu, 15 Dec 2022 18:37:47 +0100 Subject: [Glitch] Fix media markup Port 7fbc17afa246c5cd384123ace51e07622204b67c to glitch-soc Co-authored-by: Effy Elden Signed-off-by: Claire --- .../flavours/glitch/features/account_gallery/components/media_item.js | 1 + 1 file changed, 1 insertion(+) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/features/account_gallery/components/media_item.js b/app/javascript/flavours/glitch/features/account_gallery/components/media_item.js index f7a7fd467..f20ee685e 100644 --- a/app/javascript/flavours/glitch/features/account_gallery/components/media_item.js +++ b/app/javascript/flavours/glitch/features/account_gallery/components/media_item.js @@ -104,6 +104,7 @@ export default class MediaItem extends ImmutablePureComponent {
+ {!(suspended || hidden || account.get('moved')) && account.getIn(['relationship', 'requested_by']) && } +
{info} diff --git a/app/javascript/flavours/glitch/features/account/containers/follow_request_note_container.js b/app/javascript/flavours/glitch/features/account/containers/follow_request_note_container.js new file mode 100644 index 000000000..c6a3afb7e --- /dev/null +++ b/app/javascript/flavours/glitch/features/account/containers/follow_request_note_container.js @@ -0,0 +1,15 @@ +import { connect } from 'react-redux'; +import FollowRequestNote from '../components/follow_request_note'; +import { authorizeFollowRequest, rejectFollowRequest } from 'flavours/glitch/actions/accounts'; + +const mapDispatchToProps = (dispatch, { account }) => ({ + onAuthorize () { + dispatch(authorizeFollowRequest(account.get('id'))); + }, + + onReject () { + dispatch(rejectFollowRequest(account.get('id'))); + }, +}); + +export default connect(null, mapDispatchToProps)(FollowRequestNote); diff --git a/app/javascript/flavours/glitch/reducers/relationships.js b/app/javascript/flavours/glitch/reducers/relationships.js index 49dd77ef5..e4b9acea2 100644 --- a/app/javascript/flavours/glitch/reducers/relationships.js +++ b/app/javascript/flavours/glitch/reducers/relationships.js @@ -1,3 +1,6 @@ +import { + NOTIFICATIONS_UPDATE, +} from '../actions/notifications'; import { ACCOUNT_FOLLOW_SUCCESS, ACCOUNT_FOLLOW_REQUEST, @@ -12,6 +15,8 @@ import { ACCOUNT_PIN_SUCCESS, ACCOUNT_UNPIN_SUCCESS, RELATIONSHIPS_FETCH_SUCCESS, + FOLLOW_REQUEST_AUTHORIZE_SUCCESS, + FOLLOW_REQUEST_REJECT_SUCCESS, } from 'flavours/glitch/actions/accounts'; import { DOMAIN_BLOCK_SUCCESS, @@ -44,6 +49,12 @@ const initialState = ImmutableMap(); export default function relationships(state = initialState, action) { switch(action.type) { + case FOLLOW_REQUEST_AUTHORIZE_SUCCESS: + return state.setIn([action.id, 'followed_by'], true).setIn([action.id, 'requested_by'], false); + case FOLLOW_REQUEST_REJECT_SUCCESS: + return state.setIn([action.id, 'followed_by'], false).setIn([action.id, 'requested_by'], false); + case NOTIFICATIONS_UPDATE: + return action.notification.type === 'follow_request' ? state.setIn([action.notification.account.id, 'requested_by'], true) : state; case ACCOUNT_FOLLOW_REQUEST: return state.getIn([action.id, 'following']) ? state : state.setIn([action.id, action.locked ? 'requested' : 'following'], true); case ACCOUNT_FOLLOW_FAIL: diff --git a/app/javascript/flavours/glitch/styles/components/accounts.scss b/app/javascript/flavours/glitch/styles/components/accounts.scss index 2a955f426..5b3e1db1b 100644 --- a/app/javascript/flavours/glitch/styles/components/accounts.scss +++ b/app/javascript/flavours/glitch/styles/components/accounts.scss @@ -756,3 +756,37 @@ } } } + +.moved-account-banner, +.follow-request-banner { + padding: 20px; + background: lighten($ui-base-color, 4%); + display: flex; + align-items: center; + flex-direction: column; + &__message { + color: $darker-text-color; + padding: 8px 0; + padding-top: 0; + padding-bottom: 4px; + font-size: 14px; + font-weight: 500; + text-align: center; + margin-bottom: 16px; + } + &__action { + display: flex; + justify-content: space-between; + align-items: center; + gap: 15px; + width: 100%; + } + + .detailed-status__display-name { + margin-bottom: 0; + } +} + +.follow-request-banner .button { + width: 100%; +} diff --git a/app/javascript/flavours/glitch/styles/components/index.scss b/app/javascript/flavours/glitch/styles/components/index.scss index 84aca2ebc..b7a54cd2b 100644 --- a/app/javascript/flavours/glitch/styles/components/index.scss +++ b/app/javascript/flavours/glitch/styles/components/index.scss @@ -141,6 +141,30 @@ &:disabled { opacity: 0.5; } + + &.button--confirmation { + color: $valid-value-color; + border-color: $valid-value-color; + + &:active, + &:focus, + &:hover { + background: $valid-value-color; + color: $primary-text-color; + } + } + + &.button--destructive { + color: $error-value-color; + border-color: $error-value-color; + + &:active, + &:focus, + &:hover { + background: $error-value-color; + color: $primary-text-color; + } + } } &.button--block { -- cgit From 719a0951afeee77adb61a90b1cd35a86f1de6280 Mon Sep 17 00:00:00 2001 From: Jeremy Kescher Date: Sat, 17 Dec 2022 10:34:39 +0000 Subject: [Glitch] Fix being unable to react with the keycap number sign emoji (#2004) Port of https://github.com/mastodon/mastodon/pull/22231 --- app/javascript/flavours/glitch/actions/announcements.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/actions/announcements.js b/app/javascript/flavours/glitch/actions/announcements.js index 1bdea909f..586dcfd33 100644 --- a/app/javascript/flavours/glitch/actions/announcements.js +++ b/app/javascript/flavours/glitch/actions/announcements.js @@ -102,7 +102,7 @@ export const addReaction = (announcementId, name) => (dispatch, getState) => { dispatch(addReactionRequest(announcementId, name, alreadyAdded)); } - api(getState).put(`/api/v1/announcements/${announcementId}/reactions/${name}`).then(() => { + api(getState).put(`/api/v1/announcements/${announcementId}/reactions/${encodeURIComponent(name)}`).then(() => { dispatch(addReactionSuccess(announcementId, name, alreadyAdded)); }).catch(err => { if (!alreadyAdded) { @@ -136,7 +136,7 @@ export const addReactionFail = (announcementId, name, error) => ({ export const removeReaction = (announcementId, name) => (dispatch, getState) => { dispatch(removeReactionRequest(announcementId, name)); - api(getState).delete(`/api/v1/announcements/${announcementId}/reactions/${name}`).then(() => { + api(getState).delete(`/api/v1/announcements/${announcementId}/reactions/${encodeURIComponent(name)}`).then(() => { dispatch(removeReactionSuccess(announcementId, name)); }).catch(err => { dispatch(removeReactionFail(announcementId, name, err)); -- cgit From 749c360ba06cef2c2ff1f0592c6a774b584909aa Mon Sep 17 00:00:00 2001 From: Claire Date: Tue, 20 Dec 2022 12:37:14 +0100 Subject: Reuse upstream's “Posts and replies” as column heading (#2023) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Upstream does not have a column heading for “Posts and replies”, but the text itself exists in a similar context, so re-use that translatable string so that we can use upstream's translations. --- app/javascript/flavours/glitch/features/status/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/features/status/index.js b/app/javascript/flavours/glitch/features/status/index.js index e190652b0..c716e4f0f 100644 --- a/app/javascript/flavours/glitch/features/status/index.js +++ b/app/javascript/flavours/glitch/features/status/index.js @@ -67,7 +67,7 @@ const messages = defineMessages({ detailedStatus: { id: 'status.detailed_status', defaultMessage: 'Detailed conversation view' }, replyConfirm: { id: 'confirmations.reply.confirm', defaultMessage: 'Reply' }, replyMessage: { id: 'confirmations.reply.message', defaultMessage: 'Replying now will overwrite the message you are currently composing. Are you sure you want to proceed?' }, - tootHeading: { id: 'column.toot', defaultMessage: 'Toots and replies' }, + tootHeading: { id: 'account.posts_with_replies', defaultMessage: 'Posts and replies' }, }); const makeMapStateToProps = () => { -- cgit From ee71d42c2965cba43ef9e28003426c9a7c863801 Mon Sep 17 00:00:00 2001 From: Plastikmensch Date: Tue, 20 Dec 2022 12:45:53 +0100 Subject: Add missing translation keys (#2010) * Add missing locale keys Added missing translation keys to en.js to make translation easier and more complete. Signed-off-by: Plastikmensch * Remove translation keys for explore Have been added to vanilla in #2014 Signed-off-by: Plastikmensch * Remove unused key Sorry, originally worked on this on my custom fork, which has this key, before I decided to work on glitch. Signed-off-by: Plastikmensch Signed-off-by: Plastikmensch --- app/javascript/flavours/glitch/locales/en.js | 127 ++++++++++++++++++++++++++- 1 file changed, 126 insertions(+), 1 deletion(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/locales/en.js b/app/javascript/flavours/glitch/locales/en.js index 90e924d4a..fd3f17683 100644 --- a/app/javascript/flavours/glitch/locales/en.js +++ b/app/javascript/flavours/glitch/locales/en.js @@ -5,12 +5,36 @@ const messages = { 'layout.auto': 'Auto', 'layout.current_is': 'Your current layout is:', 'layout.desktop': 'Desktop', - 'layout.mobile': 'Mobile', + 'layout.single': 'Mobile', + 'layout.hint.auto': 'Automatically chose layout based on “Enable advanced web interface” setting and screen size.', + 'layout.hint.desktop': 'Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.', + 'layout.hint.single': 'Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.', 'navigation_bar.app_settings': 'App settings', + 'navigation_bar.misc': 'Misc', + 'navigation_bar.keyboard_shortcuts': 'Keyboard shortcuts', + 'navigation_bar.info': 'Extended information', + 'navigation_bar.featured_users': 'Featured users', 'getting_started.onboarding': 'Show me around', + 'onboarding.next': 'Next', + 'onboarding.done': 'Done', + 'onboarding.skip': 'Skip', 'onboarding.page_one.federation': '{domain} is an \'instance\' of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.', 'onboarding.page_one.welcome': 'Welcome to {domain}!', + 'onboarding.page_one.handle': 'You are on {domain}, so your full handle is {handle}', + 'onboarding.page_two.compose': 'Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.', + 'onboarding.page_three.search': 'Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.', + 'onboarding.page_three.profile': 'Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.', + 'onboarding.page_four.home': 'The home timeline shows posts from people you follow.', + 'onboarding.page_four.notifications': 'The notifications column shows when someone interacts with you.', + 'onboarding.page_five.public_timelines': 'The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.', + 'onboarding.page_six.admin': 'Your instance\'s admin is {admin}.', + 'onboarding.page_six.read_guidelines': 'Please read {domain}\'s {guidelines}!', + 'onboarding.page_six.guidelines': 'community guidelines', + 'onboarding.page_six.almost_done': 'Almost done...', 'onboarding.page_six.github': '{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}, and is compatible with any Mastodon instance or app. Glitchsoc is entirely free and open-source. You can report bugs, request features, or contribute to the code on {github}.', + 'onboarding.page_six.apps_available': 'There are {apps} available for iOS, Android and other platforms.', + 'onboarding.page_six.various_app': 'mobile apps', + 'onboarding.page_six.appetoot': 'Bon Appetoot!', 'settings.auto_collapse': 'Automatic collapsing', 'settings.auto_collapse_all': 'Everything', 'settings.auto_collapse_lengthy': 'Lengthy toots', @@ -22,18 +46,99 @@ const messages = { 'settings.close': 'Close', 'settings.collapsed_statuses': 'Collapsed toots', 'settings.enable_collapsed': 'Enable collapsed toots', + 'settings.enable_collapsed_hint': 'Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature', 'settings.general': 'General', + 'settings.compose_box_opts': 'Compose box', + 'settings.side_arm': 'Secondary toot button:', + 'settings.side_arm.none': 'None', + 'settings.side_arm_reply_mode': 'When replying to a toot, the secondary toot button should:', + 'settings.side_arm_reply_mode.keep': 'Keep its set privacy', + 'settings.side_arm_reply_mode.copy': 'Copy privacy setting of the toot being replied to', + 'settings.side_arm_reply_mode.restrict': 'Restrict privacy setting to that of the toot being replied to', + 'settings.always_show_spoilers_field': 'Always enable the Content Warning field', + 'settings.prepend_cw_re': 'Prepend “re: ” to content warnings when replying', + 'settings.preselect_on_reply': 'Pre-select usernames on reply', + 'settings.preselect_on_reply_hint': 'When replying to a conversation with multiple participants, pre-select usernames past the first', + 'settings.confirm_missing_media_description': 'Show confirmation dialog before sending toots lacking media descriptions', + 'settings.confirm_before_clearing_draft': 'Show confirmation dialog before overwriting the message being composed', + 'settings.show_content_type_choice': 'Show content-type choice when authoring toots', + 'settings.content_warnings': 'Content Warnings', + 'settings.content_warnings.regexp': 'Regular expression', + 'settings.content_warnings_shared_state': 'Show/hide content of all copies at once', + 'settings.content_warnings_shared_state_hint': 'Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW', + 'settings.content_warnings_media_outside': 'Display media attachments outside content warnings', + 'settings.content_warnings_media_outside_hint': 'Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments', + 'settings.content_warnings_unfold_opts': 'Auto-unfolding options', + 'settings.enable_content_warnings_auto_unfold': 'Automatically unfold content-warnings', + 'settings.deprecated_setting': 'This setting is now controlled from Mastodon\'s {settings_page_link}', + 'settings.shared_settings_link': 'user preferences', + 'settings.content_warnings_filter': 'Content warnings to not automatically unfold:', + 'settings.layout_opts': 'Layout options', + 'settings.rewrite_mentions_no': 'Do not rewrite mentions', + 'settings.rewrite_mentions_acct': 'Rewrite with username and domain (when the account is remote)', + 'settings.rewrite_mentions_username': 'Rewrite with username', + 'settings.show_reply_counter': 'Display an estimate of the reply count', + 'settings.hicolor_privacy_icons': 'High color privacy icons', + 'settings.hicolor_privacy_icons.hint': 'Display privacy icons in bright and easily distinguishable colors', + 'settings.confirm_boost_missing_media_description': 'Show confirmation dialog before boosting toots lacking media descriptions', + 'settings.tag_misleading_links': 'Tag misleading links', + 'settings.tag_misleading_links.hint': 'Add a visual indication with the link target host to every link not mentioning it explicitly', + 'settings.rewrite_mentions': 'Rewrite mentions in displayed statuses', + 'settings.notifications_opts': 'Notifications options', + 'settings.notifications.tab_badge': 'Unread notifications badge', + 'settings.notifications.tab_badge.hint': 'Display a badge for unread notifications in the column icons when the notifications column isn\'t open', + 'settings.notifications.favicon_badge': 'Unread notifications favicon badge', + 'settings.notifications.favicon_badge.hint': 'Add a badge for unread notifications to the favicon', + 'settings.status_icons': 'Toot icons', + 'settings.status_icons_language': 'Language indicator', + 'settings.status_icons_reply': 'Reply indicator', + 'settings.status_icons_local_only': 'Local-only indicator', + 'settings.status_icons_media': 'Media and poll indicators', + 'settings.status_icons_visibility': 'Toot privacy indicator', + 'settings.layout': 'Layout:', 'settings.image_backgrounds': 'Image backgrounds', 'settings.image_backgrounds_media': 'Preview collapsed toot media', + 'settings.image_backgrounds_media_hint': 'If the post has any media attachment, use the first one as a background', 'settings.image_backgrounds_users': 'Give collapsed toots an image background', 'settings.media': 'Media', 'settings.media_letterbox': 'Letterbox media', + 'settings.media_letterbox_hint': 'Scale down and letterbox media to fill the image containers instead of stretching and cropping them', 'settings.media_fullwidth': 'Full-width media previews', + 'settings.inline_preview_cards': 'Inline preview cards for external links', + 'settings.media_reveal_behind_cw': 'Reveal sensitive media behind a CW by default', + 'settings.pop_in_player': 'Enable pop-in player', + 'settings.pop_in_position': 'Pop-in player position:', + 'settings.pop_in_left': 'Left', + 'settings.pop_in_right': 'Right', 'settings.preferences': 'User preferences', 'settings.wide_view': 'Wide view (Desktop mode only)', + 'settings.wide_view_hint': 'Stretches columns to better fill the available space.', 'settings.navbar_under': 'Navbar at the bottom (Mobile only)', 'status.collapse': 'Collapse', 'status.uncollapse': 'Uncollapse', + 'status.in_reply_to': 'This toot is a reply', + 'status.has_preview_card': 'Features an attached preview card', + 'status.has_pictures': 'Features attached pictures', + 'status.is_poll': 'This toot is a poll', + 'status.has_video': 'Features attached videos', + 'status.has_audio': 'Features attached audio files', + 'status.local_only': 'Only visible from your instance', + + 'content_type.change': 'Content type', + 'compose.content-type.html': 'HTML', + 'compose.content-type.markdown': 'Markdown', + 'compose.content-type.plain': 'Plain text', + + 'compose_form.poll.single_choice': 'Allow one choice', + 'compose_form.poll.multiple_choices': 'Allow multiple choices', + 'compose_form.spoiler': 'Hide text behind warning', + + 'column.toot': 'Toots and replies', + 'column_header.profile': 'Profile', + 'column.heading': 'Misc', + 'column.subheading': 'Miscellaneous options', + 'column_subheading.navigation': 'Navigation', + 'column_subheading.lists': 'Lists', 'media_gallery.sensitive': 'Sensitive', @@ -46,6 +151,7 @@ const messages = { 'notifications.marked_clear_confirmation': 'Are you sure you want to permanently clear all selected notifications?', 'notifications.marked_clear': 'Clear selected notifications', + 'notification_purge.start': 'Enter notification cleaning mode', 'notification_purge.btn_all': 'Select\nall', 'notification_purge.btn_none': 'Select\nnone', 'notification_purge.btn_invert': 'Invert\nselection', @@ -62,6 +168,25 @@ const messages = { 'advanced_options.threaded_mode.short': 'Threaded mode', 'advanced_options.threaded_mode.long': 'Automatically opens a reply on posting', 'advanced_options.threaded_mode.tooltip': 'Threaded mode enabled', + + 'endorsed_accounts_editor.endorsed_accounts': 'Featured accounts', + + 'account.add_account_note': 'Add note for @{name}', + 'account_note.cancel': 'Cancel', + 'account_note.save': 'Save', + 'account_note.edit': 'Edit', + 'account_note.glitch_placeholder': 'No comment provided', + 'account.joined': 'Joined {date}', + 'account.follows': 'Follows', + + 'home.column_settings.advanced': 'Advanced', + 'home.column_settings.filter_regex': 'Filter out by regular expressions', + 'direct.group_by_conversations': 'Group by conversation', + 'community.column_settings.allow_local_only': 'Show local-only toots', + + 'keyboard_shortcuts.bookmark': 'to bookmark', + 'keyboard_shortcuts.toggle_collapse': 'to collapse/uncollapse toots', + 'keyboard_shortcuts.secondary_toot': 'to send toot using secondary privacy setting', }; export default Object.assign({}, inherited, messages); -- cgit From ba1569400322930ebe32693750b8e1abff395829 Mon Sep 17 00:00:00 2001 From: www-cat <112013524+www-cat@users.noreply.github.com> Date: Tue, 20 Dec 2022 11:47:03 +0000 Subject: Add ukrainian translations (#1959) --- app/javascript/flavours/glitch/locales/uk.js | 67 +++++++++++++++++++++++++++- 1 file changed, 66 insertions(+), 1 deletion(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/locales/uk.js b/app/javascript/flavours/glitch/locales/uk.js index ab6d9a7dc..fe05342aa 100644 --- a/app/javascript/flavours/glitch/locales/uk.js +++ b/app/javascript/flavours/glitch/locales/uk.js @@ -1,7 +1,72 @@ import inherited from 'mastodon/locales/uk.json'; + + const messages = { - // No translations available. + 'getting_started.open_source_notice': 'Glitchsoc — вільна та відкрита модифікація {Mastodon}. Ви можете зробити свій внесок у проєкт або повідомити про вади на нашому {github}.', + 'layout.auto': 'Автоматичний', + 'layout.current_is': 'Ваш тип інтерфейсу зараз:', + 'layout.desktop': 'Настільний', + 'layout.mobile': 'Мобільний', + 'navigation_bar.app_settings': 'Налаштування програми', + 'getting_started.onboarding': 'Шо тут', + + 'onboarding.page_one.federation': '{domain} є сервером of Mastodon. Mastodon — мережа незалежних серверів, які працюють разом великою соціяльною мережою. Сервери Mastodon також називають „інстансами“.', + 'onboarding.page_one.welcome': 'Ласкаво просимо до {domain}!', + 'onboarding.page_six.github': '{domain} використовує Glitchsoc. Glitchsoc — дружній {fork} {Mastodon}, сумісний з будь-яким сервером Mastodon або програмою для нього. Glitchsoc повністю вільний та відкритий. Повідомляти про баги, просити фічі, або працювати з кодом можна на {github}.', + 'settings.auto_collapse': 'Автоматичне згортання', + 'settings.auto_collapse_all': 'Все', + 'settings.auto_collapse_lengthy': 'Довгі дмухи', + 'settings.auto_collapse_media': 'Дмухи з медіафайлами', + 'settings.auto_collapse_notifications': 'Сповіщення', + 'settings.auto_collapse_reblogs': 'Передмухи', + 'settings.auto_collapse_replies': 'Відповіді', + 'settings.show_action_bar': 'Показувати кнопки у згорнутих дмухах', + 'settings.close': 'Закрити', + 'settings.collapsed_statuses': 'Згорнуті дмухи', + 'settings.enable_collapsed': 'Увімкути згорнутання дмухів', + 'settings.general': 'Основне', + 'settings.image_backgrounds': 'Картинки на тлі', + 'settings.image_backgrounds_media': 'Підглядати медіа зі схованих дмухів', + 'settings.image_backgrounds_users': 'Давати схованим дмухам тло-картинку', + 'settings.media': 'Медіа', + 'settings.media_letterbox': 'Обрізати медіа', + 'settings.media_fullwidth': 'Показувати медіа повною шириною', + 'settings.preferences': 'Користувацькі налаштування', + 'settings.wide_view': "Широкий вид (тільки в режимі для комп'ютерів)", + 'settings.navbar_under': 'Панель навігації знизу (тільки в режимі для мобілок)', + 'status.collapse': 'Згорнути', + 'status.uncollapse': 'Розгорнути', + + 'media_gallery.sensitive': 'Чутливі', + + 'favourite_modal.combo': 'Ви можете натиснути {combo}, щоб пропустити це наступного разу', + + 'home.column_settings.show_direct': 'Показати прямі повідомлення', + + 'notification.markForDeletion': 'Позначити для видалення', + 'notifications.clear': 'Очистити всі мої сповіщення', + 'notifications.marked_clear_confirmation': 'Ви впевнені, що хочете незворотньо очистити всі вибрані сповіщення?', + 'notifications.marked_clear': 'Очистити вибрані сповіщення', + + 'notification_purge.btn_all': 'Вибрати\nвсе', + 'notification_purge.btn_none': 'Вибрати\nнічого', + 'notification_purge.btn_invert': 'Інвертувати\nвибір', + 'notification_purge.btn_apply': 'Очистити\nвибір', + + 'compose.attach.upload': 'Завантажити сюди файл', + 'compose.attach.doodle': 'Помалювати', + 'compose.attach': 'Вкласти...', + + 'advanced_options.local-only.short': 'Лише локальне', + 'advanced_options.local-only.long': 'Не дмухати це на інші сервери', + 'advanced_options.local-only.tooltip': 'Цей дмух лише локальний', + + // TODO: я не знаю що це значить + //'advanced_options.icon_title': 'Advanced options', + //'advanced_options.threaded_mode.short': 'Threaded mode', + //'advanced_options.threaded_mode.long': 'Automatically opens a reply on posting', + //'advanced_options.threaded_mode.tooltip': 'Threaded mode enabled', }; export default Object.assign({}, inherited, messages); -- cgit From a5e446a4a0bf567e2c293cb68f84ca141f527a21 Mon Sep 17 00:00:00 2001 From: Claire Date: Wed, 21 Dec 2022 22:13:14 +0100 Subject: Change locales file generation to use JSON sources (#2028) * Change locales file generation to use JSON sources Instead of inheriting in JS files, set locale inheritance in the theme's YML file, and inherit in the generated locale file, rather than the source file. * Convert glitch-soc JS translation files to JSON Obtained running the following: ```sh sed -i -z "s/import inherited from '.*';\s*\nconst messages = //" *.js sed -i "s/\s*\/\/.*//" *.js sed -i -z "s/;\s*export default .*/\n/" *.js for i in *.js; do json5 $i | json_pp > ${i}on; done ``` * Change `yarn manage:translations` to exclude any translation already defined upstream * Run yarn manage:translations --- app/javascript/flavours/glitch/locales/af.js | 7 - app/javascript/flavours/glitch/locales/af.json | 201 ++++ app/javascript/flavours/glitch/locales/ar.js | 7 - app/javascript/flavours/glitch/locales/ar.json | 201 ++++ app/javascript/flavours/glitch/locales/ast.js | 7 - app/javascript/flavours/glitch/locales/ast.json | 201 ++++ app/javascript/flavours/glitch/locales/bg.js | 7 - app/javascript/flavours/glitch/locales/bg.json | 201 ++++ app/javascript/flavours/glitch/locales/bn.js | 7 - app/javascript/flavours/glitch/locales/bn.json | 201 ++++ app/javascript/flavours/glitch/locales/br.js | 7 - app/javascript/flavours/glitch/locales/br.json | 201 ++++ app/javascript/flavours/glitch/locales/ca.js | 7 - app/javascript/flavours/glitch/locales/ca.json | 201 ++++ app/javascript/flavours/glitch/locales/ckb.js | 7 - app/javascript/flavours/glitch/locales/ckb.json | 201 ++++ app/javascript/flavours/glitch/locales/co.js | 7 - app/javascript/flavours/glitch/locales/co.json | 201 ++++ app/javascript/flavours/glitch/locales/cs.js | 180 ---- app/javascript/flavours/glitch/locales/cs.json | 201 ++++ app/javascript/flavours/glitch/locales/cy.js | 7 - app/javascript/flavours/glitch/locales/cy.json | 201 ++++ app/javascript/flavours/glitch/locales/da.js | 7 - app/javascript/flavours/glitch/locales/da.json | 201 ++++ app/javascript/flavours/glitch/locales/de.js | 7 - app/javascript/flavours/glitch/locales/de.json | 201 ++++ .../flavours/glitch/locales/defaultMessages.json | 1068 ++++++++++++++++++++ app/javascript/flavours/glitch/locales/el.js | 7 - app/javascript/flavours/glitch/locales/el.json | 201 ++++ app/javascript/flavours/glitch/locales/en.js | 192 ---- app/javascript/flavours/glitch/locales/en.json | 201 ++++ app/javascript/flavours/glitch/locales/eo.js | 7 - app/javascript/flavours/glitch/locales/eo.json | 201 ++++ app/javascript/flavours/glitch/locales/es-AR.js | 7 - app/javascript/flavours/glitch/locales/es-AR.json | 201 ++++ app/javascript/flavours/glitch/locales/es-MX.js | 7 - app/javascript/flavours/glitch/locales/es-MX.json | 201 ++++ app/javascript/flavours/glitch/locales/es.js | 119 --- app/javascript/flavours/glitch/locales/es.json | 201 ++++ app/javascript/flavours/glitch/locales/et.js | 7 - app/javascript/flavours/glitch/locales/et.json | 201 ++++ app/javascript/flavours/glitch/locales/eu.js | 7 - app/javascript/flavours/glitch/locales/eu.json | 201 ++++ app/javascript/flavours/glitch/locales/fa.js | 7 - app/javascript/flavours/glitch/locales/fa.json | 201 ++++ app/javascript/flavours/glitch/locales/fi.js | 7 - app/javascript/flavours/glitch/locales/fi.json | 201 ++++ app/javascript/flavours/glitch/locales/fr.js | 7 - app/javascript/flavours/glitch/locales/fr.json | 201 ++++ app/javascript/flavours/glitch/locales/ga.js | 7 - app/javascript/flavours/glitch/locales/ga.json | 201 ++++ app/javascript/flavours/glitch/locales/gd.js | 7 - app/javascript/flavours/glitch/locales/gd.json | 201 ++++ app/javascript/flavours/glitch/locales/gl.js | 7 - app/javascript/flavours/glitch/locales/gl.json | 201 ++++ app/javascript/flavours/glitch/locales/he.js | 7 - app/javascript/flavours/glitch/locales/he.json | 201 ++++ app/javascript/flavours/glitch/locales/hi.js | 7 - app/javascript/flavours/glitch/locales/hi.json | 201 ++++ app/javascript/flavours/glitch/locales/hr.js | 7 - app/javascript/flavours/glitch/locales/hr.json | 201 ++++ app/javascript/flavours/glitch/locales/hu.js | 7 - app/javascript/flavours/glitch/locales/hu.json | 201 ++++ app/javascript/flavours/glitch/locales/hy.js | 7 - app/javascript/flavours/glitch/locales/hy.json | 201 ++++ app/javascript/flavours/glitch/locales/id.js | 7 - app/javascript/flavours/glitch/locales/id.json | 201 ++++ app/javascript/flavours/glitch/locales/io.js | 7 - app/javascript/flavours/glitch/locales/io.json | 201 ++++ app/javascript/flavours/glitch/locales/is.js | 7 - app/javascript/flavours/glitch/locales/is.json | 201 ++++ app/javascript/flavours/glitch/locales/it.js | 7 - app/javascript/flavours/glitch/locales/it.json | 201 ++++ app/javascript/flavours/glitch/locales/ja.js | 158 --- app/javascript/flavours/glitch/locales/ja.json | 201 ++++ app/javascript/flavours/glitch/locales/ka.js | 7 - app/javascript/flavours/glitch/locales/ka.json | 201 ++++ app/javascript/flavours/glitch/locales/kab.js | 7 - app/javascript/flavours/glitch/locales/kab.json | 201 ++++ app/javascript/flavours/glitch/locales/kk.js | 7 - app/javascript/flavours/glitch/locales/kk.json | 201 ++++ app/javascript/flavours/glitch/locales/kn.js | 7 - app/javascript/flavours/glitch/locales/kn.json | 201 ++++ app/javascript/flavours/glitch/locales/ko.js | 208 ---- app/javascript/flavours/glitch/locales/ko.json | 201 ++++ app/javascript/flavours/glitch/locales/ku.js | 7 - app/javascript/flavours/glitch/locales/ku.json | 201 ++++ app/javascript/flavours/glitch/locales/kw.js | 7 - app/javascript/flavours/glitch/locales/kw.json | 201 ++++ app/javascript/flavours/glitch/locales/lt.js | 7 - app/javascript/flavours/glitch/locales/lt.json | 201 ++++ app/javascript/flavours/glitch/locales/lv.js | 7 - app/javascript/flavours/glitch/locales/lv.json | 201 ++++ app/javascript/flavours/glitch/locales/mk.js | 7 - app/javascript/flavours/glitch/locales/mk.json | 201 ++++ app/javascript/flavours/glitch/locales/ml.js | 7 - app/javascript/flavours/glitch/locales/ml.json | 201 ++++ app/javascript/flavours/glitch/locales/mr.js | 7 - app/javascript/flavours/glitch/locales/mr.json | 201 ++++ app/javascript/flavours/glitch/locales/ms.js | 7 - app/javascript/flavours/glitch/locales/ms.json | 201 ++++ app/javascript/flavours/glitch/locales/nl.js | 7 - app/javascript/flavours/glitch/locales/nl.json | 201 ++++ app/javascript/flavours/glitch/locales/nn.js | 7 - app/javascript/flavours/glitch/locales/nn.json | 201 ++++ app/javascript/flavours/glitch/locales/no.js | 7 - app/javascript/flavours/glitch/locales/no.json | 201 ++++ app/javascript/flavours/glitch/locales/oc.js | 7 - app/javascript/flavours/glitch/locales/oc.json | 201 ++++ app/javascript/flavours/glitch/locales/pa.js | 7 - app/javascript/flavours/glitch/locales/pa.json | 201 ++++ app/javascript/flavours/glitch/locales/pl.js | 79 -- app/javascript/flavours/glitch/locales/pl.json | 201 ++++ app/javascript/flavours/glitch/locales/pt-BR.js | 7 - app/javascript/flavours/glitch/locales/pt-BR.json | 201 ++++ app/javascript/flavours/glitch/locales/pt-PT.js | 7 - app/javascript/flavours/glitch/locales/pt-PT.json | 201 ++++ app/javascript/flavours/glitch/locales/ro.js | 7 - app/javascript/flavours/glitch/locales/ro.json | 201 ++++ app/javascript/flavours/glitch/locales/ru.js | 7 - app/javascript/flavours/glitch/locales/ru.json | 201 ++++ app/javascript/flavours/glitch/locales/sa.js | 7 - app/javascript/flavours/glitch/locales/sa.json | 201 ++++ app/javascript/flavours/glitch/locales/sc.js | 7 - app/javascript/flavours/glitch/locales/sc.json | 201 ++++ app/javascript/flavours/glitch/locales/si.js | 7 - app/javascript/flavours/glitch/locales/si.json | 201 ++++ app/javascript/flavours/glitch/locales/sk.js | 7 - app/javascript/flavours/glitch/locales/sk.json | 201 ++++ app/javascript/flavours/glitch/locales/sl.js | 7 - app/javascript/flavours/glitch/locales/sl.json | 201 ++++ app/javascript/flavours/glitch/locales/sq.js | 7 - app/javascript/flavours/glitch/locales/sq.json | 201 ++++ app/javascript/flavours/glitch/locales/sr-Latn.js | 7 - .../flavours/glitch/locales/sr-Latn.json | 201 ++++ app/javascript/flavours/glitch/locales/sr.js | 7 - app/javascript/flavours/glitch/locales/sr.json | 201 ++++ app/javascript/flavours/glitch/locales/sv.js | 7 - app/javascript/flavours/glitch/locales/sv.json | 201 ++++ app/javascript/flavours/glitch/locales/szl.js | 7 - app/javascript/flavours/glitch/locales/szl.json | 201 ++++ app/javascript/flavours/glitch/locales/ta.js | 7 - app/javascript/flavours/glitch/locales/ta.json | 201 ++++ app/javascript/flavours/glitch/locales/tai.js | 7 - app/javascript/flavours/glitch/locales/tai.json | 201 ++++ app/javascript/flavours/glitch/locales/te.js | 7 - app/javascript/flavours/glitch/locales/te.json | 201 ++++ app/javascript/flavours/glitch/locales/th.js | 7 - app/javascript/flavours/glitch/locales/th.json | 201 ++++ app/javascript/flavours/glitch/locales/tr.js | 7 - app/javascript/flavours/glitch/locales/tr.json | 201 ++++ app/javascript/flavours/glitch/locales/tt.js | 7 - app/javascript/flavours/glitch/locales/tt.json | 201 ++++ app/javascript/flavours/glitch/locales/ug.js | 7 - app/javascript/flavours/glitch/locales/ug.json | 201 ++++ app/javascript/flavours/glitch/locales/uk.js | 72 -- app/javascript/flavours/glitch/locales/uk.json | 201 ++++ app/javascript/flavours/glitch/locales/ur.js | 7 - app/javascript/flavours/glitch/locales/ur.json | 201 ++++ app/javascript/flavours/glitch/locales/vi.js | 7 - app/javascript/flavours/glitch/locales/vi.json | 201 ++++ .../flavours/glitch/locales/whitelist_af.json | 2 + .../flavours/glitch/locales/whitelist_ar.json | 2 + .../flavours/glitch/locales/whitelist_ast.json | 2 + .../flavours/glitch/locales/whitelist_bg.json | 2 + .../flavours/glitch/locales/whitelist_bn.json | 2 + .../flavours/glitch/locales/whitelist_br.json | 2 + .../flavours/glitch/locales/whitelist_ca.json | 2 + .../flavours/glitch/locales/whitelist_ckb.json | 2 + .../flavours/glitch/locales/whitelist_co.json | 2 + .../flavours/glitch/locales/whitelist_cs.json | 2 + .../flavours/glitch/locales/whitelist_cy.json | 2 + .../flavours/glitch/locales/whitelist_da.json | 2 + .../flavours/glitch/locales/whitelist_de.json | 2 + .../flavours/glitch/locales/whitelist_el.json | 2 + .../flavours/glitch/locales/whitelist_en.json | 2 + .../flavours/glitch/locales/whitelist_eo.json | 2 + .../flavours/glitch/locales/whitelist_es-AR.json | 2 + .../flavours/glitch/locales/whitelist_es-MX.json | 2 + .../flavours/glitch/locales/whitelist_es.json | 2 + .../flavours/glitch/locales/whitelist_et.json | 2 + .../flavours/glitch/locales/whitelist_eu.json | 2 + .../flavours/glitch/locales/whitelist_fa.json | 2 + .../flavours/glitch/locales/whitelist_fi.json | 2 + .../flavours/glitch/locales/whitelist_fr.json | 2 + .../flavours/glitch/locales/whitelist_ga.json | 2 + .../flavours/glitch/locales/whitelist_gd.json | 2 + .../flavours/glitch/locales/whitelist_gl.json | 2 + .../flavours/glitch/locales/whitelist_he.json | 2 + .../flavours/glitch/locales/whitelist_hi.json | 2 + .../flavours/glitch/locales/whitelist_hr.json | 2 + .../flavours/glitch/locales/whitelist_hu.json | 2 + .../flavours/glitch/locales/whitelist_hy.json | 2 + .../flavours/glitch/locales/whitelist_id.json | 2 + .../flavours/glitch/locales/whitelist_io.json | 2 + .../flavours/glitch/locales/whitelist_is.json | 2 + .../flavours/glitch/locales/whitelist_it.json | 2 + .../flavours/glitch/locales/whitelist_ja.json | 2 + .../flavours/glitch/locales/whitelist_ka.json | 2 + .../flavours/glitch/locales/whitelist_kab.json | 2 + .../flavours/glitch/locales/whitelist_kk.json | 2 + .../flavours/glitch/locales/whitelist_kn.json | 2 + .../flavours/glitch/locales/whitelist_ko.json | 2 + .../flavours/glitch/locales/whitelist_ku.json | 2 + .../flavours/glitch/locales/whitelist_kw.json | 2 + .../flavours/glitch/locales/whitelist_lt.json | 2 + .../flavours/glitch/locales/whitelist_lv.json | 2 + .../flavours/glitch/locales/whitelist_mk.json | 2 + .../flavours/glitch/locales/whitelist_ml.json | 2 + .../flavours/glitch/locales/whitelist_mr.json | 2 + .../flavours/glitch/locales/whitelist_ms.json | 2 + .../flavours/glitch/locales/whitelist_nl.json | 2 + .../flavours/glitch/locales/whitelist_nn.json | 2 + .../flavours/glitch/locales/whitelist_no.json | 2 + .../flavours/glitch/locales/whitelist_oc.json | 2 + .../flavours/glitch/locales/whitelist_pa.json | 2 + .../flavours/glitch/locales/whitelist_pl.json | 2 + .../flavours/glitch/locales/whitelist_pt-BR.json | 2 + .../flavours/glitch/locales/whitelist_pt-PT.json | 2 + .../flavours/glitch/locales/whitelist_ro.json | 2 + .../flavours/glitch/locales/whitelist_ru.json | 2 + .../flavours/glitch/locales/whitelist_sa.json | 2 + .../flavours/glitch/locales/whitelist_sc.json | 2 + .../flavours/glitch/locales/whitelist_si.json | 2 + .../flavours/glitch/locales/whitelist_sk.json | 2 + .../flavours/glitch/locales/whitelist_sl.json | 2 + .../flavours/glitch/locales/whitelist_sq.json | 2 + .../flavours/glitch/locales/whitelist_sr-Latn.json | 2 + .../flavours/glitch/locales/whitelist_sr.json | 2 + .../flavours/glitch/locales/whitelist_sv.json | 2 + .../flavours/glitch/locales/whitelist_szl.json | 2 + .../flavours/glitch/locales/whitelist_ta.json | 2 + .../flavours/glitch/locales/whitelist_tai.json | 2 + .../flavours/glitch/locales/whitelist_te.json | 2 + .../flavours/glitch/locales/whitelist_th.json | 2 + .../flavours/glitch/locales/whitelist_tr.json | 2 + .../flavours/glitch/locales/whitelist_tt.json | 2 + .../flavours/glitch/locales/whitelist_ug.json | 2 + .../flavours/glitch/locales/whitelist_uk.json | 2 + .../flavours/glitch/locales/whitelist_ur.json | 2 + .../flavours/glitch/locales/whitelist_vi.json | 2 + .../flavours/glitch/locales/whitelist_zgh.json | 2 + .../flavours/glitch/locales/whitelist_zh-CN.json | 2 + .../flavours/glitch/locales/whitelist_zh-HK.json | 2 + .../flavours/glitch/locales/whitelist_zh-TW.json | 2 + app/javascript/flavours/glitch/locales/zgh.js | 7 - app/javascript/flavours/glitch/locales/zgh.json | 201 ++++ app/javascript/flavours/glitch/locales/zh-CN.js | 201 ---- app/javascript/flavours/glitch/locales/zh-CN.json | 201 ++++ app/javascript/flavours/glitch/locales/zh-HK.js | 7 - app/javascript/flavours/glitch/locales/zh-HK.json | 201 ++++ app/javascript/flavours/glitch/locales/zh-TW.js | 7 - app/javascript/flavours/glitch/locales/zh-TW.json | 201 ++++ app/javascript/flavours/glitch/theme.yml | 5 +- config/webpack/generateLocalePacks.js | 28 +- config/webpack/translationRunner.js | 27 +- 256 files changed, 18167 insertions(+), 1754 deletions(-) delete mode 100644 app/javascript/flavours/glitch/locales/af.js create mode 100644 app/javascript/flavours/glitch/locales/af.json delete mode 100644 app/javascript/flavours/glitch/locales/ar.js create mode 100644 app/javascript/flavours/glitch/locales/ar.json delete mode 100644 app/javascript/flavours/glitch/locales/ast.js create mode 100644 app/javascript/flavours/glitch/locales/ast.json delete mode 100644 app/javascript/flavours/glitch/locales/bg.js create mode 100644 app/javascript/flavours/glitch/locales/bg.json delete mode 100644 app/javascript/flavours/glitch/locales/bn.js create mode 100644 app/javascript/flavours/glitch/locales/bn.json delete mode 100644 app/javascript/flavours/glitch/locales/br.js create mode 100644 app/javascript/flavours/glitch/locales/br.json delete mode 100644 app/javascript/flavours/glitch/locales/ca.js create mode 100644 app/javascript/flavours/glitch/locales/ca.json delete mode 100644 app/javascript/flavours/glitch/locales/ckb.js create mode 100644 app/javascript/flavours/glitch/locales/ckb.json delete mode 100644 app/javascript/flavours/glitch/locales/co.js create mode 100644 app/javascript/flavours/glitch/locales/co.json delete mode 100644 app/javascript/flavours/glitch/locales/cs.js create mode 100644 app/javascript/flavours/glitch/locales/cs.json delete mode 100644 app/javascript/flavours/glitch/locales/cy.js create mode 100644 app/javascript/flavours/glitch/locales/cy.json delete mode 100644 app/javascript/flavours/glitch/locales/da.js create mode 100644 app/javascript/flavours/glitch/locales/da.json delete mode 100644 app/javascript/flavours/glitch/locales/de.js create mode 100644 app/javascript/flavours/glitch/locales/de.json create mode 100644 app/javascript/flavours/glitch/locales/defaultMessages.json delete mode 100644 app/javascript/flavours/glitch/locales/el.js create mode 100644 app/javascript/flavours/glitch/locales/el.json delete mode 100644 app/javascript/flavours/glitch/locales/en.js create mode 100644 app/javascript/flavours/glitch/locales/en.json delete mode 100644 app/javascript/flavours/glitch/locales/eo.js create mode 100644 app/javascript/flavours/glitch/locales/eo.json delete mode 100644 app/javascript/flavours/glitch/locales/es-AR.js create mode 100644 app/javascript/flavours/glitch/locales/es-AR.json delete mode 100644 app/javascript/flavours/glitch/locales/es-MX.js create mode 100644 app/javascript/flavours/glitch/locales/es-MX.json delete mode 100644 app/javascript/flavours/glitch/locales/es.js create mode 100644 app/javascript/flavours/glitch/locales/es.json delete mode 100644 app/javascript/flavours/glitch/locales/et.js create mode 100644 app/javascript/flavours/glitch/locales/et.json delete mode 100644 app/javascript/flavours/glitch/locales/eu.js create mode 100644 app/javascript/flavours/glitch/locales/eu.json delete mode 100644 app/javascript/flavours/glitch/locales/fa.js create mode 100644 app/javascript/flavours/glitch/locales/fa.json delete mode 100644 app/javascript/flavours/glitch/locales/fi.js create mode 100644 app/javascript/flavours/glitch/locales/fi.json delete mode 100644 app/javascript/flavours/glitch/locales/fr.js create mode 100644 app/javascript/flavours/glitch/locales/fr.json delete mode 100644 app/javascript/flavours/glitch/locales/ga.js create mode 100644 app/javascript/flavours/glitch/locales/ga.json delete mode 100644 app/javascript/flavours/glitch/locales/gd.js create mode 100644 app/javascript/flavours/glitch/locales/gd.json delete mode 100644 app/javascript/flavours/glitch/locales/gl.js create mode 100644 app/javascript/flavours/glitch/locales/gl.json delete mode 100644 app/javascript/flavours/glitch/locales/he.js create mode 100644 app/javascript/flavours/glitch/locales/he.json delete mode 100644 app/javascript/flavours/glitch/locales/hi.js create mode 100644 app/javascript/flavours/glitch/locales/hi.json delete mode 100644 app/javascript/flavours/glitch/locales/hr.js create mode 100644 app/javascript/flavours/glitch/locales/hr.json delete mode 100644 app/javascript/flavours/glitch/locales/hu.js create mode 100644 app/javascript/flavours/glitch/locales/hu.json delete mode 100644 app/javascript/flavours/glitch/locales/hy.js create mode 100644 app/javascript/flavours/glitch/locales/hy.json delete mode 100644 app/javascript/flavours/glitch/locales/id.js create mode 100644 app/javascript/flavours/glitch/locales/id.json delete mode 100644 app/javascript/flavours/glitch/locales/io.js create mode 100644 app/javascript/flavours/glitch/locales/io.json delete mode 100644 app/javascript/flavours/glitch/locales/is.js create mode 100644 app/javascript/flavours/glitch/locales/is.json delete mode 100644 app/javascript/flavours/glitch/locales/it.js create mode 100644 app/javascript/flavours/glitch/locales/it.json delete mode 100644 app/javascript/flavours/glitch/locales/ja.js create mode 100644 app/javascript/flavours/glitch/locales/ja.json delete mode 100644 app/javascript/flavours/glitch/locales/ka.js create mode 100644 app/javascript/flavours/glitch/locales/ka.json delete mode 100644 app/javascript/flavours/glitch/locales/kab.js create mode 100644 app/javascript/flavours/glitch/locales/kab.json delete mode 100644 app/javascript/flavours/glitch/locales/kk.js create mode 100644 app/javascript/flavours/glitch/locales/kk.json delete mode 100644 app/javascript/flavours/glitch/locales/kn.js create mode 100644 app/javascript/flavours/glitch/locales/kn.json delete mode 100644 app/javascript/flavours/glitch/locales/ko.js create mode 100644 app/javascript/flavours/glitch/locales/ko.json delete mode 100644 app/javascript/flavours/glitch/locales/ku.js create mode 100644 app/javascript/flavours/glitch/locales/ku.json delete mode 100644 app/javascript/flavours/glitch/locales/kw.js create mode 100644 app/javascript/flavours/glitch/locales/kw.json delete mode 100644 app/javascript/flavours/glitch/locales/lt.js create mode 100644 app/javascript/flavours/glitch/locales/lt.json delete mode 100644 app/javascript/flavours/glitch/locales/lv.js create mode 100644 app/javascript/flavours/glitch/locales/lv.json delete mode 100644 app/javascript/flavours/glitch/locales/mk.js create mode 100644 app/javascript/flavours/glitch/locales/mk.json delete mode 100644 app/javascript/flavours/glitch/locales/ml.js create mode 100644 app/javascript/flavours/glitch/locales/ml.json delete mode 100644 app/javascript/flavours/glitch/locales/mr.js create mode 100644 app/javascript/flavours/glitch/locales/mr.json delete mode 100644 app/javascript/flavours/glitch/locales/ms.js create mode 100644 app/javascript/flavours/glitch/locales/ms.json delete mode 100644 app/javascript/flavours/glitch/locales/nl.js create mode 100644 app/javascript/flavours/glitch/locales/nl.json delete mode 100644 app/javascript/flavours/glitch/locales/nn.js create mode 100644 app/javascript/flavours/glitch/locales/nn.json delete mode 100644 app/javascript/flavours/glitch/locales/no.js create mode 100644 app/javascript/flavours/glitch/locales/no.json delete mode 100644 app/javascript/flavours/glitch/locales/oc.js create mode 100644 app/javascript/flavours/glitch/locales/oc.json delete mode 100644 app/javascript/flavours/glitch/locales/pa.js create mode 100644 app/javascript/flavours/glitch/locales/pa.json delete mode 100644 app/javascript/flavours/glitch/locales/pl.js create mode 100644 app/javascript/flavours/glitch/locales/pl.json delete mode 100644 app/javascript/flavours/glitch/locales/pt-BR.js create mode 100644 app/javascript/flavours/glitch/locales/pt-BR.json delete mode 100644 app/javascript/flavours/glitch/locales/pt-PT.js create mode 100644 app/javascript/flavours/glitch/locales/pt-PT.json delete mode 100644 app/javascript/flavours/glitch/locales/ro.js create mode 100644 app/javascript/flavours/glitch/locales/ro.json delete mode 100644 app/javascript/flavours/glitch/locales/ru.js create mode 100644 app/javascript/flavours/glitch/locales/ru.json delete mode 100644 app/javascript/flavours/glitch/locales/sa.js create mode 100644 app/javascript/flavours/glitch/locales/sa.json delete mode 100644 app/javascript/flavours/glitch/locales/sc.js create mode 100644 app/javascript/flavours/glitch/locales/sc.json delete mode 100644 app/javascript/flavours/glitch/locales/si.js create mode 100644 app/javascript/flavours/glitch/locales/si.json delete mode 100644 app/javascript/flavours/glitch/locales/sk.js create mode 100644 app/javascript/flavours/glitch/locales/sk.json delete mode 100644 app/javascript/flavours/glitch/locales/sl.js create mode 100644 app/javascript/flavours/glitch/locales/sl.json delete mode 100644 app/javascript/flavours/glitch/locales/sq.js create mode 100644 app/javascript/flavours/glitch/locales/sq.json delete mode 100644 app/javascript/flavours/glitch/locales/sr-Latn.js create mode 100644 app/javascript/flavours/glitch/locales/sr-Latn.json delete mode 100644 app/javascript/flavours/glitch/locales/sr.js create mode 100644 app/javascript/flavours/glitch/locales/sr.json delete mode 100644 app/javascript/flavours/glitch/locales/sv.js create mode 100644 app/javascript/flavours/glitch/locales/sv.json delete mode 100644 app/javascript/flavours/glitch/locales/szl.js create mode 100644 app/javascript/flavours/glitch/locales/szl.json delete mode 100644 app/javascript/flavours/glitch/locales/ta.js create mode 100644 app/javascript/flavours/glitch/locales/ta.json delete mode 100644 app/javascript/flavours/glitch/locales/tai.js create mode 100644 app/javascript/flavours/glitch/locales/tai.json delete mode 100644 app/javascript/flavours/glitch/locales/te.js create mode 100644 app/javascript/flavours/glitch/locales/te.json delete mode 100644 app/javascript/flavours/glitch/locales/th.js create mode 100644 app/javascript/flavours/glitch/locales/th.json delete mode 100644 app/javascript/flavours/glitch/locales/tr.js create mode 100644 app/javascript/flavours/glitch/locales/tr.json delete mode 100644 app/javascript/flavours/glitch/locales/tt.js create mode 100644 app/javascript/flavours/glitch/locales/tt.json delete mode 100644 app/javascript/flavours/glitch/locales/ug.js create mode 100644 app/javascript/flavours/glitch/locales/ug.json delete mode 100644 app/javascript/flavours/glitch/locales/uk.js create mode 100644 app/javascript/flavours/glitch/locales/uk.json delete mode 100644 app/javascript/flavours/glitch/locales/ur.js create mode 100644 app/javascript/flavours/glitch/locales/ur.json delete mode 100644 app/javascript/flavours/glitch/locales/vi.js create mode 100644 app/javascript/flavours/glitch/locales/vi.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_af.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_ar.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_ast.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_bg.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_bn.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_br.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_ca.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_ckb.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_co.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_cs.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_cy.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_da.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_de.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_el.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_en.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_eo.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_es-AR.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_es-MX.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_es.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_et.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_eu.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_fa.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_fi.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_fr.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_ga.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_gd.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_gl.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_he.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_hi.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_hr.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_hu.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_hy.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_id.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_io.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_is.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_it.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_ja.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_ka.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_kab.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_kk.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_kn.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_ko.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_ku.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_kw.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_lt.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_lv.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_mk.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_ml.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_mr.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_ms.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_nl.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_nn.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_no.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_oc.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_pa.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_pl.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_pt-BR.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_pt-PT.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_ro.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_ru.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_sa.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_sc.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_si.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_sk.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_sl.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_sq.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_sr-Latn.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_sr.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_sv.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_szl.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_ta.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_tai.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_te.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_th.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_tr.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_tt.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_ug.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_uk.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_ur.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_vi.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_zgh.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_zh-CN.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_zh-HK.json create mode 100644 app/javascript/flavours/glitch/locales/whitelist_zh-TW.json delete mode 100644 app/javascript/flavours/glitch/locales/zgh.js create mode 100644 app/javascript/flavours/glitch/locales/zgh.json delete mode 100644 app/javascript/flavours/glitch/locales/zh-CN.js create mode 100644 app/javascript/flavours/glitch/locales/zh-CN.json delete mode 100644 app/javascript/flavours/glitch/locales/zh-HK.js create mode 100644 app/javascript/flavours/glitch/locales/zh-HK.json delete mode 100644 app/javascript/flavours/glitch/locales/zh-TW.js create mode 100644 app/javascript/flavours/glitch/locales/zh-TW.json (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/locales/af.js b/app/javascript/flavours/glitch/locales/af.js deleted file mode 100644 index 4c97b644a..000000000 --- a/app/javascript/flavours/glitch/locales/af.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/af.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/af.json b/app/javascript/flavours/glitch/locales/af.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/af.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/ar.js b/app/javascript/flavours/glitch/locales/ar.js deleted file mode 100644 index 1081147d5..000000000 --- a/app/javascript/flavours/glitch/locales/ar.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/ar.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/ar.json b/app/javascript/flavours/glitch/locales/ar.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/ar.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/ast.js b/app/javascript/flavours/glitch/locales/ast.js deleted file mode 100644 index 41355c24c..000000000 --- a/app/javascript/flavours/glitch/locales/ast.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/ast.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/ast.json b/app/javascript/flavours/glitch/locales/ast.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/ast.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/bg.js b/app/javascript/flavours/glitch/locales/bg.js deleted file mode 100644 index 979039376..000000000 --- a/app/javascript/flavours/glitch/locales/bg.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/bg.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/bg.json b/app/javascript/flavours/glitch/locales/bg.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/bg.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/bn.js b/app/javascript/flavours/glitch/locales/bn.js deleted file mode 100644 index a453498b3..000000000 --- a/app/javascript/flavours/glitch/locales/bn.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/bn.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/bn.json b/app/javascript/flavours/glitch/locales/bn.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/bn.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/br.js b/app/javascript/flavours/glitch/locales/br.js deleted file mode 100644 index 966bd1b2f..000000000 --- a/app/javascript/flavours/glitch/locales/br.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/br.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/br.json b/app/javascript/flavours/glitch/locales/br.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/br.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/ca.js b/app/javascript/flavours/glitch/locales/ca.js deleted file mode 100644 index baf76bd6f..000000000 --- a/app/javascript/flavours/glitch/locales/ca.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/ca.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/ca.json b/app/javascript/flavours/glitch/locales/ca.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/ca.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/ckb.js b/app/javascript/flavours/glitch/locales/ckb.js deleted file mode 100644 index c2e177d5f..000000000 --- a/app/javascript/flavours/glitch/locales/ckb.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/ckb.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/ckb.json b/app/javascript/flavours/glitch/locales/ckb.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/ckb.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/co.js b/app/javascript/flavours/glitch/locales/co.js deleted file mode 100644 index 6e9e46797..000000000 --- a/app/javascript/flavours/glitch/locales/co.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/co.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/co.json b/app/javascript/flavours/glitch/locales/co.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/co.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/cs.js b/app/javascript/flavours/glitch/locales/cs.js deleted file mode 100644 index e789facb0..000000000 --- a/app/javascript/flavours/glitch/locales/cs.js +++ /dev/null @@ -1,180 +0,0 @@ -import inherited from 'mastodon/locales/cs.json'; - -const messages = { - 'about.fork_disclaimer': 'Glitch-soc je svobodný software s otevřeným zdrojovým kódem založený na Mastodonu.', - 'settings.layout_opts': 'Možnosti rozvržení', - 'settings.layout': 'Rozložení:', - 'layout.current_is': 'Nastavené rozložení je:', - 'layout.auto': 'Automatické', - 'layout.desktop': 'Desktop', - 'layout.mobile': 'Mobil', - 'layout.hint.auto': 'Vybrat rozložení automaticky v závislosti na nastavení “Povolit pokročilé webové rozhraní” a velikosti obrazovky.', - 'layout.hint.desktop': 'Použít vícesloupcové rozložení nezávisle na nastavení “Povolit pokročilé webové rozhraní” a velikosti obrazovky.', - 'layout.hint.single': 'Použít jednosloupcové rozložení nezávisle na nastavení “Povolit pokročilé webové rozhraní” a velikosti obrazovky.', - 'navigation_bar.app_settings': 'Nastavení aplikace', - 'navigation_bar.featured_users': 'Vybraní uživatelé', - 'endorsed_accounts_editor.endorsed_accounts': 'Vybrané účty', - 'navigation_bar.info': 'Rozšířené informace', - 'navigation_bar.misc': 'Různé', - 'navigation_bar.keyboard_shortcuts': 'Klávesové zkratky', - 'getting_started.onboarding': 'Ukaž mi to tu', - 'onboarding.skip': 'Přeskočit', - 'onboarding.next': 'Další', - 'onboarding.done': 'Hotovo', - 'onboarding.page_one.federation': '{domain} je \'instance\' Mastodonu. Mastodon je síť nezávislých serverů, které jsou spolu propojené do jedné velké sociální sítě. Těmto serverům říkáme instance.', - 'onboarding.page_one.handle': 'Jste na instanci {domain}, takže celá adresa vašeho profilu je {handle}', - 'onboarding.page_one.welcome': 'Vítá vás {domain}!', - 'onboarding.page_two.compose': 'Příspěvky se píší v levém sloupci. Pomocí ikon pod příspěvkem k němu můžete připojit obrázky, změnit úroveň soukromí nebo přidat varování o obsahu.', - 'onboarding.page_three.search': 'Pomocí vyhledávací lišty můžete hledat lidi nebo hashtagy. Pokud hledáte někoho z jiné instance, musíte použít celou adresu jeho profilu.', - 'onboarding.page_three.profile': 'Upravte si svůj profil a nastavte si profilový obrázek, jméno, a krátký text o sobě. Naleznete tam i další možnosti nastavení.', - 'onboarding.page_four.home': 'Domovská časová osa zobrazuje příspěvky od lidí, které sledujete.', - 'onboarding.page_four.notifications': 'Notifikace se zobrazí, když s vámi někdo interaguje.', - 'onboarding.page_five.public_timelines': 'Místní časová osa zobrazuje veřejné příspěvky všech uživatelů instance {domain}. Federovaná časová osa zobrazí příspěvky od všech, koho uživatelé instance {domain} sledují. Tyto veřejné časové osy jsou skvělý způsob, jak objevit nové lidi.', - 'onboarding.page_six.almost_done': 'Skoro hotovo...', - 'onboarding.page_six.github': 'Na serveru {domain} běží Glitchsoc. Glitchsoc je přátelský {fork} programu {Mastodon}, a je kompatibilní s jakoukoliv jinou mastodoní instancí nebo aplikací. Glitchsoc je zcela svobodný a má otevřený zdrojový kód. Na stránce {github} můžete hlásit chyby, žádat o nové funkce, nebo ke kódu vlastnoručně přispět.', - 'onboarding.page_six.apps_available': 'Jsou dostupné {apps} pro iOS, Android i jiné platformy.', - 'onboarding.page_six.various_app': 'mobilní aplikace', - 'onboarding.page_six.appetoot': 'Veselé mastodonění!', - 'settings.auto_collapse': 'Automaticky sbalit', - 'settings.auto_collapse_all': 'Všechno', - 'settings.auto_collapse_lengthy': 'Dlouhé příspěvky', - 'settings.auto_collapse_media': 'Příspěvky s přílohami', - 'settings.auto_collapse_notifications': 'Oznámení', - 'settings.auto_collapse_reblogs': 'Boosty', - 'settings.auto_collapse_replies': 'Odpovědi', - 'settings.show_action_bar': 'Zobrazit ve sbalených příspěvcích tlačítka s akcemi', - 'settings.close': 'Zavřít', - 'settings.collapsed_statuses': 'Sbalené příspěvky', - 'settings.confirm_boost_missing_media_description': 'Zobrazit potvrzovací dialog před boostnutím příspěvku s chybějícími popisky obrázků', - 'boost_modal.missing_description': 'Příspěvek obsahuje obrázky bez popisků', - 'settings.enable_collapsed': 'Povolit sbalené příspěvky', - 'settings.enable_collapsed_hint': 'U sbalených příspěvků je část jejich obsahu skrytá, aby zabraly méně místa na obrazovce. (Tohle není stejná funkce jako varování o obsahu.)', - 'settings.general': 'Obecné', - 'settings.hicolor_privacy_icons': 'Barevné ikony soukromí', - 'settings.hicolor_privacy_icons.hint': 'Zobrazit ikony úrovně soukromí příspěvků v jasných, snadno rozlišitelných barvách', - 'settings.image_backgrounds': 'Obrázkové pozadí', - 'settings.image_backgrounds_media': 'Náhled médií ve sbalených příspěvcích', - 'settings.image_backgrounds_media_hint': 'Pokud jsou k příspěvku přiložena média, použije se první z nich jako pozadí', - 'settings.image_backgrounds_users': 'Nastavit sbaleným příspěvkům obrázkové pozadí', - 'settings.inline_preview_cards': 'Zobrazit v časové ose náhledy externích odkazů', - 'settings.media': 'Média', - 'settings.media_letterbox': 'Neořezávat obrázky', - 'settings.media_letterbox_hint': 'Místo výřezu obrázku zobrazit obrázek celý, doplněný podle potřeby o prázdné okraje', - 'settings.media_fullwidth': 'Zobrazit náhledy v plné šířce', - 'settings.notifications_opts': 'Možnosti oznámení', - 'settings.notifications.tab_badge': 'Zobrazit počet nepřečtených oznámení', - 'settings.notifications.tab_badge.hint': 'Počet nepřečtených oznámení se viditelně zobrazí na hlavní stránce (pokud není seznam oznámení viditelný)', - 'settings.notifications.favicon_badge': 'Zobrazit počet na ikoně serveru', - 'settings.notifications.favicon_badge.hint': 'Zobrazí počet nepřečtených oznámení na ikoně serveru', - 'settings.preferences': 'Předvolby', - 'settings.rewrite_mentions': 'Přepsat zmínky v zobrazených příspěvcích', - 'settings.rewrite_mentions_no': 'Nepřepisovat zmínky', - 'settings.rewrite_mentions_acct': 'Přepsat uživatelským jménem a doménou (pokud je účet na jiném serveru)', - 'settings.rewrite_mentions_username': 'Přepsat uživatelským jménem', - 'settings.show_reply_counter': 'Zobrazit odhad počtu odpovědí', - 'settings.status_icons': 'Ikony u příspěvků', - 'settings.status_icons_language': 'Indikace jazyk', - 'settings.status_icons_reply': 'Indikace odpovědi', - 'settings.status_icons_local_only': 'Indikace lokálního příspěvku', - 'settings.status_icons_media': 'Indikace obrázků a anket', - 'settings.status_icons_visibility': 'Indikace úrovně soukromí', - 'settings.tag_misleading_links': 'Označit zavádějící odkazy', - 'settings.tag_misleading_links.hint': 'Zobrazit skutečný cíl u každého odkazu, který ho explicitně nezmiňuje', - 'settings.wide_view': 'Široké sloupce (pouze v režimu Desktop)', - 'settings.wide_view_hint': 'Sloupce se roztáhnout, aby lépe vyplnily dostupný prostor.', - 'settings.navbar_under': 'Navigační lišta vespod (pouze v režimu Mobil)', - 'settings.compose_box_opts': 'Editační pole', - 'settings.always_show_spoilers_field': 'Vždy zobrazit pole pro varování o obsahu', - 'settings.prepend_cw_re': 'Při odpovídání přidat před varování o obsahu “re: ”', - 'settings.preselect_on_reply': 'Při odpovědi označit uživatelská jména', - 'settings.preselect_on_reply_hint': 'Při odpovídání na konverzaci s více účastníky se jména všech kromě prvního označí, aby šla jednoduše smazat', - 'settings.confirm_missing_media_description': 'Zobrazit potvrzovací dialog při odesílání příspěvku, ve kterém chybí popisky obrázků', - 'settings.confirm_before_clearing_draft': 'Zobrazit potvrzovací dialog před přepsáním právě vytvářené zprávy', - 'settings.show_content_type_choice': 'Zobrazit volbu formátu příspěvku', - 'settings.side_arm': 'Vedlejší odesílací tlačítko:', - 'settings.side_arm.none': 'Žádné', - 'settings.side_arm_reply_mode': 'Při odpovídání na příspěvek by vedlejší odesílací tlačítko mělo:', - 'settings.side_arm_reply_mode.keep': 'Použít svou nastavenou úroveň soukromí', - 'settings.side_arm_reply_mode.copy': 'Použít úroveň soukromí příspěvku, na který odpovídáte', - 'settings.side_arm_reply_mode.restrict': 'Zvýšit úroveň soukromí nejméně na úroveň příspěvku, na který odpovídáte', - 'settings.content_warnings': 'Varování o obsahu', - 'settings.content_warnings_shared_state': 'Zobrazit/schovat všechny kopie naráz', - 'settings.content_warnings_shared_state_hint': 'Tlačítko varování o obsahu bude mít efekt na všechny kopie příspěvku naráz, stejně jako na běžném Mastodonu. Nebude pak možné automaticky sbalit jakoukoliv kopii příspěvku, která má rozbalené varování o obsahu', - 'settings.content_warnings_media_outside': 'Zobrazit obrázky a videa mimo varování o obsahu', - 'settings.content_warnings_media_outside_hint': 'Obrázky a videa z příspěvku s varováním o obsahu se zobrazí se separátním přepínačem zobrazení, stejně jako na běžném Mastodonu.', - 'settings.content_warnings_unfold_opts': 'Možnosti automatického rozbalení', - 'settings.enable_content_warnings_auto_unfold': 'Vždy rozbalit příspěvky označené varováním o obsahu', - 'settings.deprecated_setting': 'Tato možnost se nyní nastavuje v {settings_page_link}', - 'settings.shared_settings_link': 'předvolbách Mastodonu', - 'settings.content_warnings_filter': 'Tato varování o obsahu automaticky nerozbalovat:', - 'settings.content_warnings.regexp': 'Regulární výraz', - 'settings.media_reveal_behind_cw': 'Automaticky zobrazit média označená varováním o obsahu', - 'settings.pop_in_player': 'Povolit plovoucí okno přehrávače', - 'settings.pop_in_position': 'Pozice plovoucího okna:', - 'settings.pop_in_left': 'Vlevo', - 'settings.pop_in_right': 'Vpravo', - - - 'status.collapse': 'Sbalit', - 'status.uncollapse': 'Rozbalit', - 'status.in_reply_to': 'Tento příspěvek je odpověď', - 'status.has_preview_card': 'Obsahuje náhled odkazu', - 'status.has_pictures': 'Obsahuje obrázky', - 'status.is_poll': 'Tento příspěvek je anketa', - 'status.has_video': 'Obsahuje video', - 'status.has_audio': 'Obsahuje audio', - 'status.local_only': 'Viditelné pouze z vaší instance', - - 'media_gallery.sensitive': 'Citlivý obsah', - - 'favourite_modal.combo': 'Příště můžete pro přeskočení stisknout {combo}', - - 'home.column_settings.show_direct': 'Zobrazit přímé zprávy', - - 'notification_purge.start': 'Čistící režim', - 'notifications.mark_as_read': 'Označit všechna oznámení jako přečtená', - - 'notification.markForDeletion': 'Označit pro smazání', - 'notifications.clear': 'Vymazat všechna oznámení', - 'notifications.marked_clear_confirmation': 'Určitě chcete trvale smazat všechna vybraná oznámení?', - 'notifications.marked_clear': 'Smazat vybraná oznámení', - - 'notification_purge.btn_all': 'Vybrat\nvše', - 'notification_purge.btn_none': 'Nevybrat\nnic', - 'notification_purge.btn_invert': 'Obrátit\nvýběr', - 'notification_purge.btn_apply': 'Smazat\nvybrané', - - 'compose.attach.upload': 'Nahrát soubor', - 'compose.attach.doodle': 'Něco namalovat', - 'compose.attach': 'Připojit...', - - 'advanced_options.local-only.short': 'Lokální příspěvek', - 'advanced_options.local-only.long': 'Neposílat na jiné servery', - 'advanced_options.local-only.tooltip': 'Tento příspěvek je pouze lokální', - 'advanced_options.icon_title': 'Pokročilá nastavení', - 'advanced_options.threaded_mode.short': 'Režim vlákna', - 'advanced_options.threaded_mode.long': 'Po odeslání automaticky otevře pole pro odpověď', - 'advanced_options.threaded_mode.tooltip': 'Režim vlákna je zapnutý', - - 'home.column_settings.advanced': 'Pokročilé', - 'home.column_settings.filter_regex': 'Filtrovat podle regulárních výrazů', - - 'compose_form.poll.single_choice': 'Povolit jednu odpověď', - 'compose_form.poll.multiple_choices': 'Povolit více odpovědí', - - 'compose.content-type.plain': 'Prostý text', - 'content-type.change': 'Formát příspěvku', - 'compose_form.spoiler': 'Přidat varování o obsahu', - - 'direct.group_by_conversations': 'Seskupit do konverzací', - 'column.toot': 'Příspěvky a odpovědi', - 'confirmation_modal.do_not_ask_again': 'Příště se už neptat', - - 'keyboard_shortcuts.bookmark': 'Přidat do záložek', - 'keyboard_shortcuts.toggle_collapse': 'Sbalit/rozbalit příspěvek', - 'keyboard_shortcuts.secondary_toot': 'Odeslat příspěvek s druhotným nastavením soukromí', - - 'column.subheading': 'Různé', -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/cs.json b/app/javascript/flavours/glitch/locales/cs.json new file mode 100644 index 000000000..1283f4bdd --- /dev/null +++ b/app/javascript/flavours/glitch/locales/cs.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc je svobodný software s otevřeným zdrojovým kódem založený na Mastodonu.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Pokročilá nastavení", + "advanced_options.local-only.long": "Neposílat na jiné servery", + "advanced_options.local-only.short": "Lokální příspěvek", + "advanced_options.local-only.tooltip": "Tento příspěvek je pouze lokální", + "advanced_options.threaded_mode.long": "Po odeslání automaticky otevře pole pro odpověď", + "advanced_options.threaded_mode.short": "Režim vlákna", + "advanced_options.threaded_mode.tooltip": "Režim vlákna je zapnutý", + "boost_modal.missing_description": "Příspěvek obsahuje obrázky bez popisků", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Různé", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Připojit...", + "compose.attach.doodle": "Něco namalovat", + "compose.attach.upload": "Nahrát soubor", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Prostý text", + "compose_form.poll.multiple_choices": "Povolit více odpovědí", + "compose_form.poll.single_choice": "Povolit jednu odpověď", + "compose_form.spoiler": "Přidat varování o obsahu", + "confirmation_modal.do_not_ask_again": "Příště se už neptat", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Formát příspěvku", + "direct.group_by_conversations": "Seskupit do konverzací", + "endorsed_accounts_editor.endorsed_accounts": "Vybrané účty", + "favourite_modal.combo": "Příště můžete pro přeskočení stisknout {combo}", + "getting_started.onboarding": "Ukaž mi to tu", + "home.column_settings.advanced": "Pokročilé", + "home.column_settings.filter_regex": "Filtrovat podle regulárních výrazů", + "home.column_settings.show_direct": "Zobrazit přímé zprávy", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "Přidat do záložek", + "keyboard_shortcuts.secondary_toot": "Odeslat příspěvek s druhotným nastavením soukromí", + "keyboard_shortcuts.toggle_collapse": "Sbalit/rozbalit příspěvek", + "layout.auto": "Automatické", + "layout.desktop": "Desktop", + "layout.hint.auto": "Vybrat rozložení automaticky v závislosti na nastavení “Povolit pokročilé webové rozhraní” a velikosti obrazovky.", + "layout.hint.desktop": "Použít vícesloupcové rozložení nezávisle na nastavení “Povolit pokročilé webové rozhraní” a velikosti obrazovky.", + "layout.hint.single": "Použít jednosloupcové rozložení nezávisle na nastavení “Povolit pokročilé webové rozhraní” a velikosti obrazovky.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Citlivý obsah", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "Nastavení aplikace", + "navigation_bar.featured_users": "Vybraní uživatelé", + "navigation_bar.info": "Rozšířené informace", + "navigation_bar.keyboard_shortcuts": "Klávesové zkratky", + "navigation_bar.misc": "Různé", + "notification.markForDeletion": "Označit pro smazání", + "notification_purge.btn_all": "Vybrat\nvše", + "notification_purge.btn_apply": "Smazat\nvybrané", + "notification_purge.btn_invert": "Obrátit\nvýběr", + "notification_purge.btn_none": "Nevybrat\nnic", + "notification_purge.start": "Čistící režim", + "notifications.marked_clear": "Smazat vybraná oznámení", + "notifications.marked_clear_confirmation": "Určitě chcete trvale smazat všechna vybraná oznámení?", + "onboarding.done": "Hotovo", + "onboarding.next": "Další", + "onboarding.page_five.public_timelines": "Místní časová osa zobrazuje veřejné příspěvky všech uživatelů instance {domain}. Federovaná časová osa zobrazí příspěvky od všech, koho uživatelé instance {domain} sledují. Tyto veřejné časové osy jsou skvělý způsob, jak objevit nové lidi.", + "onboarding.page_four.home": "Domovská časová osa zobrazuje příspěvky od lidí, které sledujete.", + "onboarding.page_four.notifications": "Notifikace se zobrazí, když s vámi někdo interaguje.", + "onboarding.page_one.federation": "{domain} je 'instance' Mastodonu. Mastodon je síť nezávislých serverů, které jsou spolu propojené do jedné velké sociální sítě. Těmto serverům říkáme instance.", + "onboarding.page_one.handle": "Jste na instanci {domain}, takže celá adresa vašeho profilu je {handle}", + "onboarding.page_one.welcome": "Vítá vás {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Skoro hotovo...", + "onboarding.page_six.appetoot": "Veselé mastodonění!", + "onboarding.page_six.apps_available": "Jsou dostupné {apps} pro iOS, Android i jiné platformy.", + "onboarding.page_six.github": "Na serveru {domain} běží Glitchsoc. Glitchsoc je přátelský {fork} programu {Mastodon}, a je kompatibilní s jakoukoliv jinou mastodoní instancí nebo aplikací. Glitchsoc je zcela svobodný a má otevřený zdrojový kód. Na stránce {github} můžete hlásit chyby, žádat o nové funkce, nebo ke kódu vlastnoručně přispět.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobilní aplikace", + "onboarding.page_three.profile": "Upravte si svůj profil a nastavte si profilový obrázek, jméno, a krátký text o sobě. Naleznete tam i další možnosti nastavení.", + "onboarding.page_three.search": "Pomocí vyhledávací lišty můžete hledat lidi nebo hashtagy. Pokud hledáte někoho z jiné instance, musíte použít celou adresu jeho profilu.", + "onboarding.page_two.compose": "Příspěvky se píší v levém sloupci. Pomocí ikon pod příspěvkem k němu můžete připojit obrázky, změnit úroveň soukromí nebo přidat varování o obsahu.", + "onboarding.skip": "Přeskočit", + "settings.always_show_spoilers_field": "Vždy zobrazit pole pro varování o obsahu", + "settings.auto_collapse": "Automaticky sbalit", + "settings.auto_collapse_all": "Všechno", + "settings.auto_collapse_lengthy": "Dlouhé příspěvky", + "settings.auto_collapse_media": "Příspěvky s přílohami", + "settings.auto_collapse_notifications": "Oznámení", + "settings.auto_collapse_reblogs": "Boosty", + "settings.auto_collapse_replies": "Odpovědi", + "settings.close": "Zavřít", + "settings.collapsed_statuses": "Sbalené příspěvky", + "settings.compose_box_opts": "Editační pole", + "settings.confirm_before_clearing_draft": "Zobrazit potvrzovací dialog před přepsáním právě vytvářené zprávy", + "settings.confirm_boost_missing_media_description": "Zobrazit potvrzovací dialog před boostnutím příspěvku s chybějícími popisky obrázků", + "settings.confirm_missing_media_description": "Zobrazit potvrzovací dialog při odesílání příspěvku, ve kterém chybí popisky obrázků", + "settings.content_warnings": "Varování o obsahu", + "settings.content_warnings.regexp": "Regulární výraz", + "settings.content_warnings_filter": "Tato varování o obsahu automaticky nerozbalovat:", + "settings.content_warnings_media_outside": "Zobrazit obrázky a videa mimo varování o obsahu", + "settings.content_warnings_media_outside_hint": "Obrázky a videa z příspěvku s varováním o obsahu se zobrazí se separátním přepínačem zobrazení, stejně jako na běžném Mastodonu.", + "settings.content_warnings_shared_state": "Zobrazit/schovat všechny kopie naráz", + "settings.content_warnings_shared_state_hint": "Tlačítko varování o obsahu bude mít efekt na všechny kopie příspěvku naráz, stejně jako na běžném Mastodonu. Nebude pak možné automaticky sbalit jakoukoliv kopii příspěvku, která má rozbalené varování o obsahu", + "settings.content_warnings_unfold_opts": "Možnosti automatického rozbalení", + "settings.deprecated_setting": "Tato možnost se nyní nastavuje v {settings_page_link}", + "settings.enable_collapsed": "Povolit sbalené příspěvky", + "settings.enable_collapsed_hint": "U sbalených příspěvků je část jejich obsahu skrytá, aby zabraly méně místa na obrazovce. (Tohle není stejná funkce jako varování o obsahu.)", + "settings.enable_content_warnings_auto_unfold": "Vždy rozbalit příspěvky označené varováním o obsahu", + "settings.filters": "Filters", + "settings.general": "Obecné", + "settings.hicolor_privacy_icons": "Barevné ikony soukromí", + "settings.hicolor_privacy_icons.hint": "Zobrazit ikony úrovně soukromí příspěvků v jasných, snadno rozlišitelných barvách", + "settings.image_backgrounds": "Obrázkové pozadí", + "settings.image_backgrounds_media": "Náhled médií ve sbalených příspěvcích", + "settings.image_backgrounds_media_hint": "Pokud jsou k příspěvku přiložena média, použije se první z nich jako pozadí", + "settings.image_backgrounds_users": "Nastavit sbaleným příspěvkům obrázkové pozadí", + "settings.inline_preview_cards": "Zobrazit v časové ose náhledy externích odkazů", + "settings.layout": "Rozložení:", + "settings.layout_opts": "Možnosti rozvržení", + "settings.media": "Média", + "settings.media_fullwidth": "Zobrazit náhledy v plné šířce", + "settings.media_letterbox": "Neořezávat obrázky", + "settings.media_letterbox_hint": "Místo výřezu obrázku zobrazit obrázek celý, doplněný podle potřeby o prázdné okraje", + "settings.media_reveal_behind_cw": "Automaticky zobrazit média označená varováním o obsahu", + "settings.notifications.favicon_badge": "Zobrazit počet na ikoně serveru", + "settings.notifications.favicon_badge.hint": "Zobrazí počet nepřečtených oznámení na ikoně serveru", + "settings.notifications.tab_badge": "Zobrazit počet nepřečtených oznámení", + "settings.notifications.tab_badge.hint": "Počet nepřečtených oznámení se viditelně zobrazí na hlavní stránce (pokud není seznam oznámení viditelný)", + "settings.notifications_opts": "Možnosti oznámení", + "settings.pop_in_left": "Vlevo", + "settings.pop_in_player": "Povolit plovoucí okno přehrávače", + "settings.pop_in_position": "Pozice plovoucího okna:", + "settings.pop_in_right": "Vpravo", + "settings.preferences": "Předvolby", + "settings.prepend_cw_re": "Při odpovídání přidat před varování o obsahu “re: ”", + "settings.preselect_on_reply": "Při odpovědi označit uživatelská jména", + "settings.preselect_on_reply_hint": "Při odpovídání na konverzaci s více účastníky se jména všech kromě prvního označí, aby šla jednoduše smazat", + "settings.rewrite_mentions": "Přepsat zmínky v zobrazených příspěvcích", + "settings.rewrite_mentions_acct": "Přepsat uživatelským jménem a doménou (pokud je účet na jiném serveru)", + "settings.rewrite_mentions_no": "Nepřepisovat zmínky", + "settings.rewrite_mentions_username": "Přepsat uživatelským jménem", + "settings.shared_settings_link": "předvolbách Mastodonu", + "settings.show_action_bar": "Zobrazit ve sbalených příspěvcích tlačítka s akcemi", + "settings.show_content_type_choice": "Zobrazit volbu formátu příspěvku", + "settings.show_reply_counter": "Zobrazit odhad počtu odpovědí", + "settings.side_arm": "Vedlejší odesílací tlačítko:", + "settings.side_arm.none": "Žádné", + "settings.side_arm_reply_mode": "Při odpovídání na příspěvek by vedlejší odesílací tlačítko mělo:", + "settings.side_arm_reply_mode.copy": "Použít úroveň soukromí příspěvku, na který odpovídáte", + "settings.side_arm_reply_mode.keep": "Použít svou nastavenou úroveň soukromí", + "settings.side_arm_reply_mode.restrict": "Zvýšit úroveň soukromí nejméně na úroveň příspěvku, na který odpovídáte", + "settings.status_icons": "Ikony u příspěvků", + "settings.status_icons_language": "Indikace jazyk", + "settings.status_icons_local_only": "Indikace lokálního příspěvku", + "settings.status_icons_media": "Indikace obrázků a anket", + "settings.status_icons_reply": "Indikace odpovědi", + "settings.status_icons_visibility": "Indikace úrovně soukromí", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Označit zavádějící odkazy", + "settings.tag_misleading_links.hint": "Zobrazit skutečný cíl u každého odkazu, který ho explicitně nezmiňuje", + "settings.wide_view": "Široké sloupce (pouze v režimu Desktop)", + "settings.wide_view_hint": "Sloupce se roztáhnout, aby lépe vyplnily dostupný prostor.", + "status.collapse": "Sbalit", + "status.has_audio": "Obsahuje audio", + "status.has_pictures": "Obsahuje obrázky", + "status.has_preview_card": "Obsahuje náhled odkazu", + "status.has_video": "Obsahuje video", + "status.in_reply_to": "Tento příspěvek je odpověď", + "status.is_poll": "Tento příspěvek je anketa", + "status.local_only": "Viditelné pouze z vaší instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Rozbalit", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/cy.js b/app/javascript/flavours/glitch/locales/cy.js deleted file mode 100644 index 09412bd72..000000000 --- a/app/javascript/flavours/glitch/locales/cy.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/cy.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/cy.json b/app/javascript/flavours/glitch/locales/cy.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/cy.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/da.js b/app/javascript/flavours/glitch/locales/da.js deleted file mode 100644 index 2b08806be..000000000 --- a/app/javascript/flavours/glitch/locales/da.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/da.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/da.json b/app/javascript/flavours/glitch/locales/da.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/da.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/de.js b/app/javascript/flavours/glitch/locales/de.js deleted file mode 100644 index ce6453623..000000000 --- a/app/javascript/flavours/glitch/locales/de.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/de.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/de.json b/app/javascript/flavours/glitch/locales/de.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/de.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/defaultMessages.json b/app/javascript/flavours/glitch/locales/defaultMessages.json new file mode 100644 index 000000000..97a33bcc5 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/defaultMessages.json @@ -0,0 +1,1068 @@ +[ + { + "descriptors": [ + { + "defaultMessage": "We're sorry, but something went wrong with the Mastodon app.", + "id": "web_app_crash.title" + }, + { + "defaultMessage": "You could try any of the following:", + "id": "web_app_crash.content" + }, + { + "defaultMessage": "Disable browser add-ons or built-in translation tools", + "id": "web_app_crash.disable_addons" + }, + { + "defaultMessage": "Report a bug in the {issuetracker}", + "id": "web_app_crash.report_issue" + }, + { + "defaultMessage": "issue tracker", + "id": "web_app_crash.issue_tracker" + }, + { + "defaultMessage": "Debug information", + "id": "web_app_crash.debug_info" + }, + { + "defaultMessage": "{reload} the current page", + "id": "web_app_crash.reload_page" + }, + { + "defaultMessage": "Reload", + "id": "web_app_crash.reload" + }, + { + "defaultMessage": "Change your {settings}", + "id": "web_app_crash.change_your_settings" + }, + { + "defaultMessage": "settings", + "id": "web_app_crash.settings" + } + ], + "path": "app/javascript/flavours/glitch/components/error_boundary.json" + }, + { + "descriptors": [ + { + "defaultMessage": "Sensitive", + "id": "media_gallery.sensitive" + }, + { + "defaultMessage": "Click to view", + "id": "status.sensitive_toggle" + } + ], + "path": "app/javascript/flavours/glitch/components/media_gallery.json" + }, + { + "descriptors": [ + { + "defaultMessage": "Select\nall", + "id": "notification_purge.btn_all" + }, + { + "defaultMessage": "Select\nnone", + "id": "notification_purge.btn_none" + }, + { + "defaultMessage": "Invert\nselection", + "id": "notification_purge.btn_invert" + }, + { + "defaultMessage": "Clear\nselected", + "id": "notification_purge.btn_apply" + } + ], + "path": "app/javascript/flavours/glitch/components/notification_purge_buttons.json" + }, + { + "descriptors": [ + { + "defaultMessage": "Collapse", + "id": "status.collapse" + }, + { + "defaultMessage": "Uncollapse", + "id": "status.uncollapse" + }, + { + "defaultMessage": "This toot is a reply", + "id": "status.in_reply_to" + }, + { + "defaultMessage": "Features an attached preview card", + "id": "status.has_preview_card" + }, + { + "defaultMessage": "Features attached pictures", + "id": "status.has_pictures" + }, + { + "defaultMessage": "This toot is a poll", + "id": "status.is_poll" + }, + { + "defaultMessage": "Features attached videos", + "id": "status.has_video" + }, + { + "defaultMessage": "Features attached audio files", + "id": "status.has_audio" + }, + { + "defaultMessage": "Only visible from your instance", + "id": "status.local_only" + } + ], + "path": "app/javascript/flavours/glitch/components/status_icons.json" + }, + { + "descriptors": [ + { + "defaultMessage": "Are you sure you want to permanently clear all selected notifications?", + "id": "notifications.marked_clear_confirmation" + }, + { + "defaultMessage": "Clear selected notifications", + "id": "notifications.marked_clear" + } + ], + "path": "app/javascript/flavours/glitch/containers/notification_purge_buttons_container.json" + }, + { + "descriptors": [ + { + "defaultMessage": "Show", + "id": "confirmations.unfilter.confirm" + }, + { + "defaultMessage": "Author", + "id": "confirmations.unfilter.author" + }, + { + "defaultMessage": "Matching {count, plural, one {filter} other {filters}}", + "id": "confirmations.unfilter.filters" + }, + { + "defaultMessage": "Edit filter", + "id": "confirmations.unfilter.edit_filter" + } + ], + "path": "app/javascript/flavours/glitch/containers/status_container.json" + }, + { + "descriptors": [ + { + "defaultMessage": "Glitch-soc is free open source software forked from Mastodon.", + "id": "about.fork_disclaimer" + } + ], + "path": "app/javascript/flavours/glitch/features/about/index.json" + }, + { + "descriptors": [ + { + "defaultMessage": "No comment provided", + "id": "account_note.glitch_placeholder" + }, + { + "defaultMessage": "Cancel", + "id": "account_note.cancel" + }, + { + "defaultMessage": "Save", + "id": "account_note.save" + }, + { + "defaultMessage": "Edit", + "id": "account_note.edit" + } + ], + "path": "app/javascript/flavours/glitch/features/account/components/account_note.json" + }, + { + "descriptors": [ + { + "defaultMessage": "This user has been suspended by a moderator.", + "id": "account.suspended_disclaimer_full" + }, + { + "defaultMessage": "Information below may reflect the user's profile incompletely.", + "id": "account.disclaimer_full" + }, + { + "defaultMessage": "View full profile", + "id": "account.view_full_profile" + }, + { + "defaultMessage": "Follows", + "id": "account.follows" + } + ], + "path": "app/javascript/flavours/glitch/features/account/components/action_bar.json" + }, + { + "descriptors": [ + { + "defaultMessage": "Add note for @{name}", + "id": "account.add_account_note" + }, + { + "defaultMessage": "Joined {date}", + "id": "account.joined" + } + ], + "path": "app/javascript/flavours/glitch/features/account/components/header.json" + }, + { + "descriptors": [ + { + "defaultMessage": "Profile", + "id": "column_header.profile" + } + ], + "path": "app/javascript/flavours/glitch/features/account/components/profile_column_header.json" + }, + { + "descriptors": [ + { + "defaultMessage": "Filter out by regular expressions", + "id": "home.column_settings.filter_regex" + }, + { + "defaultMessage": "Column settings", + "id": "home.settings" + }, + { + "defaultMessage": "Advanced", + "id": "home.column_settings.advanced" + } + ], + "path": "app/javascript/flavours/glitch/features/community_timeline/components/column_settings.json" + }, + { + "descriptors": [ + { + "defaultMessage": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "id": "confirmations.missing_media_description.message" + }, + { + "defaultMessage": "Send anyway", + "id": "confirmations.missing_media_description.confirm" + } + ], + "path": "app/javascript/flavours/glitch/features/compose/components/compose_form.json" + }, + { + "descriptors": [ + { + "defaultMessage": "App settings", + "id": "navigation_bar.app_settings" + } + ], + "path": "app/javascript/flavours/glitch/features/compose/components/header.json" + }, + { + "descriptors": [ + { + "defaultMessage": "Advanced options", + "id": "advanced_options.icon_title" + }, + { + "defaultMessage": "Attach...", + "id": "compose.attach" + }, + { + "defaultMessage": "Content type", + "id": "content-type.change" + }, + { + "defaultMessage": "Draw something", + "id": "compose.attach.doodle" + }, + { + "defaultMessage": "HTML", + "id": "compose.content-type.html" + }, + { + "defaultMessage": "Do not post to other instances", + "id": "advanced_options.local-only.long" + }, + { + "defaultMessage": "Local-only", + "id": "advanced_options.local-only.short" + }, + { + "defaultMessage": "Markdown", + "id": "compose.content-type.markdown" + }, + { + "defaultMessage": "Plain text", + "id": "compose.content-type.plain" + }, + { + "defaultMessage": "Hide text behind warning", + "id": "compose_form.spoiler" + }, + { + "defaultMessage": "Automatically opens a reply on posting", + "id": "advanced_options.threaded_mode.long" + }, + { + "defaultMessage": "Threaded mode", + "id": "advanced_options.threaded_mode.short" + }, + { + "defaultMessage": "Upload a file", + "id": "compose.attach.upload" + } + ], + "path": "app/javascript/flavours/glitch/features/compose/components/options.json" + }, + { + "descriptors": [ + { + "defaultMessage": "Allow one choice", + "id": "compose_form.poll.single_choice" + }, + { + "defaultMessage": "Allow multiple choices", + "id": "compose_form.poll.multiple_choices" + } + ], + "path": "app/javascript/flavours/glitch/features/compose/components/poll_form.json" + }, + { + "descriptors": [ + { + "defaultMessage": "This post is local-only", + "id": "advanced_options.local-only.tooltip" + }, + { + "defaultMessage": "Threaded mode enabled", + "id": "advanced_options.threaded_mode.tooltip" + } + ], + "path": "app/javascript/flavours/glitch/features/compose/components/textarea_icons.json" + }, + { + "descriptors": [ + { + "defaultMessage": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "id": "confirmations.missing_media_description.message" + }, + { + "defaultMessage": "Send anyway", + "id": "confirmations.missing_media_description.confirm" + }, + { + "defaultMessage": "Edit media", + "id": "confirmations.missing_media_description.edit" + } + ], + "path": "app/javascript/flavours/glitch/features/compose/containers/compose_form_container.json" + }, + { + "descriptors": [ + { + "defaultMessage": "Filter out by regular expressions", + "id": "home.column_settings.filter_regex" + }, + { + "defaultMessage": "Column settings", + "id": "home.settings" + }, + { + "defaultMessage": "Group by conversation", + "id": "direct.group_by_conversations" + }, + { + "defaultMessage": "Advanced", + "id": "home.column_settings.advanced" + } + ], + "path": "app/javascript/flavours/glitch/features/direct_timeline/components/column_settings.json" + }, + { + "descriptors": [ + { + "defaultMessage": "Favourited by", + "id": "column.favourited_by" + } + ], + "path": "app/javascript/flavours/glitch/features/favourites/index.json" + }, + { + "descriptors": [ + { + "defaultMessage": "Misc", + "id": "column.heading" + }, + { + "defaultMessage": "Miscellaneous options", + "id": "column.subheading" + }, + { + "defaultMessage": "Extended information", + "id": "navigation_bar.info" + }, + { + "defaultMessage": "Show me around", + "id": "getting_started.onboarding" + }, + { + "defaultMessage": "Keyboard shortcuts", + "id": "navigation_bar.keyboard_shortcuts" + }, + { + "defaultMessage": "Featured users", + "id": "navigation_bar.featured_users" + } + ], + "path": "app/javascript/flavours/glitch/features/getting_started_misc/index.json" + }, + { + "descriptors": [ + { + "defaultMessage": "Navigation", + "id": "column_subheading.navigation" + }, + { + "defaultMessage": "App settings", + "id": "navigation_bar.app_settings" + }, + { + "defaultMessage": "Keyboard shortcuts", + "id": "navigation_bar.keyboard_shortcuts" + }, + { + "defaultMessage": "Lists", + "id": "column_subheading.lists" + }, + { + "defaultMessage": "Misc", + "id": "navigation_bar.misc" + } + ], + "path": "app/javascript/flavours/glitch/features/getting_started/index.json" + }, + { + "descriptors": [ + { + "defaultMessage": "Filter out by regular expressions", + "id": "home.column_settings.filter_regex" + }, + { + "defaultMessage": "Column settings", + "id": "home.settings" + }, + { + "defaultMessage": "Show DMs", + "id": "home.column_settings.show_direct" + }, + { + "defaultMessage": "Advanced", + "id": "home.column_settings.advanced" + } + ], + "path": "app/javascript/flavours/glitch/features/home_timeline/components/column_settings.json" + }, + { + "descriptors": [ + { + "defaultMessage": "to bookmark", + "id": "keyboard_shortcuts.bookmark" + }, + { + "defaultMessage": "to collapse/uncollapse toots", + "id": "keyboard_shortcuts.toggle_collapse" + }, + { + "defaultMessage": "to send toot using secondary privacy setting", + "id": "keyboard_shortcuts.secondary_toot" + } + ], + "path": "app/javascript/flavours/glitch/features/keyboard_shortcuts/index.json" + }, + { + "descriptors": [ + { + "defaultMessage": "General", + "id": "settings.general" + }, + { + "defaultMessage": "Compose box", + "id": "settings.compose_box_opts" + }, + { + "defaultMessage": "Content Warnings", + "id": "settings.content_warnings" + }, + { + "defaultMessage": "Filters", + "id": "settings.filters" + }, + { + "defaultMessage": "Collapsed toots", + "id": "settings.collapsed_statuses" + }, + { + "defaultMessage": "Media", + "id": "settings.media" + }, + { + "defaultMessage": "Preferences", + "id": "settings.preferences" + }, + { + "defaultMessage": "Close", + "id": "settings.close" + } + ], + "path": "app/javascript/flavours/glitch/features/local_settings/navigation/index.json" + }, + { + "descriptors": [ + { + "defaultMessage": "Auto", + "id": "layout.auto" + }, + { + "defaultMessage": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "id": "layout.hint.auto" + }, + { + "defaultMessage": "Desktop", + "id": "layout.desktop" + }, + { + "defaultMessage": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "id": "layout.hint.desktop" + }, + { + "defaultMessage": "Mobile", + "id": "layout.single" + }, + { + "defaultMessage": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "id": "layout.hint.single" + }, + { + "defaultMessage": "None", + "id": "settings.side_arm.none" + }, + { + "defaultMessage": "Keep its set privacy", + "id": "settings.side_arm_reply_mode.keep" + }, + { + "defaultMessage": "Copy privacy setting of the toot being replied to", + "id": "settings.side_arm_reply_mode.copy" + }, + { + "defaultMessage": "Restrict privacy setting to that of the toot being replied to", + "id": "settings.side_arm_reply_mode.restrict" + }, + { + "defaultMessage": "Regular expression", + "id": "settings.content_warnings.regexp" + }, + { + "defaultMessage": "Do not rewrite mentions", + "id": "settings.rewrite_mentions_no" + }, + { + "defaultMessage": "Rewrite with username and domain (when the account is remote)", + "id": "settings.rewrite_mentions_acct" + }, + { + "defaultMessage": "Rewrite with username", + "id": "settings.rewrite_mentions_username" + }, + { + "defaultMessage": "Left", + "id": "settings.pop_in_left" + }, + { + "defaultMessage": "Right", + "id": "settings.pop_in_right" + }, + { + "defaultMessage": "General", + "id": "settings.general" + }, + { + "defaultMessage": "Display an estimate of the reply count", + "id": "settings.show_reply_counter" + }, + { + "defaultMessage": "High color privacy icons", + "id": "settings.hicolor_privacy_icons" + }, + { + "defaultMessage": "Display privacy icons in bright and easily distinguishable colors", + "id": "settings.hicolor_privacy_icons.hint" + }, + { + "defaultMessage": "Show confirmation dialog before boosting toots lacking media descriptions", + "id": "settings.confirm_boost_missing_media_description" + }, + { + "defaultMessage": "Tag misleading links", + "id": "settings.tag_misleading_links" + }, + { + "defaultMessage": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "id": "settings.tag_misleading_links.hint" + }, + { + "defaultMessage": "Rewrite mentions in displayed statuses", + "id": "settings.rewrite_mentions" + }, + { + "defaultMessage": "Notifications options", + "id": "settings.notifications_opts" + }, + { + "defaultMessage": "Unread notifications badge", + "id": "settings.notifications.tab_badge" + }, + { + "defaultMessage": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "id": "settings.notifications.tab_badge.hint" + }, + { + "defaultMessage": "Unread notifications favicon badge", + "id": "settings.notifications.favicon_badge" + }, + { + "defaultMessage": "Add a badge for unread notifications to the favicon", + "id": "settings.notifications.favicon_badge.hint" + }, + { + "defaultMessage": "Toot icons", + "id": "settings.status_icons" + }, + { + "defaultMessage": "Language indicator", + "id": "settings.status_icons_language" + }, + { + "defaultMessage": "Reply indicator", + "id": "settings.status_icons_reply" + }, + { + "defaultMessage": "Local-only indicator", + "id": "settings.status_icons_local_only" + }, + { + "defaultMessage": "Media and poll indicators", + "id": "settings.status_icons_media" + }, + { + "defaultMessage": "Toot privacy indicator", + "id": "settings.status_icons_visibility" + }, + { + "defaultMessage": "Layout options", + "id": "settings.layout_opts" + }, + { + "defaultMessage": "Layout:", + "id": "settings.layout" + }, + { + "defaultMessage": "Wide view (Desktop mode only)", + "id": "settings.wide_view" + }, + { + "defaultMessage": "Stretches columns to better fill the available space.", + "id": "settings.wide_view_hint" + }, + { + "defaultMessage": "Compose box", + "id": "settings.compose_box_opts" + }, + { + "defaultMessage": "Always enable the Content Warning field", + "id": "settings.always_show_spoilers_field" + }, + { + "defaultMessage": "Prepend “re: ” to content warnings when replying", + "id": "settings.prepend_cw_re" + }, + { + "defaultMessage": "Pre-select usernames on reply", + "id": "settings.preselect_on_reply" + }, + { + "defaultMessage": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "id": "settings.preselect_on_reply_hint" + }, + { + "defaultMessage": "Show confirmation dialog before sending toots lacking media descriptions", + "id": "settings.confirm_missing_media_description" + }, + { + "defaultMessage": "Show confirmation dialog before overwriting the message being composed", + "id": "settings.confirm_before_clearing_draft" + }, + { + "defaultMessage": "Show content-type choice when authoring toots", + "id": "settings.show_content_type_choice" + }, + { + "defaultMessage": "Secondary toot button:", + "id": "settings.side_arm" + }, + { + "defaultMessage": "When replying to a toot, the secondary toot button should:", + "id": "settings.side_arm_reply_mode" + }, + { + "defaultMessage": "Content warnings", + "id": "settings.content_warnings" + }, + { + "defaultMessage": "Show/hide content of all copies at once", + "id": "settings.content_warnings_shared_state" + }, + { + "defaultMessage": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "id": "settings.content_warnings_shared_state_hint" + }, + { + "defaultMessage": "Display media attachments outside content warnings", + "id": "settings.content_warnings_media_outside" + }, + { + "defaultMessage": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "id": "settings.content_warnings_media_outside_hint" + }, + { + "defaultMessage": "Auto-unfolding options", + "id": "settings.content_warnings_unfold_opts" + }, + { + "defaultMessage": "Automatically unfold content-warnings", + "id": "settings.enable_content_warnings_auto_unfold" + }, + { + "defaultMessage": "This setting is now controlled from Mastodon's {settings_page_link}", + "id": "settings.deprecated_setting" + }, + { + "defaultMessage": "user preferences", + "id": "settings.shared_settings_link" + }, + { + "defaultMessage": "Content warnings to not automatically unfold:", + "id": "settings.content_warnings_filter" + }, + { + "defaultMessage": "Collapsed toots", + "id": "settings.collapsed_statuses" + }, + { + "defaultMessage": "Enable collapsed toots", + "id": "settings.enable_collapsed" + }, + { + "defaultMessage": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "id": "settings.enable_collapsed_hint" + }, + { + "defaultMessage": "Show action buttons in collapsed toots", + "id": "settings.show_action_bar" + }, + { + "defaultMessage": "Automatic collapsing", + "id": "settings.auto_collapse" + }, + { + "defaultMessage": "Everything", + "id": "settings.auto_collapse_all" + }, + { + "defaultMessage": "Notifications", + "id": "settings.auto_collapse_notifications" + }, + { + "defaultMessage": "Lengthy toots", + "id": "settings.auto_collapse_lengthy" + }, + { + "defaultMessage": "Boosts", + "id": "settings.auto_collapse_reblogs" + }, + { + "defaultMessage": "Replies", + "id": "settings.auto_collapse_replies" + }, + { + "defaultMessage": "Toots with media", + "id": "settings.auto_collapse_media" + }, + { + "defaultMessage": "Image backgrounds", + "id": "settings.image_backgrounds" + }, + { + "defaultMessage": "Give collapsed toots an image background", + "id": "settings.image_backgrounds_users" + }, + { + "defaultMessage": "Preview collapsed toot media", + "id": "settings.image_backgrounds_media" + }, + { + "defaultMessage": "If the post has any media attachment, use the first one as a background", + "id": "settings.image_backgrounds_media_hint" + }, + { + "defaultMessage": "Media", + "id": "settings.media" + }, + { + "defaultMessage": "Letterbox media", + "id": "settings.media_letterbox" + }, + { + "defaultMessage": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "id": "settings.media_letterbox_hint" + }, + { + "defaultMessage": "Full-width media previews", + "id": "settings.media_fullwidth" + }, + { + "defaultMessage": "Inline preview cards for external links", + "id": "settings.inline_preview_cards" + }, + { + "defaultMessage": "Reveal sensitive media behind a CW by default", + "id": "settings.media_reveal_behind_cw" + }, + { + "defaultMessage": "Enable pop-in player", + "id": "settings.pop_in_player" + }, + { + "defaultMessage": "Pop-in player position:", + "id": "settings.pop_in_position" + } + ], + "path": "app/javascript/flavours/glitch/features/local_settings/page/index.json" + }, + { + "descriptors": [ + { + "defaultMessage": "Mark for deletion", + "id": "notification.markForDeletion" + } + ], + "path": "app/javascript/flavours/glitch/features/notifications/components/overlay.json" + }, + { + "descriptors": [ + { + "defaultMessage": "Enter notification cleaning mode", + "id": "notification_purge.start" + } + ], + "path": "app/javascript/flavours/glitch/features/notifications/index.json" + }, + { + "descriptors": [ + { + "defaultMessage": "Featured accounts", + "id": "endorsed_accounts_editor.endorsed_accounts" + } + ], + "path": "app/javascript/flavours/glitch/features/pinned_accounts_editor/index.json" + }, + { + "descriptors": [ + { + "defaultMessage": "Filter out by regular expressions", + "id": "home.column_settings.filter_regex" + }, + { + "defaultMessage": "Show local-only toots", + "id": "community.column_settings.allow_local_only" + }, + { + "defaultMessage": "Advanced", + "id": "home.column_settings.advanced" + } + ], + "path": "app/javascript/flavours/glitch/features/public_timeline/components/column_settings.json" + }, + { + "descriptors": [ + { + "defaultMessage": "Boosted by", + "id": "column.reblogged_by" + } + ], + "path": "app/javascript/flavours/glitch/features/reblogs/index.json" + }, + { + "descriptors": [ + { + "defaultMessage": "This toot contains some media without description", + "id": "boost_modal.missing_description" + } + ], + "path": "app/javascript/flavours/glitch/features/ui/components/boost_modal.json" + }, + { + "descriptors": [ + { + "defaultMessage": "Do not ask for confirmation again", + "id": "confirmation_modal.do_not_ask_again" + } + ], + "path": "app/javascript/flavours/glitch/features/ui/components/confirmation_modal.json" + }, + { + "descriptors": [ + { + "defaultMessage": "Use Mastodon preferences", + "id": "confirmations.deprecated_settings.confirm" + }, + { + "defaultMessage": "Automatically unfold content-warnings", + "id": "settings.enable_content_warnings_auto_unfold" + }, + { + "defaultMessage": "Allow swiping to change columns (Mobile only)", + "id": "settings.swipe_to_change_columns" + }, + { + "defaultMessage": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "id": "confirmations.deprecated_settings.message" + }, + { + "defaultMessage": "App settings", + "id": "navigation_bar.app_settings" + } + ], + "path": "app/javascript/flavours/glitch/features/ui/components/deprecated_settings_modal.json" + }, + { + "descriptors": [ + { + "defaultMessage": "You can press {combo} to skip this next time", + "id": "favourite_modal.combo" + } + ], + "path": "app/javascript/flavours/glitch/features/ui/components/favourite_modal.json" + }, + { + "descriptors": [ + { + "defaultMessage": "App settings", + "id": "navigation_bar.app_settings" + } + ], + "path": "app/javascript/flavours/glitch/features/ui/components/navigation_panel.json" + }, + { + "descriptors": [ + { + "defaultMessage": "Welcome to {domain}!", + "id": "onboarding.page_one.welcome" + }, + { + "defaultMessage": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "id": "onboarding.page_one.federation" + }, + { + "defaultMessage": "You are on {domain}, so your full handle is {handle}", + "id": "onboarding.page_one.handle" + }, + { + "defaultMessage": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "id": "onboarding.page_two.compose" + }, + { + "defaultMessage": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "id": "onboarding.page_three.search" + }, + { + "defaultMessage": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "id": "onboarding.page_three.profile" + }, + { + "defaultMessage": "The home timeline shows posts from people you follow.", + "id": "onboarding.page_four.home" + }, + { + "defaultMessage": "The notifications column shows when someone interacts with you.", + "id": "onboarding.page_four.notifications" + }, + { + "defaultMessage": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "id": "onboarding.page_five.public_timelines" + }, + { + "defaultMessage": "Your instance's admin is {admin}.", + "id": "onboarding.page_six.admin" + }, + { + "defaultMessage": "Please read {domain}'s {guidelines}!", + "id": "onboarding.page_six.read_guidelines" + }, + { + "defaultMessage": "community guidelines", + "id": "onboarding.page_six.guidelines" + }, + { + "defaultMessage": "Almost done...", + "id": "onboarding.page_six.almost_done" + }, + { + "defaultMessage": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "id": "onboarding.page_six.github" + }, + { + "defaultMessage": "There are {apps} available for iOS, Android and other platforms.", + "id": "onboarding.page_six.apps_available" + }, + { + "defaultMessage": "mobile apps", + "id": "onboarding.page_six.various_app" + }, + { + "defaultMessage": "Bon Appetoot!", + "id": "onboarding.page_six.appetoot" + }, + { + "defaultMessage": "Next", + "id": "onboarding.next" + }, + { + "defaultMessage": "Done", + "id": "onboarding.done" + }, + { + "defaultMessage": "Skip", + "id": "onboarding.skip" + } + ], + "path": "app/javascript/flavours/glitch/features/ui/components/onboarding_modal.json" + }, + { + "descriptors": [ + { + "defaultMessage": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "id": "moved_to_warning" + } + ], + "path": "app/javascript/flavours/glitch/features/ui/index.json" + } +] \ No newline at end of file diff --git a/app/javascript/flavours/glitch/locales/el.js b/app/javascript/flavours/glitch/locales/el.js deleted file mode 100644 index 2d9bb829f..000000000 --- a/app/javascript/flavours/glitch/locales/el.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/el.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/el.json b/app/javascript/flavours/glitch/locales/el.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/el.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/en.js b/app/javascript/flavours/glitch/locales/en.js deleted file mode 100644 index fd3f17683..000000000 --- a/app/javascript/flavours/glitch/locales/en.js +++ /dev/null @@ -1,192 +0,0 @@ -import inherited from 'mastodon/locales/en.json'; - -const messages = { - 'getting_started.open_source_notice': 'Glitchsoc is free open source software forked from {Mastodon}. You can contribute or report issues on GitHub at {github}.', - 'layout.auto': 'Auto', - 'layout.current_is': 'Your current layout is:', - 'layout.desktop': 'Desktop', - 'layout.single': 'Mobile', - 'layout.hint.auto': 'Automatically chose layout based on “Enable advanced web interface” setting and screen size.', - 'layout.hint.desktop': 'Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.', - 'layout.hint.single': 'Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.', - 'navigation_bar.app_settings': 'App settings', - 'navigation_bar.misc': 'Misc', - 'navigation_bar.keyboard_shortcuts': 'Keyboard shortcuts', - 'navigation_bar.info': 'Extended information', - 'navigation_bar.featured_users': 'Featured users', - 'getting_started.onboarding': 'Show me around', - 'onboarding.next': 'Next', - 'onboarding.done': 'Done', - 'onboarding.skip': 'Skip', - 'onboarding.page_one.federation': '{domain} is an \'instance\' of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.', - 'onboarding.page_one.welcome': 'Welcome to {domain}!', - 'onboarding.page_one.handle': 'You are on {domain}, so your full handle is {handle}', - 'onboarding.page_two.compose': 'Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.', - 'onboarding.page_three.search': 'Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.', - 'onboarding.page_three.profile': 'Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.', - 'onboarding.page_four.home': 'The home timeline shows posts from people you follow.', - 'onboarding.page_four.notifications': 'The notifications column shows when someone interacts with you.', - 'onboarding.page_five.public_timelines': 'The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.', - 'onboarding.page_six.admin': 'Your instance\'s admin is {admin}.', - 'onboarding.page_six.read_guidelines': 'Please read {domain}\'s {guidelines}!', - 'onboarding.page_six.guidelines': 'community guidelines', - 'onboarding.page_six.almost_done': 'Almost done...', - 'onboarding.page_six.github': '{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}, and is compatible with any Mastodon instance or app. Glitchsoc is entirely free and open-source. You can report bugs, request features, or contribute to the code on {github}.', - 'onboarding.page_six.apps_available': 'There are {apps} available for iOS, Android and other platforms.', - 'onboarding.page_six.various_app': 'mobile apps', - 'onboarding.page_six.appetoot': 'Bon Appetoot!', - 'settings.auto_collapse': 'Automatic collapsing', - 'settings.auto_collapse_all': 'Everything', - 'settings.auto_collapse_lengthy': 'Lengthy toots', - 'settings.auto_collapse_media': 'Toots with media', - 'settings.auto_collapse_notifications': 'Notifications', - 'settings.auto_collapse_reblogs': 'Boosts', - 'settings.auto_collapse_replies': 'Replies', - 'settings.show_action_bar': 'Show action buttons in collapsed toots', - 'settings.close': 'Close', - 'settings.collapsed_statuses': 'Collapsed toots', - 'settings.enable_collapsed': 'Enable collapsed toots', - 'settings.enable_collapsed_hint': 'Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature', - 'settings.general': 'General', - 'settings.compose_box_opts': 'Compose box', - 'settings.side_arm': 'Secondary toot button:', - 'settings.side_arm.none': 'None', - 'settings.side_arm_reply_mode': 'When replying to a toot, the secondary toot button should:', - 'settings.side_arm_reply_mode.keep': 'Keep its set privacy', - 'settings.side_arm_reply_mode.copy': 'Copy privacy setting of the toot being replied to', - 'settings.side_arm_reply_mode.restrict': 'Restrict privacy setting to that of the toot being replied to', - 'settings.always_show_spoilers_field': 'Always enable the Content Warning field', - 'settings.prepend_cw_re': 'Prepend “re: ” to content warnings when replying', - 'settings.preselect_on_reply': 'Pre-select usernames on reply', - 'settings.preselect_on_reply_hint': 'When replying to a conversation with multiple participants, pre-select usernames past the first', - 'settings.confirm_missing_media_description': 'Show confirmation dialog before sending toots lacking media descriptions', - 'settings.confirm_before_clearing_draft': 'Show confirmation dialog before overwriting the message being composed', - 'settings.show_content_type_choice': 'Show content-type choice when authoring toots', - 'settings.content_warnings': 'Content Warnings', - 'settings.content_warnings.regexp': 'Regular expression', - 'settings.content_warnings_shared_state': 'Show/hide content of all copies at once', - 'settings.content_warnings_shared_state_hint': 'Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW', - 'settings.content_warnings_media_outside': 'Display media attachments outside content warnings', - 'settings.content_warnings_media_outside_hint': 'Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments', - 'settings.content_warnings_unfold_opts': 'Auto-unfolding options', - 'settings.enable_content_warnings_auto_unfold': 'Automatically unfold content-warnings', - 'settings.deprecated_setting': 'This setting is now controlled from Mastodon\'s {settings_page_link}', - 'settings.shared_settings_link': 'user preferences', - 'settings.content_warnings_filter': 'Content warnings to not automatically unfold:', - 'settings.layout_opts': 'Layout options', - 'settings.rewrite_mentions_no': 'Do not rewrite mentions', - 'settings.rewrite_mentions_acct': 'Rewrite with username and domain (when the account is remote)', - 'settings.rewrite_mentions_username': 'Rewrite with username', - 'settings.show_reply_counter': 'Display an estimate of the reply count', - 'settings.hicolor_privacy_icons': 'High color privacy icons', - 'settings.hicolor_privacy_icons.hint': 'Display privacy icons in bright and easily distinguishable colors', - 'settings.confirm_boost_missing_media_description': 'Show confirmation dialog before boosting toots lacking media descriptions', - 'settings.tag_misleading_links': 'Tag misleading links', - 'settings.tag_misleading_links.hint': 'Add a visual indication with the link target host to every link not mentioning it explicitly', - 'settings.rewrite_mentions': 'Rewrite mentions in displayed statuses', - 'settings.notifications_opts': 'Notifications options', - 'settings.notifications.tab_badge': 'Unread notifications badge', - 'settings.notifications.tab_badge.hint': 'Display a badge for unread notifications in the column icons when the notifications column isn\'t open', - 'settings.notifications.favicon_badge': 'Unread notifications favicon badge', - 'settings.notifications.favicon_badge.hint': 'Add a badge for unread notifications to the favicon', - 'settings.status_icons': 'Toot icons', - 'settings.status_icons_language': 'Language indicator', - 'settings.status_icons_reply': 'Reply indicator', - 'settings.status_icons_local_only': 'Local-only indicator', - 'settings.status_icons_media': 'Media and poll indicators', - 'settings.status_icons_visibility': 'Toot privacy indicator', - 'settings.layout': 'Layout:', - 'settings.image_backgrounds': 'Image backgrounds', - 'settings.image_backgrounds_media': 'Preview collapsed toot media', - 'settings.image_backgrounds_media_hint': 'If the post has any media attachment, use the first one as a background', - 'settings.image_backgrounds_users': 'Give collapsed toots an image background', - 'settings.media': 'Media', - 'settings.media_letterbox': 'Letterbox media', - 'settings.media_letterbox_hint': 'Scale down and letterbox media to fill the image containers instead of stretching and cropping them', - 'settings.media_fullwidth': 'Full-width media previews', - 'settings.inline_preview_cards': 'Inline preview cards for external links', - 'settings.media_reveal_behind_cw': 'Reveal sensitive media behind a CW by default', - 'settings.pop_in_player': 'Enable pop-in player', - 'settings.pop_in_position': 'Pop-in player position:', - 'settings.pop_in_left': 'Left', - 'settings.pop_in_right': 'Right', - 'settings.preferences': 'User preferences', - 'settings.wide_view': 'Wide view (Desktop mode only)', - 'settings.wide_view_hint': 'Stretches columns to better fill the available space.', - 'settings.navbar_under': 'Navbar at the bottom (Mobile only)', - 'status.collapse': 'Collapse', - 'status.uncollapse': 'Uncollapse', - 'status.in_reply_to': 'This toot is a reply', - 'status.has_preview_card': 'Features an attached preview card', - 'status.has_pictures': 'Features attached pictures', - 'status.is_poll': 'This toot is a poll', - 'status.has_video': 'Features attached videos', - 'status.has_audio': 'Features attached audio files', - 'status.local_only': 'Only visible from your instance', - - 'content_type.change': 'Content type', - 'compose.content-type.html': 'HTML', - 'compose.content-type.markdown': 'Markdown', - 'compose.content-type.plain': 'Plain text', - - 'compose_form.poll.single_choice': 'Allow one choice', - 'compose_form.poll.multiple_choices': 'Allow multiple choices', - 'compose_form.spoiler': 'Hide text behind warning', - - 'column.toot': 'Toots and replies', - 'column_header.profile': 'Profile', - 'column.heading': 'Misc', - 'column.subheading': 'Miscellaneous options', - 'column_subheading.navigation': 'Navigation', - 'column_subheading.lists': 'Lists', - - 'media_gallery.sensitive': 'Sensitive', - - 'favourite_modal.combo': 'You can press {combo} to skip this next time', - - 'home.column_settings.show_direct': 'Show DMs', - - 'notification.markForDeletion': 'Mark for deletion', - 'notifications.clear': 'Clear all my notifications', - 'notifications.marked_clear_confirmation': 'Are you sure you want to permanently clear all selected notifications?', - 'notifications.marked_clear': 'Clear selected notifications', - - 'notification_purge.start': 'Enter notification cleaning mode', - 'notification_purge.btn_all': 'Select\nall', - 'notification_purge.btn_none': 'Select\nnone', - 'notification_purge.btn_invert': 'Invert\nselection', - 'notification_purge.btn_apply': 'Clear\nselected', - - 'compose.attach.upload': 'Upload a file', - 'compose.attach.doodle': 'Draw something', - 'compose.attach': 'Attach...', - - 'advanced_options.local-only.short': 'Local-only', - 'advanced_options.local-only.long': 'Do not post to other instances', - 'advanced_options.local-only.tooltip': 'This post is local-only', - 'advanced_options.icon_title': 'Advanced options', - 'advanced_options.threaded_mode.short': 'Threaded mode', - 'advanced_options.threaded_mode.long': 'Automatically opens a reply on posting', - 'advanced_options.threaded_mode.tooltip': 'Threaded mode enabled', - - 'endorsed_accounts_editor.endorsed_accounts': 'Featured accounts', - - 'account.add_account_note': 'Add note for @{name}', - 'account_note.cancel': 'Cancel', - 'account_note.save': 'Save', - 'account_note.edit': 'Edit', - 'account_note.glitch_placeholder': 'No comment provided', - 'account.joined': 'Joined {date}', - 'account.follows': 'Follows', - - 'home.column_settings.advanced': 'Advanced', - 'home.column_settings.filter_regex': 'Filter out by regular expressions', - 'direct.group_by_conversations': 'Group by conversation', - 'community.column_settings.allow_local_only': 'Show local-only toots', - - 'keyboard_shortcuts.bookmark': 'to bookmark', - 'keyboard_shortcuts.toggle_collapse': 'to collapse/uncollapse toots', - 'keyboard_shortcuts.secondary_toot': 'to send toot using secondary privacy setting', -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/en.json b/app/javascript/flavours/glitch/locales/en.json new file mode 100644 index 000000000..eb99fc64d --- /dev/null +++ b/app/javascript/flavours/glitch/locales/en.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an 'instance' of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}, and is compatible with any Mastodon instance or app. Glitchsoc is entirely free and open-source. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content Warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "User preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/eo.js b/app/javascript/flavours/glitch/locales/eo.js deleted file mode 100644 index 04192f506..000000000 --- a/app/javascript/flavours/glitch/locales/eo.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/eo.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/eo.json b/app/javascript/flavours/glitch/locales/eo.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/eo.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/es-AR.js b/app/javascript/flavours/glitch/locales/es-AR.js deleted file mode 100644 index 0dffabcd4..000000000 --- a/app/javascript/flavours/glitch/locales/es-AR.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/es-AR.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/es-AR.json b/app/javascript/flavours/glitch/locales/es-AR.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/es-AR.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/es-MX.js b/app/javascript/flavours/glitch/locales/es-MX.js deleted file mode 100644 index eaefa20ef..000000000 --- a/app/javascript/flavours/glitch/locales/es-MX.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/es-MX.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/es-MX.json b/app/javascript/flavours/glitch/locales/es-MX.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/es-MX.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/es.js b/app/javascript/flavours/glitch/locales/es.js deleted file mode 100644 index f22062977..000000000 --- a/app/javascript/flavours/glitch/locales/es.js +++ /dev/null @@ -1,119 +0,0 @@ -import inherited from 'mastodon/locales/es.json'; - -const messages = { - 'advanced_options.icon_title': 'Opciones avanzadas', - 'advanced_options.local-only.long': 'No publicar a otras instancias', - 'advanced_options.local-only.short': 'Local', - 'advanced_options.local-only.tooltip': 'Este toot es local', - 'advanced_options.threaded_mode.long': 'Al publicar abre automáticamente una respuesta', - 'advanced_options.threaded_mode.short': 'Modo hilo', - 'advanced_options.threaded_mode.tooltip': 'Modo hilo habilitado', - 'compose.attach.doodle': 'Dibujar algo', - 'compose.attach.upload': 'Subir un archivo', - 'compose.attach': 'Adjuntar...', - 'favourite_modal.combo': 'Puedes presionar {combo} para omitir esto la próxima vez', - 'getting_started.onboarding': 'Paseo inicial', - 'getting_started.open_source_notice': 'Glitchsoc es software libre y gratuito bifurcado de {Mastodon}. Puedes contribuir o reportar errores en GitHub en {github}.', - 'home.column_settings.show_direct': 'Mostrar mensajes directos', - 'layout.auto': 'Automático', - 'layout.current_is': 'Tu diseño actual es:', - 'layout.desktop': 'Escritorio', - 'layout.hint.auto': 'Seleccionar un diseño automáticamente basado en "Habilitar interface web avanzada" y tamaño de pantalla', - 'layout.hint.desktop': 'Utiliza el diseño multi-columna sin importar "Habilitar interface web avanzada" o tamaño de pantalla', - 'layout.hint.single': 'Utiliza el diseño de una columna sin importar "Habilitar interface web avanzada" o tamaño de pantalla', - 'layout.mobile': 'Móvil', - 'media_gallery.sensitive': 'Sensible', - 'navigation_bar.app_settings': 'Ajustes de aplicación', - 'notification_purge.btn_all': 'Seleccionar\ntodo', - 'notification_purge.btn_apply': 'Borrar\nselección', - 'notification_purge.btn_invert': 'Invertir\nselección', - 'notification_purge.btn_none': 'Seleccionar\nnada', - 'notification.markForDeletion': 'Marcar para borrar', - 'notifications.clear': 'Limpiar notificaciones', - 'notifications.marked_clear_confirmation': '¿Deseas borrar permanentemente todas las notificaciones seleccionadas?', - 'notifications.marked_clear': 'Limpiar notificaciones seleccionadas', - 'onboarding.page_one.federation': '{domain} es una "instancia" de Mastodon. Mastodon es una red de servidores independientes que se unen para crear una red social más grande. A estos servidores los llamamos instancias.', - 'onboarding.page_one.welcome': '¡Bienvenidx a {domain}!', - 'onboarding.page_six.github': '{domain} usa Glitchsoc. Glitchsoc es una bifurcación {fork} amigable de {Mastodon}, y es compatible con cualquier instancia o aplicación de Mastodon. Glitchsoc es completamente gratuito y de código abierto. Puedes reportar errores, solicitar funciones o contribuir al código en {github}.', - 'settings.always_show_spoilers_field': 'Siempre mostrar el campo de advertencia de contenido', - 'settings.auto_collapse_all': 'Todo', - 'settings.auto_collapse_lengthy': 'Toots largos', - 'settings.auto_collapse_media': 'Toots con medios', - 'settings.auto_collapse_notifications': 'Notificaciones', - 'settings.auto_collapse_reblogs': 'Retoots', - 'settings.auto_collapse_replies': 'Respuestas', - 'settings.auto_collapse': 'Colapsar automáticamente', - 'settings.close': 'Cerrar', - 'settings.collapsed_statuses': 'Toots colapsados', - 'settings.compose_box_opts': 'Cuadro de redacción', - 'settings.confirm_before_clearing_draft': 'Mostrar diálogo de confirmación antes de sobreescribir un mensaje estabas escribiendo', - 'settings.confirm_boost_missing_media_description': 'Mostrar diálogo de confirmación antes de retootear publicaciones con medios sin descripción', - 'settings.confirm_missing_media_description': 'Mostrar diálogo de confirmación antes de publicar toots con medios sin descripción', - 'settings.content_warnings_filter': 'No descolapsar estas advertencias de contenido:', - 'settings.content_warnings.regexp': 'Regexp (expresión regular)', - 'settings.content_warnings': 'Advertencias de contenido', - 'settings.enable_collapsed': 'Habilitar toots colapsados', - 'settings.enable_content_warnings_auto_unfold': 'Descolapsar automáticamente advertencias de contenido', - 'settings.filtering_behavior.cw': 'Mostrar el toot y agregar las palabras filtradas a la advertencia de contenido', - 'settings.filtering_behavior.drop': 'Ocultar toots filtrados por completo', - 'settings.filtering_behavior.hide': 'Mostrar "Filtrado" y agregar un botón para saber por qué', - 'settings.filtering_behavior.upstream': 'Mostrar "Filtrado"', - 'settings.filtering_behavior': 'Configuración de filtros', - 'settings.filters': 'Filtros', - 'settings.general': 'General', - 'settings.hicolor_privacy_icons': 'Íconos de privacidad más visibles', - 'settings.image_backgrounds_media': 'Vista previa de medios de toots colapsados', - 'settings.image_backgrounds_users': 'Darle fondo de imagen a toots colapsados', - 'settings.image_backgrounds': 'Fondos de imágenes', - 'settings.inline_preview_cards': 'Vista previa para enlaces externos', - 'settings.layout_opts': 'Opciones de diseño', - 'settings.layout': 'Diseño', - 'settings.media_fullwidth': 'Ancho completo al mostrar medios ', - 'settings.media_letterbox_hint': 'Escalar medios para que llenen el espacio del contenedor sin cambiar sus proporciones sin recortarlos', - 'settings.media_letterbox': 'Mantener proporciones al mostrar medios', - 'settings.media_reveal_behind_cw': 'Siempre mostrar medios sensibles dentro de las advertencias de contenido', - 'settings.media': 'Medios', - 'settings.navbar_under': 'Barra de navegación en la parte inferior (solo móvil)', - 'settings.notifications_opts': 'Opciones de notificaciones', - 'settings.notifications.favicon_badge.hint': 'Muestra un marcador de notificaciones sin leer en el favicon', - 'settings.notifications.favicon_badge': 'Marcador de notificaciones en el favicon', - 'settings.notifications.tab_badge.hint': 'Muestra un marcador de notificaciones sin leer en el ícono de notificaciones cuando dicha columna no está abierta', - 'settings.notifications.tab_badge': 'Marcador de notificaciones no leídas', - 'settings.preferences': 'Preferencias de usuarix', - 'settings.prepend_cw_re': 'Anteponer "re: " a las advertencias de contenido al responder', - 'settings.preselect_on_reply_hint': 'Al responder a conversaciones con múltiples participantes, preselecciona los nombres de usuarix subsecuentes del/la primerx', - 'settings.preselect_on_reply': 'Preseleccionar nombres de usuarix al responder', - 'settings.rewrite_mentions_acct': 'Reescribir con nombre de usuarix y dominio (para cuentas remotas)', - 'settings.rewrite_mentions_no': 'No reescribir menciones', - 'settings.rewrite_mentions_username': 'Reescribir con nombre de usuarix', - 'settings.rewrite_mentions': 'Reescribir menciones in publicaciones mostradas', - 'settings.show_action_bar': 'Mostrar botones de acción en toots colapsados', - 'settings.show_content_type_choice': 'Mostrar selección de tipo de contenido al crear toots', - 'settings.show_reply_counter': 'Mostrar un conteo estimado de respuestas', - 'settings.side_arm_reply_mode.copy': 'Copiar opción de privacidad del toot al que estás respondiendo', - 'settings.side_arm_reply_mode.keep': 'Conservar opción de privacidad', - 'settings.side_arm_reply_mode.restrict': 'Restringir la opción de privacidad a la misma del toot al que estás respondiendo', - 'settings.side_arm_reply_mode': 'Al responder a un toot, el botón de toot secundario debe:', - 'settings.side_arm.none': 'Ninguno', - 'settings.side_arm': 'Botón secundario:', - 'settings.swipe_to_change_columns': 'Permitir deslizar para cambiar columnas (Sólo en móvil)', - 'settings.tag_misleading_links.hint': 'Añadir una indicación visual indicando el destino de los enlace que no los mencionen explícitamente', - 'settings.tag_misleading_links': 'Marcar enlaces engañosos', - 'settings.wide_view': 'Vista amplia (solo modo de escritorio)', - 'status.collapse': 'Colapsar', - 'status.uncollapse': 'Descolapsar', - 'confirmations.unfilter': 'Información del toot filtrado', - 'confirmations.unfilter.author': 'Publicado por', - 'confirmations.unfilter.filters': 'Coincidencia con {count, plural, one {filtro} other {filtros}}', - 'confirmations.unfilter.edit_filter': 'Editar filtro', - 'confirmations.unfilter.confirm': 'Mostrar', - 'confirmations.delete.confirm': 'Borrar', - 'confirmations.delete.message': 'Por favor confirma borrado', - 'confirmations.redraft.confirm': 'Borrar y volver a borrador', - 'confirmations.redraft.message': '¿Borrar y volver a borrador? Perderás todas las respuestas, retoots y favoritos asociados, y las respuestas a la publicación original quedarán huérfanos.', - 'confirmations.reply.confirm': 'Responder', - 'confirmations.reply.message': 'Responder no sobreescribirá el mensaje que estás escibiendo actualmente. ¿Deseas continuar?', - 'status.show_filter_reason': '(mostrar por qué)', -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/es.json b/app/javascript/flavours/glitch/locales/es.json new file mode 100644 index 000000000..d032c8d53 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/es.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Opciones avanzadas", + "advanced_options.local-only.long": "No publicar a otras instancias", + "advanced_options.local-only.short": "Local", + "advanced_options.local-only.tooltip": "Este toot es local", + "advanced_options.threaded_mode.long": "Al publicar abre automáticamente una respuesta", + "advanced_options.threaded_mode.short": "Modo hilo", + "advanced_options.threaded_mode.tooltip": "Modo hilo habilitado", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Adjuntar...", + "compose.attach.doodle": "Dibujar algo", + "compose.attach.upload": "Subir un archivo", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Publicado por", + "confirmations.unfilter.confirm": "Mostrar", + "confirmations.unfilter.edit_filter": "Editar filtro", + "confirmations.unfilter.filters": "Coincidencia con {count, plural, one {filtro} other {filtros}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "Puedes presionar {combo} para omitir esto la próxima vez", + "getting_started.onboarding": "Paseo inicial", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Mostrar mensajes directos", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Automático", + "layout.desktop": "Escritorio", + "layout.hint.auto": "Seleccionar un diseño automáticamente basado en \"Habilitar interface web avanzada\" y tamaño de pantalla", + "layout.hint.desktop": "Utiliza el diseño multi-columna sin importar \"Habilitar interface web avanzada\" o tamaño de pantalla", + "layout.hint.single": "Utiliza el diseño de una columna sin importar \"Habilitar interface web avanzada\" o tamaño de pantalla", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensible", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "Ajustes de aplicación", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Marcar para borrar", + "notification_purge.btn_all": "Seleccionar\ntodo", + "notification_purge.btn_apply": "Borrar\nselección", + "notification_purge.btn_invert": "Invertir\nselección", + "notification_purge.btn_none": "Seleccionar\nnada", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Limpiar notificaciones seleccionadas", + "notifications.marked_clear_confirmation": "¿Deseas borrar permanentemente todas las notificaciones seleccionadas?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} es una \"instancia\" de Mastodon. Mastodon es una red de servidores independientes que se unen para crear una red social más grande. A estos servidores los llamamos instancias.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "¡Bienvenidx a {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} usa Glitchsoc. Glitchsoc es una bifurcación {fork} amigable de {Mastodon}, y es compatible con cualquier instancia o aplicación de Mastodon. Glitchsoc es completamente gratuito y de código abierto. Puedes reportar errores, solicitar funciones o contribuir al código en {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Siempre mostrar el campo de advertencia de contenido", + "settings.auto_collapse": "Colapsar automáticamente", + "settings.auto_collapse_all": "Todo", + "settings.auto_collapse_lengthy": "Toots largos", + "settings.auto_collapse_media": "Toots con medios", + "settings.auto_collapse_notifications": "Notificaciones", + "settings.auto_collapse_reblogs": "Retoots", + "settings.auto_collapse_replies": "Respuestas", + "settings.close": "Cerrar", + "settings.collapsed_statuses": "Toots colapsados", + "settings.compose_box_opts": "Cuadro de redacción", + "settings.confirm_before_clearing_draft": "Mostrar diálogo de confirmación antes de sobreescribir un mensaje estabas escribiendo", + "settings.confirm_boost_missing_media_description": "Mostrar diálogo de confirmación antes de retootear publicaciones con medios sin descripción", + "settings.confirm_missing_media_description": "Mostrar diálogo de confirmación antes de publicar toots con medios sin descripción", + "settings.content_warnings": "Advertencias de contenido", + "settings.content_warnings.regexp": "Regexp (expresión regular)", + "settings.content_warnings_filter": "No descolapsar estas advertencias de contenido:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Habilitar toots colapsados", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Descolapsar automáticamente advertencias de contenido", + "settings.filters": "Filtros", + "settings.general": "General", + "settings.hicolor_privacy_icons": "Íconos de privacidad más visibles", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Fondos de imágenes", + "settings.image_backgrounds_media": "Vista previa de medios de toots colapsados", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Darle fondo de imagen a toots colapsados", + "settings.inline_preview_cards": "Vista previa para enlaces externos", + "settings.layout": "Diseño", + "settings.layout_opts": "Opciones de diseño", + "settings.media": "Medios", + "settings.media_fullwidth": "Ancho completo al mostrar medios ", + "settings.media_letterbox": "Mantener proporciones al mostrar medios", + "settings.media_letterbox_hint": "Escalar medios para que llenen el espacio del contenedor sin cambiar sus proporciones sin recortarlos", + "settings.media_reveal_behind_cw": "Siempre mostrar medios sensibles dentro de las advertencias de contenido", + "settings.notifications.favicon_badge": "Marcador de notificaciones en el favicon", + "settings.notifications.favicon_badge.hint": "Muestra un marcador de notificaciones sin leer en el favicon", + "settings.notifications.tab_badge": "Marcador de notificaciones no leídas", + "settings.notifications.tab_badge.hint": "Muestra un marcador de notificaciones sin leer en el ícono de notificaciones cuando dicha columna no está abierta", + "settings.notifications_opts": "Opciones de notificaciones", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferencias de usuarix", + "settings.prepend_cw_re": "Anteponer \"re: \" a las advertencias de contenido al responder", + "settings.preselect_on_reply": "Preseleccionar nombres de usuarix al responder", + "settings.preselect_on_reply_hint": "Al responder a conversaciones con múltiples participantes, preselecciona los nombres de usuarix subsecuentes del/la primerx", + "settings.rewrite_mentions": "Reescribir menciones in publicaciones mostradas", + "settings.rewrite_mentions_acct": "Reescribir con nombre de usuarix y dominio (para cuentas remotas)", + "settings.rewrite_mentions_no": "No reescribir menciones", + "settings.rewrite_mentions_username": "Reescribir con nombre de usuarix", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Mostrar botones de acción en toots colapsados", + "settings.show_content_type_choice": "Mostrar selección de tipo de contenido al crear toots", + "settings.show_reply_counter": "Mostrar un conteo estimado de respuestas", + "settings.side_arm": "Botón secundario:", + "settings.side_arm.none": "Ninguno", + "settings.side_arm_reply_mode": "Al responder a un toot, el botón de toot secundario debe:", + "settings.side_arm_reply_mode.copy": "Copiar opción de privacidad del toot al que estás respondiendo", + "settings.side_arm_reply_mode.keep": "Conservar opción de privacidad", + "settings.side_arm_reply_mode.restrict": "Restringir la opción de privacidad a la misma del toot al que estás respondiendo", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Permitir deslizar para cambiar columnas (Sólo en móvil)", + "settings.tag_misleading_links": "Marcar enlaces engañosos", + "settings.tag_misleading_links.hint": "Añadir una indicación visual indicando el destino de los enlace que no los mencionen explícitamente", + "settings.wide_view": "Vista amplia (solo modo de escritorio)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Colapsar", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Descolapsar", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/et.js b/app/javascript/flavours/glitch/locales/et.js deleted file mode 100644 index e3ea6b2a9..000000000 --- a/app/javascript/flavours/glitch/locales/et.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/et.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/et.json b/app/javascript/flavours/glitch/locales/et.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/et.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/eu.js b/app/javascript/flavours/glitch/locales/eu.js deleted file mode 100644 index 946410b67..000000000 --- a/app/javascript/flavours/glitch/locales/eu.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/eu.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/eu.json b/app/javascript/flavours/glitch/locales/eu.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/eu.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/fa.js b/app/javascript/flavours/glitch/locales/fa.js deleted file mode 100644 index d82461a1a..000000000 --- a/app/javascript/flavours/glitch/locales/fa.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/fa.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/fa.json b/app/javascript/flavours/glitch/locales/fa.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/fa.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/fi.js b/app/javascript/flavours/glitch/locales/fi.js deleted file mode 100644 index 11c3cd082..000000000 --- a/app/javascript/flavours/glitch/locales/fi.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/fi.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/fi.json b/app/javascript/flavours/glitch/locales/fi.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/fi.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/fr.js b/app/javascript/flavours/glitch/locales/fr.js deleted file mode 100644 index 8562f5594..000000000 --- a/app/javascript/flavours/glitch/locales/fr.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/fr.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/fr.json b/app/javascript/flavours/glitch/locales/fr.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/fr.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/ga.js b/app/javascript/flavours/glitch/locales/ga.js deleted file mode 100644 index af2846ff8..000000000 --- a/app/javascript/flavours/glitch/locales/ga.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/ga.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/ga.json b/app/javascript/flavours/glitch/locales/ga.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/ga.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/gd.js b/app/javascript/flavours/glitch/locales/gd.js deleted file mode 100644 index 604ee86dc..000000000 --- a/app/javascript/flavours/glitch/locales/gd.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/gd.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/gd.json b/app/javascript/flavours/glitch/locales/gd.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/gd.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/gl.js b/app/javascript/flavours/glitch/locales/gl.js deleted file mode 100644 index 6a9140b1a..000000000 --- a/app/javascript/flavours/glitch/locales/gl.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/gl.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/gl.json b/app/javascript/flavours/glitch/locales/gl.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/gl.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/he.js b/app/javascript/flavours/glitch/locales/he.js deleted file mode 100644 index 99516ee0c..000000000 --- a/app/javascript/flavours/glitch/locales/he.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/he.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/he.json b/app/javascript/flavours/glitch/locales/he.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/he.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/hi.js b/app/javascript/flavours/glitch/locales/hi.js deleted file mode 100644 index 1a569495f..000000000 --- a/app/javascript/flavours/glitch/locales/hi.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/hi.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/hi.json b/app/javascript/flavours/glitch/locales/hi.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/hi.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/hr.js b/app/javascript/flavours/glitch/locales/hr.js deleted file mode 100644 index dbf9b4b9f..000000000 --- a/app/javascript/flavours/glitch/locales/hr.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/hr.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/hr.json b/app/javascript/flavours/glitch/locales/hr.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/hr.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/hu.js b/app/javascript/flavours/glitch/locales/hu.js deleted file mode 100644 index 1f0849af3..000000000 --- a/app/javascript/flavours/glitch/locales/hu.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/hu.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/hu.json b/app/javascript/flavours/glitch/locales/hu.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/hu.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/hy.js b/app/javascript/flavours/glitch/locales/hy.js deleted file mode 100644 index 96f6a4d19..000000000 --- a/app/javascript/flavours/glitch/locales/hy.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/hy.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/hy.json b/app/javascript/flavours/glitch/locales/hy.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/hy.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/id.js b/app/javascript/flavours/glitch/locales/id.js deleted file mode 100644 index 07e5f7e56..000000000 --- a/app/javascript/flavours/glitch/locales/id.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/id.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/id.json b/app/javascript/flavours/glitch/locales/id.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/id.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/io.js b/app/javascript/flavours/glitch/locales/io.js deleted file mode 100644 index 74ea6fae6..000000000 --- a/app/javascript/flavours/glitch/locales/io.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/io.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/io.json b/app/javascript/flavours/glitch/locales/io.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/io.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/is.js b/app/javascript/flavours/glitch/locales/is.js deleted file mode 100644 index b05a08ad0..000000000 --- a/app/javascript/flavours/glitch/locales/is.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/is.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/is.json b/app/javascript/flavours/glitch/locales/is.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/is.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/it.js b/app/javascript/flavours/glitch/locales/it.js deleted file mode 100644 index 90f543093..000000000 --- a/app/javascript/flavours/glitch/locales/it.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/it.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/it.json b/app/javascript/flavours/glitch/locales/it.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/it.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/ja.js b/app/javascript/flavours/glitch/locales/ja.js deleted file mode 100644 index 52aeed3d6..000000000 --- a/app/javascript/flavours/glitch/locales/ja.js +++ /dev/null @@ -1,158 +0,0 @@ -import inherited from 'mastodon/locales/ja.json'; - -const messages = { - 'getting_started.open_source_notice': 'Glitchsocは{Mastodon}によるフリーなオープンソースソフトウェアです。誰でもGitHub({github})から開発に參加したり、問題を報告したりできます。', - 'layout.auto': '自動', - 'layout.current_is': 'あなたの現在のレイアウト:', - 'layout.desktop': 'デスクトップ', - 'layout.single': 'モバイル', - 'navigation_bar.app_settings': 'アプリ設定', - 'navigation_bar.featured_users': '紹介しているアカウント', - 'navigation_bar.misc': 'その他', - 'getting_started.onboarding': '解説を表示', - 'onboarding.page_one.federation': '{domain}はMastodonのインスタンスです。Mastodonとは、独立したサーバが連携して作るソーシャルネットワークです。これらのサーバーをインスタンスと呼びます。', - 'onboarding.page_one.welcome': '{domain}へようこそ!', - 'onboarding.page_six.github': '{domain}はGlitchsocを使用しています。Glitchsocは{Mastodon}のフレンドリーな{fork}で、どんなMastodonアプリやインスタンスとも互換性があります。Glitchsocは完全に無料で、オープンソースです。{github}でバグ報告や機能要望あるいは貢獻をすることが可能です。', - 'settings.always_show_spoilers_field': '常にコンテンツワーニング設定を表示する(指定がない場合は通常投稿)', - 'settings.auto_collapse': '自動折りたたみ', - 'settings.auto_collapse_all': 'すべて', - 'settings.auto_collapse_lengthy': '長いトゥート', - 'settings.auto_collapse_media': 'メディア付きトゥート', - 'settings.auto_collapse_notifications': '通知', - 'settings.auto_collapse_reblogs': 'ブースト', - 'settings.auto_collapse_replies': '返信', - 'settings.close': '閉じる', - 'settings.collapsed_statuses': 'トゥート折りたたみ', - 'settings.confirm_missing_media_description': '画像に対する補助記載がないときに投稿前の警告を表示する', - 'settings.content_warnings': 'コンテンツワーニング', - 'settings.content_warnings_filter': '説明に指定した文字が含まれているものを自動で展開しないようにする', - 'settings.content_warnings.regexp': '正規表現', - 'settings.enable_collapsed': 'トゥート折りたたみを有効にする', - 'settings.enable_content_warnings_auto_unfold': 'コンテンツワーニング指定されている投稿を常に表示する', - 'settings.general': '一般', - 'settings.image_backgrounds': '画像背景', - 'settings.image_backgrounds_media': '折りたまれたメディア付きトゥートをプレビュー', - 'settings.image_backgrounds_users': '折りたまれたトゥートの背景を変更する', - 'settings.media': 'メディア', - 'settings.media_letterbox': 'メディアをレターボックス式で表示', - 'settings.media_fullwidth': '全幅メディアプレビュー', - 'settings.navbar_under': 'ナビを画面下部に移動させる(モバイル レイアウトのみ)', - 'settings.notifications.favicon_badge': '通知アイコンに未読件数を表示する', - 'settings.notifications_opts': '通知の設定', - 'settings.notifications.tab_badge': '未読の通知があるとき、通知アイコンにマークを表示する', - 'settings.preferences': 'ユーザー設定', - 'settings.wide_view': 'ワイドビュー(デスクトップ レイアウトのみ)', - 'settings.compose_box_opts': 'コンポーズボックス設定', - 'settings.show_reply_counter': '投稿に対するリプライの数を表示する', - 'settings.side_arm': 'セカンダリートゥートボタン', - 'settings.side_arm.none': '表示しない', - 'settings.side_arm_reply_mode': '返信時の投稿範囲', - 'settings.side_arm_reply_mode.copy': '返信先の投稿範囲を利用する', - 'settings.side_arm_reply_mode.keep': 'セカンダリートゥートボタンの設定を維持する', - 'settings.side_arm_reply_mode.restrict': '返信先の投稿範囲に制限する', - 'settings.layout': 'レイアウト', - 'settings.layout_opts': 'レイアウトの設定', - 'status.collapse': '折りたたむ', - 'status.uncollapse': '折りたたみを解除', - - 'confirmations.missing_media_description.message': '少なくとも1つの画像に視覚障害者のための画像説明が付与されていません。すべての画像に対して説明を付与することを望みます。', - 'confirmations.missing_media_description.confirm': 'このまま投稿', - 'confirmations.missing_media_description.edit': 'メディアを編集', - - 'favourite_modal.combo': '次からは {combo} を押せば、これをスキップできます。', - - 'home.column_settings.show_direct': 'DMを表示', - 'home.column_settings.advanced': '高度', - 'home.column_settings.filter_regex': '正規表現でフィルター', - - 'notification.markForDeletion': '選択', - 'notifications.clear': '通知を全てクリアする', - 'notifications.marked_clear_confirmation': '削除した全ての通知を完全に削除してもよろしいですか?', - 'notifications.marked_clear': '選択した通知を削除する', - - 'notification_purge.btn_all': 'すべて\n選択', - 'notification_purge.btn_none': '選択\n解除', - 'notification_purge.btn_invert': '選択を\n反転', - 'notification_purge.btn_apply': '選択したものを\n削除', - - 'compose.attach.upload': 'ファイルをアップロード', - 'compose.attach.doodle': 'お絵描きをする', - 'compose.attach': '添付...', - - 'advanced_options.local-only.short': 'ローカル限定', - 'advanced_options.local-only.long': '他のインスタンスには投稿されません', - 'advanced_options.local-only.tooltip': 'この投稿はローカル限定投稿です', - 'advanced_options.icon_title': '高度な設定', - 'advanced_options.threaded_mode.short': 'スレッドモード', - 'advanced_options.threaded_mode.long': '投稿時に自動的に返信するように設定します', - 'advanced_options.threaded_mode.tooltip': 'スレッドモードを有効にする', - - 'navigation_bar.direct': 'ダイレクトメッセージ', - 'navigation_bar.bookmarks': 'ブックマーク', - 'column.bookmarks': 'ブックマーク', - - 'account.add_account_note': '@{name}のメモを追加', - 'account.disclaimer_full': 'このユーザー情報は不正確な可能性があります。', - 'account.follows': 'フォロー', - 'account.suspended_disclaimer_full': 'このユーザーはモデレータにより停止されました。', - 'account.view_full_profile': '正確な情報を見る', - 'account_note.cancel': 'キャンセル', - 'account_note.edit': '編集', - 'account_note.glitch_placeholder': 'メモがありません', - 'account_note.save': '保存', - 'boost_modal.missing_description': 'このトゥートには少なくとも1つの画像に説明が付与されていません', - 'community.column_settings.allow_local_only': 'ローカル限定投稿を表示する', - 'compose.content-type.html': 'HTML', - 'compose.content-type.markdown': 'マークダウン', - 'compose.content-type.plain': 'プレーンテキスト', - 'compose_form.poll.multiple_choices': '複数回答を許可', - 'compose_form.poll.single_choice': '単一回答を許可', - 'compose_form.spoiler': '本文は警告の後ろに隠す', - 'confirmation_modal.do_not_ask_again': 'もう1度尋ねない', - 'confirmations.discard_edit_media.confirm': '破棄', - 'confirmations.discard_edit_media.message': 'メディアの説明・プレビューに保存していない変更があります。破棄してもよろしいですか?', - 'confirmations.unfilter': 'このフィルターされたトゥートについての情報', - 'confirmations.unfilter.author': '筆者', - 'confirmations.unfilter.confirm': '見る', - 'confirmations.unfilter.edit_filter': 'フィルターを編集', - 'confirmations.unfilter.filters': '適用されたフィルター', - 'content-type.change': 'コンテンツ形式を変更', - 'direct.conversations_mode': '会話', - 'direct.timeline_mode': 'タイムライン', - 'endorsed_accounts_editor.endorsed_accounts': '紹介しているユーザー', - 'keyboard_shortcuts.bookmark': 'ブックマーク', - 'keyboard_shortcuts.secondary_toot': 'セカンダリートゥートの公開範囲でトゥートする', - 'keyboard_shortcuts.toggle_collapse': '折りたたむ/折りたたみを解除', - 'moved_to_warning': 'このアカウント{moved_to_link}に引っ越したため、新しいフォロワーを受け入れていません。', - 'settings.show_action_bar': 'アクションバーを表示', - 'settings.filtering_behavior': 'フィルターの振る舞い', - 'settings.filtering_behavior.cw': '警告文にフィルターされた単語を付加して表示します', - 'settings.filtering_behavior.drop': 'フィルターされたトゥートを完全に隠します', - 'settings.filtering_behavior.hide': '\'フィルターされました\'とその理由を確認するボタンを表示する', - 'settings.filtering_behavior.upstream': '\'フィルターされました\'とバニラMastodonと同じように表示する', - 'settings.filters': 'フィルター', - 'settings.hicolor_privacy_icons': 'ハイカラーの公開範囲アイコン', - 'settings.hicolor_privacy_icons.hint': '公開範囲アイコンを明るく表示し見分けやすい色にします', - 'settings.confirm_boost_missing_media_description': 'メディアの説明が欠けているトゥートをブーストする前に確認ダイアログを表示する', - 'settings.tag_misleading_links': '誤解を招くリンクにタグをつける', - 'settings.tag_misleading_links.hint': '明示的に言及していないすべてのリンクに、リンクターゲットホストを含む視覚的な表示を追加します', - 'settings.rewrite_mentions': '表示されたトゥートの返信先表示を書き換える', - 'settings.rewrite_mentions_acct': 'ユーザー名とドメイン名(アカウントがリモートの場合)を表示するように書き換える', - 'settings.rewrite_mentions_no': '書き換えない', - 'settings.rewrite_mentions_username': 'ユーザー名を表示するように書き換える', - 'settings.swipe_to_change_columns': 'スワイプでカラムを切り替え可能にする(モバイルのみ)', - 'settings.prepend_cw_re': '返信するとき警告に "re: "を付加する', - 'settings.preselect_on_reply': '返信するときユーザー名を事前選択する', - 'settings.confirm_before_clearing_draft': '作成しているメッセージが上書きされる前に確認ダイアログを表示する', - 'settings.show_content_type_choice': 'トゥートを書くときコンテンツ形式の選択ボタンを表示する', - 'settings.inline_preview_cards': '外部リンクに埋め込みプレビューを有効にする', - 'settings.media_reveal_behind_cw': '既定で警告指定されているトゥートの閲覧注意メディアを表示する', - 'settings.pop_in_left': '左', - 'settings.pop_in_player': 'ポップインプレイヤーを有効化する', - 'settings.pop_in_position': 'ポップインプレーヤーの位置:', - 'settings.pop_in_right': '右', - 'status.show_filter_reason': '(理由を見る)', - -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/ja.json b/app/javascript/flavours/glitch/locales/ja.json new file mode 100644 index 000000000..e942e3646 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/ja.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "@{name}のメモを追加", + "account.disclaimer_full": "このユーザー情報は不正確な可能性があります。", + "account.follows": "フォロー", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "このユーザーはモデレータにより停止されました。", + "account.view_full_profile": "正確な情報を見る", + "account_note.cancel": "キャンセル", + "account_note.edit": "編集", + "account_note.glitch_placeholder": "メモがありません", + "account_note.save": "保存", + "advanced_options.icon_title": "高度な設定", + "advanced_options.local-only.long": "他のインスタンスには投稿されません", + "advanced_options.local-only.short": "ローカル限定", + "advanced_options.local-only.tooltip": "この投稿はローカル限定投稿です", + "advanced_options.threaded_mode.long": "投稿時に自動的に返信するように設定します", + "advanced_options.threaded_mode.short": "スレッドモード", + "advanced_options.threaded_mode.tooltip": "スレッドモードを有効にする", + "boost_modal.missing_description": "このトゥートには少なくとも1つの画像に説明が付与されていません", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "ローカル限定投稿を表示する", + "compose.attach": "添付...", + "compose.attach.doodle": "お絵描きをする", + "compose.attach.upload": "ファイルをアップロード", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "マークダウン", + "compose.content-type.plain": "プレーンテキスト", + "compose_form.poll.multiple_choices": "複数回答を許可", + "compose_form.poll.single_choice": "単一回答を許可", + "compose_form.spoiler": "本文は警告の後ろに隠す", + "confirmation_modal.do_not_ask_again": "もう1度尋ねない", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "このまま投稿", + "confirmations.missing_media_description.edit": "メディアを編集", + "confirmations.missing_media_description.message": "少なくとも1つの画像に視覚障害者のための画像説明が付与されていません。すべての画像に対して説明を付与することを望みます。", + "confirmations.unfilter.author": "筆者", + "confirmations.unfilter.confirm": "見る", + "confirmations.unfilter.edit_filter": "フィルターを編集", + "confirmations.unfilter.filters": "適用されたフィルター", + "content-type.change": "コンテンツ形式を変更", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "紹介しているユーザー", + "favourite_modal.combo": "次からは {combo} を押せば、これをスキップできます。", + "getting_started.onboarding": "解説を表示", + "home.column_settings.advanced": "高度", + "home.column_settings.filter_regex": "正規表現でフィルター", + "home.column_settings.show_direct": "DMを表示", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "ブックマーク", + "keyboard_shortcuts.secondary_toot": "セカンダリートゥートの公開範囲でトゥートする", + "keyboard_shortcuts.toggle_collapse": "折りたたむ/折りたたみを解除", + "layout.auto": "自動", + "layout.desktop": "デスクトップ", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "モバイル", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "このアカウント{moved_to_link}に引っ越したため、新しいフォロワーを受け入れていません。", + "navigation_bar.app_settings": "アプリ設定", + "navigation_bar.featured_users": "紹介しているアカウント", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "その他", + "notification.markForDeletion": "選択", + "notification_purge.btn_all": "すべて\n選択", + "notification_purge.btn_apply": "選択したものを\n削除", + "notification_purge.btn_invert": "選択を\n反転", + "notification_purge.btn_none": "選択\n解除", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "選択した通知を削除する", + "notifications.marked_clear_confirmation": "削除した全ての通知を完全に削除してもよろしいですか?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain}はMastodonのインスタンスです。Mastodonとは、独立したサーバが連携して作るソーシャルネットワークです。これらのサーバーをインスタンスと呼びます。", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "{domain}へようこそ!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain}はGlitchsocを使用しています。Glitchsocは{Mastodon}のフレンドリーな{fork}で、どんなMastodonアプリやインスタンスとも互換性があります。Glitchsocは完全に無料で、オープンソースです。{github}でバグ報告や機能要望あるいは貢獻をすることが可能です。", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "常にコンテンツワーニング設定を表示する(指定がない場合は通常投稿)", + "settings.auto_collapse": "自動折りたたみ", + "settings.auto_collapse_all": "すべて", + "settings.auto_collapse_lengthy": "長いトゥート", + "settings.auto_collapse_media": "メディア付きトゥート", + "settings.auto_collapse_notifications": "通知", + "settings.auto_collapse_reblogs": "ブースト", + "settings.auto_collapse_replies": "返信", + "settings.close": "閉じる", + "settings.collapsed_statuses": "トゥート折りたたみ", + "settings.compose_box_opts": "コンポーズボックス設定", + "settings.confirm_before_clearing_draft": "作成しているメッセージが上書きされる前に確認ダイアログを表示する", + "settings.confirm_boost_missing_media_description": "メディアの説明が欠けているトゥートをブーストする前に確認ダイアログを表示する", + "settings.confirm_missing_media_description": "画像に対する補助記載がないときに投稿前の警告を表示する", + "settings.content_warnings": "コンテンツワーニング", + "settings.content_warnings.regexp": "正規表現", + "settings.content_warnings_filter": "説明に指定した文字が含まれているものを自動で展開しないようにする", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "トゥート折りたたみを有効にする", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "コンテンツワーニング指定されている投稿を常に表示する", + "settings.filters": "フィルター", + "settings.general": "一般", + "settings.hicolor_privacy_icons": "ハイカラーの公開範囲アイコン", + "settings.hicolor_privacy_icons.hint": "公開範囲アイコンを明るく表示し見分けやすい色にします", + "settings.image_backgrounds": "画像背景", + "settings.image_backgrounds_media": "折りたまれたメディア付きトゥートをプレビュー", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "折りたまれたトゥートの背景を変更する", + "settings.inline_preview_cards": "外部リンクに埋め込みプレビューを有効にする", + "settings.layout": "レイアウト", + "settings.layout_opts": "レイアウトの設定", + "settings.media": "メディア", + "settings.media_fullwidth": "全幅メディアプレビュー", + "settings.media_letterbox": "メディアをレターボックス式で表示", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "既定で警告指定されているトゥートの閲覧注意メディアを表示する", + "settings.notifications.favicon_badge": "通知アイコンに未読件数を表示する", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "未読の通知があるとき、通知アイコンにマークを表示する", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "通知の設定", + "settings.pop_in_left": "左", + "settings.pop_in_player": "ポップインプレイヤーを有効化する", + "settings.pop_in_position": "ポップインプレーヤーの位置:", + "settings.pop_in_right": "右", + "settings.preferences": "ユーザー設定", + "settings.prepend_cw_re": "返信するとき警告に \"re: \"を付加する", + "settings.preselect_on_reply": "返信するときユーザー名を事前選択する", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "表示されたトゥートの返信先表示を書き換える", + "settings.rewrite_mentions_acct": "ユーザー名とドメイン名(アカウントがリモートの場合)を表示するように書き換える", + "settings.rewrite_mentions_no": "書き換えない", + "settings.rewrite_mentions_username": "ユーザー名を表示するように書き換える", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "アクションバーを表示", + "settings.show_content_type_choice": "トゥートを書くときコンテンツ形式の選択ボタンを表示する", + "settings.show_reply_counter": "投稿に対するリプライの数を表示する", + "settings.side_arm": "セカンダリートゥートボタン", + "settings.side_arm.none": "表示しない", + "settings.side_arm_reply_mode": "返信時の投稿範囲", + "settings.side_arm_reply_mode.copy": "返信先の投稿範囲を利用する", + "settings.side_arm_reply_mode.keep": "セカンダリートゥートボタンの設定を維持する", + "settings.side_arm_reply_mode.restrict": "返信先の投稿範囲に制限する", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "スワイプでカラムを切り替え可能にする(モバイルのみ)", + "settings.tag_misleading_links": "誤解を招くリンクにタグをつける", + "settings.tag_misleading_links.hint": "明示的に言及していないすべてのリンクに、リンクターゲットホストを含む視覚的な表示を追加します", + "settings.wide_view": "ワイドビュー(デスクトップ レイアウトのみ)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "折りたたむ", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "折りたたみを解除", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/ka.js b/app/javascript/flavours/glitch/locales/ka.js deleted file mode 100644 index 3e06f4282..000000000 --- a/app/javascript/flavours/glitch/locales/ka.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/ka.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/ka.json b/app/javascript/flavours/glitch/locales/ka.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/ka.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/kab.js b/app/javascript/flavours/glitch/locales/kab.js deleted file mode 100644 index 5ed1156ef..000000000 --- a/app/javascript/flavours/glitch/locales/kab.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/kab.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/kab.json b/app/javascript/flavours/glitch/locales/kab.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/kab.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/kk.js b/app/javascript/flavours/glitch/locales/kk.js deleted file mode 100644 index 8d00fb035..000000000 --- a/app/javascript/flavours/glitch/locales/kk.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/kk.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/kk.json b/app/javascript/flavours/glitch/locales/kk.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/kk.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/kn.js b/app/javascript/flavours/glitch/locales/kn.js deleted file mode 100644 index 1c50e3628..000000000 --- a/app/javascript/flavours/glitch/locales/kn.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/kn.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/kn.json b/app/javascript/flavours/glitch/locales/kn.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/kn.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/ko.js b/app/javascript/flavours/glitch/locales/ko.js deleted file mode 100644 index a817044c1..000000000 --- a/app/javascript/flavours/glitch/locales/ko.js +++ /dev/null @@ -1,208 +0,0 @@ -import inherited from 'mastodon/locales/ko.json'; - -const messages = { - 'account.add_account_note': '@{name} 님에 대한 메모 추가', - 'account.disclaimer_full': '아래에 있는 정보들은 사용자의 프로필을 완벽하게 나타내지 못하고 있을 수도 있습니다.', - 'account.follows': '팔로우', - 'account.suspended_disclaimer_full': '이 사용자는 중재자에 의해 정지되었습니다.', - 'account.view_full_profile': '전체 프로필 보기', - 'account_note.cancel': '취소', - 'account_note.edit': '편집', - 'account_note.glitch_placeholder': '코멘트가 없습니다', - 'account_note.save': '저장', - 'advanced_options.icon_title': '고급 옵션', - 'advanced_options.local-only.long': '다른 서버에 게시하지 않기', - 'advanced_options.local-only.short': '로컬 전용', - 'advanced_options.local-only.tooltip': '이 게시물은 로컬 전용입니다', - 'advanced_options.threaded_mode.long': '글을 작성하고 자동으로 답글 열기', - 'advanced_options.threaded_mode.short': '글타래 모드', - 'advanced_options.threaded_mode.tooltip': '글타래 모드 활성화됨', - 'boost_modal.missing_description': '이 게시물은 설명이 없는 미디어를 포함하고 있습니다', - 'column.favourited_by': '즐겨찾기 한 사람', - 'column.heading': '기타', - 'column.reblogged_by': '부스트 한 사람', - 'column.subheading': '다양한 옵션', - 'column.toot': '게시물과 답글', - 'column_header.profile': '프로필', - 'column_subheading.lists': '리스트', - 'column_subheading.navigation': '탐색', - 'community.column_settings.allow_local_only': '로컬 전용 글 보기', - 'compose.attach': '첨부…', - 'compose.attach.doodle': '뭔가 그려보세요', - 'compose.attach.upload': '파일 업로드', - 'compose.content-type.html': 'HTML', - 'compose.content-type.markdown': '마크다운', - 'compose.content-type.plain': '일반 텍스트', - 'compose_form.poll.multiple_choices': '여러 개 선택 가능', - 'compose_form.poll.single_choice': '하나만 선택 가능', - 'compose_form.spoiler': '경고 메시지로 숨기기', - 'confirmation_modal.do_not_ask_again': '다음부터 확인창을 띄우지 않기', - 'confirmations.discard_edit_media.message': '저장하지 않은 미디어 설명이나 미리보기가 있습니다, 그냥 닫을까요?', - 'confirmations.missing_media_description.confirm': '그냥 보내기', - 'confirmations.missing_media_description.edit': '미디어 편집', - 'confirmations.missing_media_description.message': '하나 이상의 미디어에 대해 설명을 작성하지 않았습니다. 시각장애인을 위해 모든 미디어에 설명을 추가하는 것을 고려해주세요.', - 'confirmations.unfilter': '이 필터링 된 글에 대한 정보', - 'confirmations.unfilter.author': '작성자', - 'confirmations.unfilter.confirm': '보기', - 'confirmations.unfilter.edit_filter': '필터 편집', - 'confirmations.unfilter.filters': '적용된 {count, plural, one {필터} other {필터들}}', - 'content-type.change': '콘텐트 타입', - 'direct.conversations_mode': '대화', - 'direct.timeline_mode': '타임라인', - 'endorsed_accounts_editor.endorsed_accounts': '추천하는 계정들', - 'favourite_modal.combo': '다음엔 {combo}를 눌러 건너뛸 수 있습니다', - 'getting_started.onboarding': '둘러보기', - 'getting_started.open_source_notice': '글리치는 {Mastodon}의 자유 오픈소스 포크버전입니다. {github}에서 문제를 리포팅 하거나 기여를 할 수 있습니다.', - 'home.column_settings.advanced': '고급', - 'home.column_settings.filter_regex': '정규표현식으로 필터', - 'home.column_settings.show_direct': 'DM 보여주기', - 'home.settings': '컬럼 설정', - 'keyboard_shortcuts.bookmark': '북마크', - 'keyboard_shortcuts.secondary_toot': '보조 프라이버시 설정으로 글 보내기', - 'keyboard_shortcuts.toggle_collapse': '글 접거나 펼치기', - 'layout.auto': '자동', - 'layout.current_is': '현재 레이아웃:', - 'layout.desktop': '데스크탑', - 'layout.hint.auto': '“고급 웹 인터페이스 활성화” 설정과 화면 크기에 따라 자동으로 레이아웃을 고릅니다.', - 'layout.hint.desktop': '“고급 웹 인터페이스 활성화” 설정이나 화면 크기에 관계 없이 멀티 컬럼 레이아웃을 사용합니다.', - 'layout.hint.single': '“고급 웹 인터페이스 활성화” 설정이나 화면 크기에 관계 없이 싱글 컬럼 레이아웃을 사용합니다.', - 'layout.single': '모바일', - 'media_gallery.sensitive': '민감함', - 'moved_to_warning': '이 계정은 {moved_to_link}로 이동한 것으로 표시되었고, 새 팔로우를 받지 않는 것 같습니다.', - 'navigation_bar.app_settings': '앱 설정', - 'navigation_bar.featured_users': '추천된 계정들', - 'navigation_bar.misc': '다양한 옵션들', - 'notification.markForDeletion': '삭제하기 위해 표시', - 'notification_purge.btn_all': '전체선택', - 'notification_purge.btn_apply': '선택된 알림 삭제', - 'notification_purge.btn_invert': '선택반전', - 'notification_purge.btn_none': '전체선택해제', - 'notification_purge.start': '알림 삭제모드로 들어가기', - 'notifications.clear': '내 알림 모두 지우기', - 'notifications.marked_clear': '선택된 알림 모두 삭제', - 'notifications.marked_clear_confirmation': '정말로 선택된 알림들을 영구적으로 삭제할까요?', - 'onboarding.done': '완료', - 'onboarding.next': '다음', - 'onboarding.page_five.public_timelines': '로컬 타임라인은 {domain}에 있는 모든 사람의 공개글을 보여줍니다. 연합 타임라인은 {domain}에 있는 사람들이 팔로우 하는 모든 사람의 공개글을 보여줍니다. 이것들은 공개 타임라인이라고 불리며, 새로운 사람들을 발견할 수 있는 좋은 방법입니다.', - 'onboarding.page_four.home': '홈 타임라인은 당신이 팔로우 한 사람들의 글을 보여줍니다.', - 'onboarding.page_four.notifications': '알림 컬럼은 누군가가 당신과 상호작용한 것들을 보여줍니다.', - 'onboarding.page_one.federation': '{domain}은 마스토돈의 \'인스턴스\'입니다. 마스토돈은 하나의 거대한 소셜 네트워크를 만들기 위해 참여한 서버들의 네트워크입니다. 우린 이 서버들을 인스턴스라고 부릅니다.', - 'onboarding.page_one.handle': '당신은 {domain}에 속해 있으며, 전체 핸들은 {handle} 입니다.', - 'onboarding.page_one.welcome': '{domain}에 오신 것을 환영합니다!', - 'onboarding.page_six.admin': '우리 서버의 관리자는 {admin} 님입니다.', - 'onboarding.page_six.almost_done': '거의 다 되었습니다…', - 'onboarding.page_six.appetoot': '본 아페툿!', - 'onboarding.page_six.apps_available': 'iOS, 안드로이드, 그리고 다른 플랫폼들을 위한 {apps}이 존재합니다.', - 'onboarding.page_six.github': '{domain}은 글리치를 통해 구동 됩니다. 글리치는 {Mastodon}의 {fork}입니다, 그리고 어떤 마스토돈 인스턴스나 앱과도 호환 됩니다. 글리치는 완전한 자유 오픈소스입니다. {github}에서 버그를 리포팅 하거나, 기능을 제안하거나, 코드를 기여할 수 있습니다.', - 'onboarding.page_six.guidelines': '커뮤니티 가이드라인', - 'onboarding.page_six.read_guidelines': '{domain}의 {guidelines}을 읽어주세요!', - 'onboarding.page_six.various_app': '모바일 앱', - 'onboarding.page_three.profile': '프로필을 수정해 아바타, 바이오, 표시되는 이름을 설정하세요. 거기에서 다른 설정들도 찾을 수 있습니다.', - 'onboarding.page_three.search': '검색창을 사용해 사람들과 해시태그를 찾아보세요. 예를 들면 {illustration}이라든지 {introcustions} 같은 것으로요. 이 인스턴스에 있지 않은 사람을 찾으려면, 전체 핸들을 사용하세요.', - 'onboarding.page_two.compose': '작성 컬럼에서 게시물을 작성하세요. 그림을 업로드 할 수 있고, 공개설정을 바꿀 수도 있으며, 아래 아이콘을 통해 열람주의 텍스트를 설정할 수 있습니다.', - 'onboarding.skip': '건너뛰기', - 'settings.always_show_spoilers_field': '열람주의 항목을 언제나 활성화', - 'settings.auto_collapse': '자동으로 접기', - 'settings.auto_collapse_all': '모두', - 'settings.auto_collapse_lengthy': '긴 글', - 'settings.auto_collapse_media': '미디어 포함 글', - 'settings.auto_collapse_notifications': '알림', - 'settings.auto_collapse_reblogs': '부스트', - 'settings.auto_collapse_replies': '답글', - 'settings.close': '닫기', - 'settings.collapsed_statuses': '접힌 글', - 'settings.compose_box_opts': '작성 상자', - 'settings.confirm_before_clearing_draft': '작성 중인 메시지를 덮어씌우기 전에 확인창을 보여주기', - 'settings.confirm_boost_missing_media_description': '미디어 설명이 없는 글을 부스트하려 할 때 확인창을 보여주기', - 'settings.confirm_missing_media_description': '미디어 설명이 없는 글을 작성하려 할 때 확인창을 보여주기', - 'settings.content_warnings': '열람주의', - 'settings.content_warnings.regexp': '정규표현식', - 'settings.content_warnings_filter': '자동으로 펼치지 않을 열람주의 문구:', - 'settings.deprecated_setting': '이 설정은 마스토돈의 {settings_page_link}에서 관리됩니다', - 'settings.enable_collapsed': '접힌 글 활성화', - 'settings.enable_content_warnings_auto_unfold': '자동으로 열람주의 펼치기', - 'settings.filtering_behavior': '필터링 동작', - 'settings.filtering_behavior.cw': '게시물을 보여주되, 필터된 단어를 열람주의에 추가합니다', - 'settings.filtering_behavior.drop': '완전히 숨깁니다', - 'settings.filtering_behavior.hide': '\'필터됨\'이라고 표시하고 이유를 표시하는 버튼을 추가합니다', - 'settings.filtering_behavior.upstream': '\'필터됨\'이라고 일반 마스토돈처럼 표시합니다', - 'settings.filters': '필터', - 'settings.general': '일반', - 'settings.hicolor_privacy_icons': '높은 채도의 공개설정 아이콘', - 'settings.hicolor_privacy_icons.hint': '공개설정 아이콘들을 밝고 구분하기 쉬운 색으로 표시합니다', - 'settings.image_backgrounds': '이미지 배경', - 'settings.image_backgrounds_media': '접힌 글의 미디어 미리보기', - 'settings.image_backgrounds_users': '접힌 글에 이미지 배경 주기', - 'settings.inline_preview_cards': '외부 링크에 대한 미리보기 카드를 같이 표시', - 'settings.layout': '레이아웃:', - 'settings.layout_opts': '레이아웃 옵션', - 'settings.media': '미디어', - 'settings.media_fullwidth': '최대폭 미디어 미리보기', - 'settings.media_letterbox': '레터박스 미디어', - 'settings.media_letterbox_hint': '확대하고 자르는 대신 축소하고 레터박스에 넣어 이미지를 보여줍니다', - 'settings.media_reveal_behind_cw': '열람주의로 가려진 미디어를 기본으로 펼쳐 둡니다', - 'settings.navbar_under': '내비바를 하단에 (모바일 전용)', - 'settings.notifications.favicon_badge': '읽지 않은 알림 파비콘 배지', - 'settings.notifications.favicon_badge.hint': '읽지 않은 알림 배지를 파비콘에 추가합니다', - 'settings.notifications.tab_badge': '읽지 않은 알림 배지', - 'settings.notifications.tab_badge.hint': '알림 컬럼이 열려 있지 않을 때 알림 컬럼에 알림이 있다는 배지를 표시합니다', - 'settings.notifications_opts': '알림 옵션', - 'settings.pop_in_left': '왼쪽', - 'settings.pop_in_player': '떠있는 재생기 활성화', - 'settings.pop_in_position': '떠있는 재생기 위치:', - 'settings.pop_in_right': '오른쪽', - 'settings.preferences': '사용자 설정', - 'settings.prepend_cw_re': '열람주의가 달린 글에 답장을 할 때 열람주의 문구 앞에 “re: ”를 추가합니다', - 'settings.preselect_on_reply': '답글 달 때 사용자명 미리 선택', - 'settings.preselect_on_reply_hint': '답글을 달 때 이미 멘션 된 사람의 사용자명을 미리 블럭으로 설정해 놓습니다', - 'settings.rewrite_mentions': '표시되는 게시물의 멘션 표시 바꾸기', - 'settings.rewrite_mentions_acct': '사용자명과 도메인으로 바꾸기(계정이 원격일 때)', - 'settings.rewrite_mentions_no': '멘션을 그대로 두기', - 'settings.rewrite_mentions_username': '사용자명으로 바꾸기', - 'settings.shared_settings_link': '사용자 설정', - 'settings.show_action_bar': '접힌 글에 액션 버튼들 보이기', - 'settings.show_content_type_choice': '글을 작성할 때 콘텐트 타입을 고를 수 있도록 합니다', - 'settings.show_reply_counter': '대략적인 답글 개수를 표시합니다', - 'settings.side_arm': '보조 작성 버튼:', - 'settings.side_arm.none': '없음', - 'settings.side_arm_reply_mode': '답글을 작성할 때:', - 'settings.side_arm_reply_mode.copy': '답글을 달려는 글의 공개설정을 복사합니다', - 'settings.side_arm_reply_mode.keep': '보조 작성 버튼의 공개설정을 유지합니다', - 'settings.side_arm_reply_mode.restrict': '답글을 달려는 글의 공개설정에 맞게 제한합니다', - 'settings.status_icons': '게시물 아이콘', - 'settings.status_icons_language': '언어 표시', - 'settings.status_icons_local_only': '로컬 전용 표시', - 'settings.status_icons_media': '미디어와 투표 표시', - 'settings.status_icons_reply': '답글 표시', - 'settings.status_icons_visibility': '툿 공개설정 표시', - 'settings.swipe_to_change_columns': '스와이프하여 컬럼간 전환을 허용합니다 (모바일 전용)', - 'settings.tag_misleading_links': '오해의 소지가 있는 링크를 표시합니다', - 'settings.tag_misleading_links.hint': '링크에 명시적으로 주소가 없는 경우엔 대상 호스트를 보이도록 표시합니다', - 'settings.wide_view': '넓은 뷰 (데스크탑 모드 전용)', - 'settings.wide_view_hint': '컬럼들을 늘려서 활용 가능한 공간을 사용합니다.', - 'status.collapse': '접기', - 'status.has_audio': '소리 파일이 첨부되어 있습니다', - 'status.has_pictures': '그림 파일이 첨부되어 있습니다', - 'status.has_preview_card': '미리보기 카드가 첨부되어 있습니다', - 'status.has_video': '영상이 첨부되어 있습니다', - 'status.hide': '글 가리기', - 'status.in_reply_to': '이 글은 답글입니다', - 'status.is_poll': '이 글은 설문입니다', - 'status.local_only': '당신의 서버에서만 보입니다', - 'status.sensitive_toggle': '클릭해서 보기', - 'status.show_filter_reason': '(이유 보기)', - 'status.uncollapse': '펼치기', - 'upload_modal.applying': '적용중…', - 'web_app_crash.change_your_settings': '{settings}을 바꾸세요', - 'web_app_crash.content': '이것들을 시도해 볼 수 있습니다:', - 'web_app_crash.debug_info': '디버그 정보', - 'web_app_crash.disable_addons': '브라우저 애드온이나 기본 번역 도구를 비활성화 합니다', - 'web_app_crash.issue_tracker': '이슈 트래커', - 'web_app_crash.reload': '새로고침', - 'web_app_crash.reload_page': '이 페이지를 {reload}', - 'web_app_crash.report_issue': '{issuetracker}에 버그 제보', - 'web_app_crash.settings': '설정', - 'web_app_crash.title': '죄송합니다, 하지만 마스토돈 앱이 뭔가 잘못되었습니다.', -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/ko.json b/app/javascript/flavours/glitch/locales/ko.json new file mode 100644 index 000000000..ef560c1e1 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/ko.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "@{name} 님에 대한 메모 추가", + "account.disclaimer_full": "아래에 있는 정보들은 사용자의 프로필을 완벽하게 나타내지 못하고 있을 수도 있습니다.", + "account.follows": "팔로우", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "이 사용자는 중재자에 의해 정지되었습니다.", + "account.view_full_profile": "전체 프로필 보기", + "account_note.cancel": "취소", + "account_note.edit": "편집", + "account_note.glitch_placeholder": "코멘트가 없습니다", + "account_note.save": "저장", + "advanced_options.icon_title": "고급 옵션", + "advanced_options.local-only.long": "다른 서버에 게시하지 않기", + "advanced_options.local-only.short": "로컬 전용", + "advanced_options.local-only.tooltip": "이 게시물은 로컬 전용입니다", + "advanced_options.threaded_mode.long": "글을 작성하고 자동으로 답글 열기", + "advanced_options.threaded_mode.short": "글타래 모드", + "advanced_options.threaded_mode.tooltip": "글타래 모드 활성화됨", + "boost_modal.missing_description": "이 게시물은 설명이 없는 미디어를 포함하고 있습니다", + "column.favourited_by": "즐겨찾기 한 사람", + "column.heading": "기타", + "column.reblogged_by": "부스트 한 사람", + "column.subheading": "다양한 옵션", + "column_header.profile": "프로필", + "column_subheading.lists": "리스트", + "column_subheading.navigation": "탐색", + "community.column_settings.allow_local_only": "로컬 전용 글 보기", + "compose.attach": "첨부…", + "compose.attach.doodle": "뭔가 그려보세요", + "compose.attach.upload": "파일 업로드", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "마크다운", + "compose.content-type.plain": "일반 텍스트", + "compose_form.poll.multiple_choices": "여러 개 선택 가능", + "compose_form.poll.single_choice": "하나만 선택 가능", + "compose_form.spoiler": "경고 메시지로 숨기기", + "confirmation_modal.do_not_ask_again": "다음부터 확인창을 띄우지 않기", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "그냥 보내기", + "confirmations.missing_media_description.edit": "미디어 편집", + "confirmations.missing_media_description.message": "하나 이상의 미디어에 대해 설명을 작성하지 않았습니다. 시각장애인을 위해 모든 미디어에 설명을 추가하는 것을 고려해주세요.", + "confirmations.unfilter.author": "작성자", + "confirmations.unfilter.confirm": "보기", + "confirmations.unfilter.edit_filter": "필터 편집", + "confirmations.unfilter.filters": "적용된 {count, plural, one {필터} other {필터들}}", + "content-type.change": "콘텐트 타입", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "추천하는 계정들", + "favourite_modal.combo": "다음엔 {combo}를 눌러 건너뛸 수 있습니다", + "getting_started.onboarding": "둘러보기", + "home.column_settings.advanced": "고급", + "home.column_settings.filter_regex": "정규표현식으로 필터", + "home.column_settings.show_direct": "DM 보여주기", + "home.settings": "컬럼 설정", + "keyboard_shortcuts.bookmark": "북마크", + "keyboard_shortcuts.secondary_toot": "보조 프라이버시 설정으로 글 보내기", + "keyboard_shortcuts.toggle_collapse": "글 접거나 펼치기", + "layout.auto": "자동", + "layout.desktop": "데스크탑", + "layout.hint.auto": "“고급 웹 인터페이스 활성화” 설정과 화면 크기에 따라 자동으로 레이아웃을 고릅니다.", + "layout.hint.desktop": "“고급 웹 인터페이스 활성화” 설정이나 화면 크기에 관계 없이 멀티 컬럼 레이아웃을 사용합니다.", + "layout.hint.single": "“고급 웹 인터페이스 활성화” 설정이나 화면 크기에 관계 없이 싱글 컬럼 레이아웃을 사용합니다.", + "layout.single": "모바일", + "media_gallery.sensitive": "민감함", + "moved_to_warning": "이 계정은 {moved_to_link}로 이동한 것으로 표시되었고, 새 팔로우를 받지 않는 것 같습니다.", + "navigation_bar.app_settings": "앱 설정", + "navigation_bar.featured_users": "추천된 계정들", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "다양한 옵션들", + "notification.markForDeletion": "삭제하기 위해 표시", + "notification_purge.btn_all": "전체선택", + "notification_purge.btn_apply": "선택된 알림 삭제", + "notification_purge.btn_invert": "선택반전", + "notification_purge.btn_none": "전체선택해제", + "notification_purge.start": "알림 삭제모드로 들어가기", + "notifications.marked_clear": "선택된 알림 모두 삭제", + "notifications.marked_clear_confirmation": "정말로 선택된 알림들을 영구적으로 삭제할까요?", + "onboarding.done": "완료", + "onboarding.next": "다음", + "onboarding.page_five.public_timelines": "로컬 타임라인은 {domain}에 있는 모든 사람의 공개글을 보여줍니다. 연합 타임라인은 {domain}에 있는 사람들이 팔로우 하는 모든 사람의 공개글을 보여줍니다. 이것들은 공개 타임라인이라고 불리며, 새로운 사람들을 발견할 수 있는 좋은 방법입니다.", + "onboarding.page_four.home": "홈 타임라인은 당신이 팔로우 한 사람들의 글을 보여줍니다.", + "onboarding.page_four.notifications": "알림 컬럼은 누군가가 당신과 상호작용한 것들을 보여줍니다.", + "onboarding.page_one.federation": "{domain}은 마스토돈의 '인스턴스'입니다. 마스토돈은 하나의 거대한 소셜 네트워크를 만들기 위해 참여한 서버들의 네트워크입니다. 우린 이 서버들을 인스턴스라고 부릅니다.", + "onboarding.page_one.handle": "당신은 {domain}에 속해 있으며, 전체 핸들은 {handle} 입니다.", + "onboarding.page_one.welcome": "{domain}에 오신 것을 환영합니다!", + "onboarding.page_six.admin": "우리 서버의 관리자는 {admin} 님입니다.", + "onboarding.page_six.almost_done": "거의 다 되었습니다…", + "onboarding.page_six.appetoot": "본 아페툿!", + "onboarding.page_six.apps_available": "iOS, 안드로이드, 그리고 다른 플랫폼들을 위한 {apps}이 존재합니다.", + "onboarding.page_six.github": "{domain}은 글리치를 통해 구동 됩니다. 글리치는 {Mastodon}의 {fork}입니다, 그리고 어떤 마스토돈 인스턴스나 앱과도 호환 됩니다. 글리치는 완전한 자유 오픈소스입니다. {github}에서 버그를 리포팅 하거나, 기능을 제안하거나, 코드를 기여할 수 있습니다.", + "onboarding.page_six.guidelines": "커뮤니티 가이드라인", + "onboarding.page_six.read_guidelines": "{domain}의 {guidelines}을 읽어주세요!", + "onboarding.page_six.various_app": "모바일 앱", + "onboarding.page_three.profile": "프로필을 수정해 아바타, 바이오, 표시되는 이름을 설정하세요. 거기에서 다른 설정들도 찾을 수 있습니다.", + "onboarding.page_three.search": "검색창을 사용해 사람들과 해시태그를 찾아보세요. 예를 들면 {illustration}이라든지 {introcustions} 같은 것으로요. 이 인스턴스에 있지 않은 사람을 찾으려면, 전체 핸들을 사용하세요.", + "onboarding.page_two.compose": "작성 컬럼에서 게시물을 작성하세요. 그림을 업로드 할 수 있고, 공개설정을 바꿀 수도 있으며, 아래 아이콘을 통해 열람주의 텍스트를 설정할 수 있습니다.", + "onboarding.skip": "건너뛰기", + "settings.always_show_spoilers_field": "열람주의 항목을 언제나 활성화", + "settings.auto_collapse": "자동으로 접기", + "settings.auto_collapse_all": "모두", + "settings.auto_collapse_lengthy": "긴 글", + "settings.auto_collapse_media": "미디어 포함 글", + "settings.auto_collapse_notifications": "알림", + "settings.auto_collapse_reblogs": "부스트", + "settings.auto_collapse_replies": "답글", + "settings.close": "닫기", + "settings.collapsed_statuses": "접힌 글", + "settings.compose_box_opts": "작성 상자", + "settings.confirm_before_clearing_draft": "작성 중인 메시지를 덮어씌우기 전에 확인창을 보여주기", + "settings.confirm_boost_missing_media_description": "미디어 설명이 없는 글을 부스트하려 할 때 확인창을 보여주기", + "settings.confirm_missing_media_description": "미디어 설명이 없는 글을 작성하려 할 때 확인창을 보여주기", + "settings.content_warnings": "열람주의", + "settings.content_warnings.regexp": "정규표현식", + "settings.content_warnings_filter": "자동으로 펼치지 않을 열람주의 문구:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "이 설정은 마스토돈의 {settings_page_link}에서 관리됩니다", + "settings.enable_collapsed": "접힌 글 활성화", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "자동으로 열람주의 펼치기", + "settings.filters": "필터", + "settings.general": "일반", + "settings.hicolor_privacy_icons": "높은 채도의 공개설정 아이콘", + "settings.hicolor_privacy_icons.hint": "공개설정 아이콘들을 밝고 구분하기 쉬운 색으로 표시합니다", + "settings.image_backgrounds": "이미지 배경", + "settings.image_backgrounds_media": "접힌 글의 미디어 미리보기", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "접힌 글에 이미지 배경 주기", + "settings.inline_preview_cards": "외부 링크에 대한 미리보기 카드를 같이 표시", + "settings.layout": "레이아웃:", + "settings.layout_opts": "레이아웃 옵션", + "settings.media": "미디어", + "settings.media_fullwidth": "최대폭 미디어 미리보기", + "settings.media_letterbox": "레터박스 미디어", + "settings.media_letterbox_hint": "확대하고 자르는 대신 축소하고 레터박스에 넣어 이미지를 보여줍니다", + "settings.media_reveal_behind_cw": "열람주의로 가려진 미디어를 기본으로 펼쳐 둡니다", + "settings.notifications.favicon_badge": "읽지 않은 알림 파비콘 배지", + "settings.notifications.favicon_badge.hint": "읽지 않은 알림 배지를 파비콘에 추가합니다", + "settings.notifications.tab_badge": "읽지 않은 알림 배지", + "settings.notifications.tab_badge.hint": "알림 컬럼이 열려 있지 않을 때 알림 컬럼에 알림이 있다는 배지를 표시합니다", + "settings.notifications_opts": "알림 옵션", + "settings.pop_in_left": "왼쪽", + "settings.pop_in_player": "떠있는 재생기 활성화", + "settings.pop_in_position": "떠있는 재생기 위치:", + "settings.pop_in_right": "오른쪽", + "settings.preferences": "사용자 설정", + "settings.prepend_cw_re": "열람주의가 달린 글에 답장을 할 때 열람주의 문구 앞에 “re: ”를 추가합니다", + "settings.preselect_on_reply": "답글 달 때 사용자명 미리 선택", + "settings.preselect_on_reply_hint": "답글을 달 때 이미 멘션 된 사람의 사용자명을 미리 블럭으로 설정해 놓습니다", + "settings.rewrite_mentions": "표시되는 게시물의 멘션 표시 바꾸기", + "settings.rewrite_mentions_acct": "사용자명과 도메인으로 바꾸기(계정이 원격일 때)", + "settings.rewrite_mentions_no": "멘션을 그대로 두기", + "settings.rewrite_mentions_username": "사용자명으로 바꾸기", + "settings.shared_settings_link": "사용자 설정", + "settings.show_action_bar": "접힌 글에 액션 버튼들 보이기", + "settings.show_content_type_choice": "글을 작성할 때 콘텐트 타입을 고를 수 있도록 합니다", + "settings.show_reply_counter": "대략적인 답글 개수를 표시합니다", + "settings.side_arm": "보조 작성 버튼:", + "settings.side_arm.none": "없음", + "settings.side_arm_reply_mode": "답글을 작성할 때:", + "settings.side_arm_reply_mode.copy": "답글을 달려는 글의 공개설정을 복사합니다", + "settings.side_arm_reply_mode.keep": "보조 작성 버튼의 공개설정을 유지합니다", + "settings.side_arm_reply_mode.restrict": "답글을 달려는 글의 공개설정에 맞게 제한합니다", + "settings.status_icons": "게시물 아이콘", + "settings.status_icons_language": "언어 표시", + "settings.status_icons_local_only": "로컬 전용 표시", + "settings.status_icons_media": "미디어와 투표 표시", + "settings.status_icons_reply": "답글 표시", + "settings.status_icons_visibility": "툿 공개설정 표시", + "settings.swipe_to_change_columns": "스와이프하여 컬럼간 전환을 허용합니다 (모바일 전용)", + "settings.tag_misleading_links": "오해의 소지가 있는 링크를 표시합니다", + "settings.tag_misleading_links.hint": "링크에 명시적으로 주소가 없는 경우엔 대상 호스트를 보이도록 표시합니다", + "settings.wide_view": "넓은 뷰 (데스크탑 모드 전용)", + "settings.wide_view_hint": "컬럼들을 늘려서 활용 가능한 공간을 사용합니다.", + "status.collapse": "접기", + "status.has_audio": "소리 파일이 첨부되어 있습니다", + "status.has_pictures": "그림 파일이 첨부되어 있습니다", + "status.has_preview_card": "미리보기 카드가 첨부되어 있습니다", + "status.has_video": "영상이 첨부되어 있습니다", + "status.in_reply_to": "이 글은 답글입니다", + "status.is_poll": "이 글은 설문입니다", + "status.local_only": "당신의 서버에서만 보입니다", + "status.sensitive_toggle": "클릭해서 보기", + "status.uncollapse": "펼치기", + "web_app_crash.change_your_settings": "{settings}을 바꾸세요", + "web_app_crash.content": "이것들을 시도해 볼 수 있습니다:", + "web_app_crash.debug_info": "디버그 정보", + "web_app_crash.disable_addons": "브라우저 애드온이나 기본 번역 도구를 비활성화 합니다", + "web_app_crash.issue_tracker": "이슈 트래커", + "web_app_crash.reload": "새로고침", + "web_app_crash.reload_page": "이 페이지를 {reload}", + "web_app_crash.report_issue": "{issuetracker}에 버그 제보", + "web_app_crash.settings": "설정", + "web_app_crash.title": "죄송합니다, 하지만 마스토돈 앱이 뭔가 잘못되었습니다." +} diff --git a/app/javascript/flavours/glitch/locales/ku.js b/app/javascript/flavours/glitch/locales/ku.js deleted file mode 100644 index 19e0e95aa..000000000 --- a/app/javascript/flavours/glitch/locales/ku.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/ku.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/ku.json b/app/javascript/flavours/glitch/locales/ku.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/ku.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/kw.js b/app/javascript/flavours/glitch/locales/kw.js deleted file mode 100644 index 1325ca825..000000000 --- a/app/javascript/flavours/glitch/locales/kw.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/kw.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/kw.json b/app/javascript/flavours/glitch/locales/kw.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/kw.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/lt.js b/app/javascript/flavours/glitch/locales/lt.js deleted file mode 100644 index 47453aeeb..000000000 --- a/app/javascript/flavours/glitch/locales/lt.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/lt.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/lt.json b/app/javascript/flavours/glitch/locales/lt.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/lt.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/lv.js b/app/javascript/flavours/glitch/locales/lv.js deleted file mode 100644 index cdbcdf799..000000000 --- a/app/javascript/flavours/glitch/locales/lv.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/lv.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/lv.json b/app/javascript/flavours/glitch/locales/lv.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/lv.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/mk.js b/app/javascript/flavours/glitch/locales/mk.js deleted file mode 100644 index 55e510b59..000000000 --- a/app/javascript/flavours/glitch/locales/mk.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/mk.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/mk.json b/app/javascript/flavours/glitch/locales/mk.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/mk.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/ml.js b/app/javascript/flavours/glitch/locales/ml.js deleted file mode 100644 index d00331a1a..000000000 --- a/app/javascript/flavours/glitch/locales/ml.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/ml.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/ml.json b/app/javascript/flavours/glitch/locales/ml.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/ml.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/mr.js b/app/javascript/flavours/glitch/locales/mr.js deleted file mode 100644 index fb3cde92a..000000000 --- a/app/javascript/flavours/glitch/locales/mr.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/mr.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/mr.json b/app/javascript/flavours/glitch/locales/mr.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/mr.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/ms.js b/app/javascript/flavours/glitch/locales/ms.js deleted file mode 100644 index 61033c521..000000000 --- a/app/javascript/flavours/glitch/locales/ms.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/ms.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/ms.json b/app/javascript/flavours/glitch/locales/ms.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/ms.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/nl.js b/app/javascript/flavours/glitch/locales/nl.js deleted file mode 100644 index 17c371c58..000000000 --- a/app/javascript/flavours/glitch/locales/nl.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/nl.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/nl.json b/app/javascript/flavours/glitch/locales/nl.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/nl.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/nn.js b/app/javascript/flavours/glitch/locales/nn.js deleted file mode 100644 index 4c42368cb..000000000 --- a/app/javascript/flavours/glitch/locales/nn.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/nn.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/nn.json b/app/javascript/flavours/glitch/locales/nn.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/nn.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/no.js b/app/javascript/flavours/glitch/locales/no.js deleted file mode 100644 index 794b1da25..000000000 --- a/app/javascript/flavours/glitch/locales/no.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/no.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/no.json b/app/javascript/flavours/glitch/locales/no.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/no.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/oc.js b/app/javascript/flavours/glitch/locales/oc.js deleted file mode 100644 index 8f161fd8c..000000000 --- a/app/javascript/flavours/glitch/locales/oc.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/oc.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/oc.json b/app/javascript/flavours/glitch/locales/oc.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/oc.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/pa.js b/app/javascript/flavours/glitch/locales/pa.js deleted file mode 100644 index c3e0e2b84..000000000 --- a/app/javascript/flavours/glitch/locales/pa.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/pa.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/pa.json b/app/javascript/flavours/glitch/locales/pa.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/pa.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/pl.js b/app/javascript/flavours/glitch/locales/pl.js deleted file mode 100644 index f430bf577..000000000 --- a/app/javascript/flavours/glitch/locales/pl.js +++ /dev/null @@ -1,79 +0,0 @@ -import inherited from 'mastodon/locales/pl.json'; - -const messages = { - 'getting_started.open_source_notice': 'Glitchsoc jest wolnym i otwartoźródłowym forkiem oprogramowania {Mastodon}. Możesz współtworzyć projekt lub zgłaszać błędy na GitHubie pod adresem {github}.', - 'layout.auto': 'Automatyczny', - 'layout.current_is': 'Twój obecny układ to:', - 'layout.desktop': 'Desktopowy', - 'layout.mobile': 'Mobilny', - 'navigation_bar.app_settings': 'Ustawienia aplikacji', - 'navigation_bar.bookmarks': 'Zakładki', - 'getting_started.onboarding': 'Rozejrzyj się', - 'onboarding.page_one.federation': '{domain} jest \'instancją\' Mastodona. Mastodon to sieć działających niezależnie serwerów tworzących jedną sieć społecznościową. Te serwery nazywane są instancjami.', - 'onboarding.page_one.welcome': 'Witamy na {domain}!', - 'onboarding.page_six.github': '{domain} jest oparty na Glitchsoc. Glitchsoc jest {forkiem} {Mastodon}a kompatybilnym z każdym klientem i aplikacją Mastodona. Glitchsoc jest całkowicie wolnym i otwartoźródłowym oprogramowaniem. Możesz zgłaszać błędy i sugestie funkcji oraz współtworzyć projekt na {github}.', - 'settings.auto_collapse': 'Automatyczne zwijanie', - 'settings.auto_collapse_all': 'Wszystko', - 'settings.auto_collapse_lengthy': 'Długie wpisy', - 'settings.auto_collapse_media': 'Wpisy z zawartością multimedialną', - 'settings.auto_collapse_notifications': 'Powiadomienia', - 'settings.auto_collapse_reblogs': 'Podbicia', - 'settings.auto_collapse_replies': 'Odpowiedzi', - 'settings.close': 'Zamknij', - 'settings.collapsed_statuses': 'Zwijanie wpisów', - 'settings.enable_collapsed': 'Włącz zwijanie wpisów', - 'settings.general': 'Ogólne', - 'settings.image_backgrounds': 'Obrazy w tle', - 'settings.image_backgrounds_media': 'Wyświetlaj zawartość multimedialną zwiniętych wpisów', - 'settings.image_backgrounds_users': 'Nadaj tło zwiniętym wpisom', - 'settings.layout': 'Układ', - 'settings.media': 'Zawartość multimedialna', - 'settings.media_letterbox': 'Letterbox media', - 'settings.media_fullwidth': 'Podgląd zawartości multimedialnej o pełnej szerokości', - 'settings.navbar_under': 'Pasek nawigacji na dole (tylko w trybie mobilnym)', - 'settings.preferences': 'Preferencje użytkownika', - 'settings.side_arm': 'Drugi przycisk wysyłania', - 'settings.side_arm.none': 'Żaden', - 'settings.wide_view': 'Szeroki widok (tylko w trybie desktopowym)', - 'status.bookmark': 'Dodaj do zakładek', - 'status.collapse': 'Zwiń', - 'status.uncollapse': 'Rozwiń', - - 'media_gallery.sensitive': 'Zawartość wrażliwa', - - 'favourite_modal.combo': 'Możesz nacisnąć {combo}, aby pominąć to następnym razem', - - 'home.column_settings.show_direct': 'Pokaż wiadomości bezpośrednie', - - 'notification.markForDeletion': 'Oznacz do usunięcia', - 'notifications.clear': 'Wyczyść wszystkie powiadomienia', - 'notifications.marked_clear_confirmation': 'Czy na pewno chcesz bezpowrtonie usunąć wszystkie powiadomienia?', - 'notifications.marked_clear': 'Usuń zaznaczone powiadomienia', - - 'notification_purge.btn_all': 'Zaznacz\nwszystkie', - 'notification_purge.btn_none': 'Odznacz\nwszystkie', - 'notification_purge.btn_invert': 'Odwróć\nzaznaczenie', - 'notification_purge.btn_apply': 'Usuń\nzaznaczone', - 'notification_purge.start': 'Przejdź do trybu usuwania powiadomień', - - 'compose.attach.upload': 'Wyślij plik', - 'compose.attach.doodle': 'Narysuj coś', - 'compose.attach': 'Załącz coś', - - 'advanced_options.local-only.short': 'Tylko lokalnie', - 'advanced_options.local-only.long': 'Nie wysyłaj na inne instancje', - 'advanced_options.local-only.tooltip': 'Ten wpis jest widoczny tylko lokalnie', - 'advanced_options.icon_title': 'Ustawienia zaawansowane', - 'advanced_options.threaded_mode.short': 'Tryb wątków', - 'advanced_options.threaded_mode.long': 'Przechodzi do tworzenia odpowiedzi po publikacji wpisu', - 'advanced_options.threaded_mode.tooltip': 'Włączono tryb wątków', - - 'column.bookmarks': 'Zakładki', - 'compose_form.sensitive': 'Oznacz zawartość multimedialną jako wrażliwą', - 'compose_form.spoiler': 'Ukryj tekst za ostrzeżeniem', - 'favourite_modal.combo': 'Możesz nacisnąć {combo}, aby pominąć to następnym razem', - 'tabs_bar.compose': 'Napisz', - -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/pl.json b/app/javascript/flavours/glitch/locales/pl.json new file mode 100644 index 000000000..1851555c0 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/pl.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Ustawienia zaawansowane", + "advanced_options.local-only.long": "Nie wysyłaj na inne instancje", + "advanced_options.local-only.short": "Tylko lokalnie", + "advanced_options.local-only.tooltip": "Ten wpis jest widoczny tylko lokalnie", + "advanced_options.threaded_mode.long": "Przechodzi do tworzenia odpowiedzi po publikacji wpisu", + "advanced_options.threaded_mode.short": "Tryb wątków", + "advanced_options.threaded_mode.tooltip": "Włączono tryb wątków", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Załącz coś", + "compose.attach.doodle": "Narysuj coś", + "compose.attach.upload": "Wyślij plik", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Ukryj tekst za ostrzeżeniem", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "Możesz nacisnąć {combo}, aby pominąć to następnym razem", + "getting_started.onboarding": "Rozejrzyj się", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Pokaż wiadomości bezpośrednie", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Automatyczny", + "layout.desktop": "Desktopowy", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Zawartość wrażliwa", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "Ustawienia aplikacji", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Oznacz do usunięcia", + "notification_purge.btn_all": "Zaznacz\nwszystkie", + "notification_purge.btn_apply": "Usuń\nzaznaczone", + "notification_purge.btn_invert": "Odwróć\nzaznaczenie", + "notification_purge.btn_none": "Odznacz\nwszystkie", + "notification_purge.start": "Przejdź do trybu usuwania powiadomień", + "notifications.marked_clear": "Usuń zaznaczone powiadomienia", + "notifications.marked_clear_confirmation": "Czy na pewno chcesz bezpowrtonie usunąć wszystkie powiadomienia?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} jest 'instancją' Mastodona. Mastodon to sieć działających niezależnie serwerów tworzących jedną sieć społecznościową. Te serwery nazywane są instancjami.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Witamy na {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} jest oparty na Glitchsoc. Glitchsoc jest {forkiem} {Mastodon}a kompatybilnym z każdym klientem i aplikacją Mastodona. Glitchsoc jest całkowicie wolnym i otwartoźródłowym oprogramowaniem. Możesz zgłaszać błędy i sugestie funkcji oraz współtworzyć projekt na {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatyczne zwijanie", + "settings.auto_collapse_all": "Wszystko", + "settings.auto_collapse_lengthy": "Długie wpisy", + "settings.auto_collapse_media": "Wpisy z zawartością multimedialną", + "settings.auto_collapse_notifications": "Powiadomienia", + "settings.auto_collapse_reblogs": "Podbicia", + "settings.auto_collapse_replies": "Odpowiedzi", + "settings.close": "Zamknij", + "settings.collapsed_statuses": "Zwijanie wpisów", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Włącz zwijanie wpisów", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "Ogólne", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Obrazy w tle", + "settings.image_backgrounds_media": "Wyświetlaj zawartość multimedialną zwiniętych wpisów", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Nadaj tło zwiniętym wpisom", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Układ", + "settings.layout_opts": "Layout options", + "settings.media": "Zawartość multimedialna", + "settings.media_fullwidth": "Podgląd zawartości multimedialnej o pełnej szerokości", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferencje użytkownika", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Drugi przycisk wysyłania", + "settings.side_arm.none": "Żaden", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Szeroki widok (tylko w trybie desktopowym)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Zwiń", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Rozwiń", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/pt-BR.js b/app/javascript/flavours/glitch/locales/pt-BR.js deleted file mode 100644 index 6fed635f8..000000000 --- a/app/javascript/flavours/glitch/locales/pt-BR.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/pt-BR.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/pt-BR.json b/app/javascript/flavours/glitch/locales/pt-BR.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/pt-BR.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/pt-PT.js b/app/javascript/flavours/glitch/locales/pt-PT.js deleted file mode 100644 index cf7afd17a..000000000 --- a/app/javascript/flavours/glitch/locales/pt-PT.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/pt-PT.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/pt-PT.json b/app/javascript/flavours/glitch/locales/pt-PT.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/pt-PT.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/ro.js b/app/javascript/flavours/glitch/locales/ro.js deleted file mode 100644 index a16446c6a..000000000 --- a/app/javascript/flavours/glitch/locales/ro.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/ro.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/ro.json b/app/javascript/flavours/glitch/locales/ro.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/ro.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/ru.js b/app/javascript/flavours/glitch/locales/ru.js deleted file mode 100644 index 0e9f1de71..000000000 --- a/app/javascript/flavours/glitch/locales/ru.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/ru.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/ru.json b/app/javascript/flavours/glitch/locales/ru.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/ru.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/sa.js b/app/javascript/flavours/glitch/locales/sa.js deleted file mode 100644 index 4cade0a07..000000000 --- a/app/javascript/flavours/glitch/locales/sa.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/sa.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/sa.json b/app/javascript/flavours/glitch/locales/sa.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/sa.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/sc.js b/app/javascript/flavours/glitch/locales/sc.js deleted file mode 100644 index 88a83aa53..000000000 --- a/app/javascript/flavours/glitch/locales/sc.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/sc.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/sc.json b/app/javascript/flavours/glitch/locales/sc.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/sc.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/si.js b/app/javascript/flavours/glitch/locales/si.js deleted file mode 100644 index d43266254..000000000 --- a/app/javascript/flavours/glitch/locales/si.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/si.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/si.json b/app/javascript/flavours/glitch/locales/si.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/si.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/sk.js b/app/javascript/flavours/glitch/locales/sk.js deleted file mode 100644 index 5fba6ab97..000000000 --- a/app/javascript/flavours/glitch/locales/sk.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/sk.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/sk.json b/app/javascript/flavours/glitch/locales/sk.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/sk.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/sl.js b/app/javascript/flavours/glitch/locales/sl.js deleted file mode 100644 index c53c1bae8..000000000 --- a/app/javascript/flavours/glitch/locales/sl.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/sl.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/sl.json b/app/javascript/flavours/glitch/locales/sl.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/sl.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/sq.js b/app/javascript/flavours/glitch/locales/sq.js deleted file mode 100644 index 2fb7a2973..000000000 --- a/app/javascript/flavours/glitch/locales/sq.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/sq.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/sq.json b/app/javascript/flavours/glitch/locales/sq.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/sq.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/sr-Latn.js b/app/javascript/flavours/glitch/locales/sr-Latn.js deleted file mode 100644 index b42d5eaaf..000000000 --- a/app/javascript/flavours/glitch/locales/sr-Latn.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/sr-Latn.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/sr-Latn.json b/app/javascript/flavours/glitch/locales/sr-Latn.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/sr-Latn.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/sr.js b/app/javascript/flavours/glitch/locales/sr.js deleted file mode 100644 index 8793d8d1e..000000000 --- a/app/javascript/flavours/glitch/locales/sr.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/sr.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/sr.json b/app/javascript/flavours/glitch/locales/sr.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/sr.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/sv.js b/app/javascript/flavours/glitch/locales/sv.js deleted file mode 100644 index b62c353fe..000000000 --- a/app/javascript/flavours/glitch/locales/sv.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/sv.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/sv.json b/app/javascript/flavours/glitch/locales/sv.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/sv.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/szl.js b/app/javascript/flavours/glitch/locales/szl.js deleted file mode 100644 index 0b50afe45..000000000 --- a/app/javascript/flavours/glitch/locales/szl.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/szl.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/szl.json b/app/javascript/flavours/glitch/locales/szl.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/szl.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/ta.js b/app/javascript/flavours/glitch/locales/ta.js deleted file mode 100644 index d6ecdcb1b..000000000 --- a/app/javascript/flavours/glitch/locales/ta.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/ta.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/ta.json b/app/javascript/flavours/glitch/locales/ta.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/ta.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/tai.js b/app/javascript/flavours/glitch/locales/tai.js deleted file mode 100644 index f26cec5bd..000000000 --- a/app/javascript/flavours/glitch/locales/tai.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/tai.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/tai.json b/app/javascript/flavours/glitch/locales/tai.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/tai.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/te.js b/app/javascript/flavours/glitch/locales/te.js deleted file mode 100644 index afd6e4f7b..000000000 --- a/app/javascript/flavours/glitch/locales/te.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/te.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/te.json b/app/javascript/flavours/glitch/locales/te.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/te.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/th.js b/app/javascript/flavours/glitch/locales/th.js deleted file mode 100644 index e939f8631..000000000 --- a/app/javascript/flavours/glitch/locales/th.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/th.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/th.json b/app/javascript/flavours/glitch/locales/th.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/th.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/tr.js b/app/javascript/flavours/glitch/locales/tr.js deleted file mode 100644 index c2b740617..000000000 --- a/app/javascript/flavours/glitch/locales/tr.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/tr.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/tr.json b/app/javascript/flavours/glitch/locales/tr.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/tr.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/tt.js b/app/javascript/flavours/glitch/locales/tt.js deleted file mode 100644 index ff74f6c29..000000000 --- a/app/javascript/flavours/glitch/locales/tt.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/tt.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/tt.json b/app/javascript/flavours/glitch/locales/tt.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/tt.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/ug.js b/app/javascript/flavours/glitch/locales/ug.js deleted file mode 100644 index ab7ee0761..000000000 --- a/app/javascript/flavours/glitch/locales/ug.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/ug.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/ug.json b/app/javascript/flavours/glitch/locales/ug.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/ug.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/uk.js b/app/javascript/flavours/glitch/locales/uk.js deleted file mode 100644 index fe05342aa..000000000 --- a/app/javascript/flavours/glitch/locales/uk.js +++ /dev/null @@ -1,72 +0,0 @@ -import inherited from 'mastodon/locales/uk.json'; - - - -const messages = { - 'getting_started.open_source_notice': 'Glitchsoc — вільна та відкрита модифікація {Mastodon}. Ви можете зробити свій внесок у проєкт або повідомити про вади на нашому {github}.', - 'layout.auto': 'Автоматичний', - 'layout.current_is': 'Ваш тип інтерфейсу зараз:', - 'layout.desktop': 'Настільний', - 'layout.mobile': 'Мобільний', - 'navigation_bar.app_settings': 'Налаштування програми', - 'getting_started.onboarding': 'Шо тут', - - 'onboarding.page_one.federation': '{domain} є сервером of Mastodon. Mastodon — мережа незалежних серверів, які працюють разом великою соціяльною мережою. Сервери Mastodon також називають „інстансами“.', - 'onboarding.page_one.welcome': 'Ласкаво просимо до {domain}!', - 'onboarding.page_six.github': '{domain} використовує Glitchsoc. Glitchsoc — дружній {fork} {Mastodon}, сумісний з будь-яким сервером Mastodon або програмою для нього. Glitchsoc повністю вільний та відкритий. Повідомляти про баги, просити фічі, або працювати з кодом можна на {github}.', - 'settings.auto_collapse': 'Автоматичне згортання', - 'settings.auto_collapse_all': 'Все', - 'settings.auto_collapse_lengthy': 'Довгі дмухи', - 'settings.auto_collapse_media': 'Дмухи з медіафайлами', - 'settings.auto_collapse_notifications': 'Сповіщення', - 'settings.auto_collapse_reblogs': 'Передмухи', - 'settings.auto_collapse_replies': 'Відповіді', - 'settings.show_action_bar': 'Показувати кнопки у згорнутих дмухах', - 'settings.close': 'Закрити', - 'settings.collapsed_statuses': 'Згорнуті дмухи', - 'settings.enable_collapsed': 'Увімкути згорнутання дмухів', - 'settings.general': 'Основне', - 'settings.image_backgrounds': 'Картинки на тлі', - 'settings.image_backgrounds_media': 'Підглядати медіа зі схованих дмухів', - 'settings.image_backgrounds_users': 'Давати схованим дмухам тло-картинку', - 'settings.media': 'Медіа', - 'settings.media_letterbox': 'Обрізати медіа', - 'settings.media_fullwidth': 'Показувати медіа повною шириною', - 'settings.preferences': 'Користувацькі налаштування', - 'settings.wide_view': "Широкий вид (тільки в режимі для комп'ютерів)", - 'settings.navbar_under': 'Панель навігації знизу (тільки в режимі для мобілок)', - 'status.collapse': 'Згорнути', - 'status.uncollapse': 'Розгорнути', - - 'media_gallery.sensitive': 'Чутливі', - - 'favourite_modal.combo': 'Ви можете натиснути {combo}, щоб пропустити це наступного разу', - - 'home.column_settings.show_direct': 'Показати прямі повідомлення', - - 'notification.markForDeletion': 'Позначити для видалення', - 'notifications.clear': 'Очистити всі мої сповіщення', - 'notifications.marked_clear_confirmation': 'Ви впевнені, що хочете незворотньо очистити всі вибрані сповіщення?', - 'notifications.marked_clear': 'Очистити вибрані сповіщення', - - 'notification_purge.btn_all': 'Вибрати\nвсе', - 'notification_purge.btn_none': 'Вибрати\nнічого', - 'notification_purge.btn_invert': 'Інвертувати\nвибір', - 'notification_purge.btn_apply': 'Очистити\nвибір', - - 'compose.attach.upload': 'Завантажити сюди файл', - 'compose.attach.doodle': 'Помалювати', - 'compose.attach': 'Вкласти...', - - 'advanced_options.local-only.short': 'Лише локальне', - 'advanced_options.local-only.long': 'Не дмухати це на інші сервери', - 'advanced_options.local-only.tooltip': 'Цей дмух лише локальний', - - // TODO: я не знаю що це значить - //'advanced_options.icon_title': 'Advanced options', - //'advanced_options.threaded_mode.short': 'Threaded mode', - //'advanced_options.threaded_mode.long': 'Automatically opens a reply on posting', - //'advanced_options.threaded_mode.tooltip': 'Threaded mode enabled', -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/uk.json b/app/javascript/flavours/glitch/locales/uk.json new file mode 100644 index 000000000..faf9a17ac --- /dev/null +++ b/app/javascript/flavours/glitch/locales/uk.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Не дмухати це на інші сервери", + "advanced_options.local-only.short": "Лише локальне", + "advanced_options.local-only.tooltip": "Цей дмух лише локальний", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Вкласти...", + "compose.attach.doodle": "Помалювати", + "compose.attach.upload": "Завантажити сюди файл", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "Ви можете натиснути {combo}, щоб пропустити це наступного разу", + "getting_started.onboarding": "Шо тут", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Показати прямі повідомлення", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Автоматичний", + "layout.desktop": "Настільний", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Чутливі", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "Налаштування програми", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Позначити для видалення", + "notification_purge.btn_all": "Вибрати\nвсе", + "notification_purge.btn_apply": "Очистити\nвибір", + "notification_purge.btn_invert": "Інвертувати\nвибір", + "notification_purge.btn_none": "Вибрати\nнічого", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Очистити вибрані сповіщення", + "notifications.marked_clear_confirmation": "Ви впевнені, що хочете незворотньо очистити всі вибрані сповіщення?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} є сервером of Mastodon. Mastodon — мережа незалежних серверів, які працюють разом великою соціяльною мережою. Сервери Mastodon також називають „інстансами“.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Ласкаво просимо до {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} використовує Glitchsoc. Glitchsoc — дружній {fork} {Mastodon}, сумісний з будь-яким сервером Mastodon або програмою для нього. Glitchsoc повністю вільний та відкритий. Повідомляти про баги, просити фічі, або працювати з кодом можна на {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Автоматичне згортання", + "settings.auto_collapse_all": "Все", + "settings.auto_collapse_lengthy": "Довгі дмухи", + "settings.auto_collapse_media": "Дмухи з медіафайлами", + "settings.auto_collapse_notifications": "Сповіщення", + "settings.auto_collapse_reblogs": "Передмухи", + "settings.auto_collapse_replies": "Відповіді", + "settings.close": "Закрити", + "settings.collapsed_statuses": "Згорнуті дмухи", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Увімкути згорнутання дмухів", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "Основне", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Картинки на тлі", + "settings.image_backgrounds_media": "Підглядати медіа зі схованих дмухів", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Давати схованим дмухам тло-картинку", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Медіа", + "settings.media_fullwidth": "Показувати медіа повною шириною", + "settings.media_letterbox": "Обрізати медіа", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Користувацькі налаштування", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Показувати кнопки у згорнутих дмухах", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Широкий вид (тільки в режимі для комп'ютерів)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Згорнути", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Розгорнути", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/ur.js b/app/javascript/flavours/glitch/locales/ur.js deleted file mode 100644 index 97ba291b0..000000000 --- a/app/javascript/flavours/glitch/locales/ur.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/ur.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/ur.json b/app/javascript/flavours/glitch/locales/ur.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/ur.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/vi.js b/app/javascript/flavours/glitch/locales/vi.js deleted file mode 100644 index 499a96727..000000000 --- a/app/javascript/flavours/glitch/locales/vi.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/vi.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/vi.json b/app/javascript/flavours/glitch/locales/vi.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/vi.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/whitelist_af.json b/app/javascript/flavours/glitch/locales/whitelist_af.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_af.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_ar.json b/app/javascript/flavours/glitch/locales/whitelist_ar.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_ar.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_ast.json b/app/javascript/flavours/glitch/locales/whitelist_ast.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_ast.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_bg.json b/app/javascript/flavours/glitch/locales/whitelist_bg.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_bg.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_bn.json b/app/javascript/flavours/glitch/locales/whitelist_bn.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_bn.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_br.json b/app/javascript/flavours/glitch/locales/whitelist_br.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_br.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_ca.json b/app/javascript/flavours/glitch/locales/whitelist_ca.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_ca.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_ckb.json b/app/javascript/flavours/glitch/locales/whitelist_ckb.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_ckb.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_co.json b/app/javascript/flavours/glitch/locales/whitelist_co.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_co.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_cs.json b/app/javascript/flavours/glitch/locales/whitelist_cs.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_cs.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_cy.json b/app/javascript/flavours/glitch/locales/whitelist_cy.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_cy.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_da.json b/app/javascript/flavours/glitch/locales/whitelist_da.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_da.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_de.json b/app/javascript/flavours/glitch/locales/whitelist_de.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_de.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_el.json b/app/javascript/flavours/glitch/locales/whitelist_el.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_el.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_en.json b/app/javascript/flavours/glitch/locales/whitelist_en.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_en.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_eo.json b/app/javascript/flavours/glitch/locales/whitelist_eo.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_eo.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_es-AR.json b/app/javascript/flavours/glitch/locales/whitelist_es-AR.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_es-AR.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_es-MX.json b/app/javascript/flavours/glitch/locales/whitelist_es-MX.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_es-MX.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_es.json b/app/javascript/flavours/glitch/locales/whitelist_es.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_es.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_et.json b/app/javascript/flavours/glitch/locales/whitelist_et.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_et.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_eu.json b/app/javascript/flavours/glitch/locales/whitelist_eu.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_eu.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_fa.json b/app/javascript/flavours/glitch/locales/whitelist_fa.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_fa.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_fi.json b/app/javascript/flavours/glitch/locales/whitelist_fi.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_fi.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_fr.json b/app/javascript/flavours/glitch/locales/whitelist_fr.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_fr.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_ga.json b/app/javascript/flavours/glitch/locales/whitelist_ga.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_ga.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_gd.json b/app/javascript/flavours/glitch/locales/whitelist_gd.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_gd.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_gl.json b/app/javascript/flavours/glitch/locales/whitelist_gl.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_gl.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_he.json b/app/javascript/flavours/glitch/locales/whitelist_he.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_he.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_hi.json b/app/javascript/flavours/glitch/locales/whitelist_hi.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_hi.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_hr.json b/app/javascript/flavours/glitch/locales/whitelist_hr.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_hr.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_hu.json b/app/javascript/flavours/glitch/locales/whitelist_hu.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_hu.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_hy.json b/app/javascript/flavours/glitch/locales/whitelist_hy.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_hy.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_id.json b/app/javascript/flavours/glitch/locales/whitelist_id.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_id.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_io.json b/app/javascript/flavours/glitch/locales/whitelist_io.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_io.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_is.json b/app/javascript/flavours/glitch/locales/whitelist_is.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_is.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_it.json b/app/javascript/flavours/glitch/locales/whitelist_it.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_it.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_ja.json b/app/javascript/flavours/glitch/locales/whitelist_ja.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_ja.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_ka.json b/app/javascript/flavours/glitch/locales/whitelist_ka.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_ka.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_kab.json b/app/javascript/flavours/glitch/locales/whitelist_kab.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_kab.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_kk.json b/app/javascript/flavours/glitch/locales/whitelist_kk.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_kk.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_kn.json b/app/javascript/flavours/glitch/locales/whitelist_kn.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_kn.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_ko.json b/app/javascript/flavours/glitch/locales/whitelist_ko.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_ko.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_ku.json b/app/javascript/flavours/glitch/locales/whitelist_ku.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_ku.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_kw.json b/app/javascript/flavours/glitch/locales/whitelist_kw.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_kw.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_lt.json b/app/javascript/flavours/glitch/locales/whitelist_lt.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_lt.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_lv.json b/app/javascript/flavours/glitch/locales/whitelist_lv.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_lv.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_mk.json b/app/javascript/flavours/glitch/locales/whitelist_mk.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_mk.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_ml.json b/app/javascript/flavours/glitch/locales/whitelist_ml.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_ml.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_mr.json b/app/javascript/flavours/glitch/locales/whitelist_mr.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_mr.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_ms.json b/app/javascript/flavours/glitch/locales/whitelist_ms.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_ms.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_nl.json b/app/javascript/flavours/glitch/locales/whitelist_nl.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_nl.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_nn.json b/app/javascript/flavours/glitch/locales/whitelist_nn.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_nn.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_no.json b/app/javascript/flavours/glitch/locales/whitelist_no.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_no.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_oc.json b/app/javascript/flavours/glitch/locales/whitelist_oc.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_oc.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_pa.json b/app/javascript/flavours/glitch/locales/whitelist_pa.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_pa.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_pl.json b/app/javascript/flavours/glitch/locales/whitelist_pl.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_pl.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_pt-BR.json b/app/javascript/flavours/glitch/locales/whitelist_pt-BR.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_pt-BR.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_pt-PT.json b/app/javascript/flavours/glitch/locales/whitelist_pt-PT.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_pt-PT.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_ro.json b/app/javascript/flavours/glitch/locales/whitelist_ro.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_ro.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_ru.json b/app/javascript/flavours/glitch/locales/whitelist_ru.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_ru.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_sa.json b/app/javascript/flavours/glitch/locales/whitelist_sa.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_sa.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_sc.json b/app/javascript/flavours/glitch/locales/whitelist_sc.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_sc.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_si.json b/app/javascript/flavours/glitch/locales/whitelist_si.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_si.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_sk.json b/app/javascript/flavours/glitch/locales/whitelist_sk.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_sk.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_sl.json b/app/javascript/flavours/glitch/locales/whitelist_sl.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_sl.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_sq.json b/app/javascript/flavours/glitch/locales/whitelist_sq.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_sq.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_sr-Latn.json b/app/javascript/flavours/glitch/locales/whitelist_sr-Latn.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_sr-Latn.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_sr.json b/app/javascript/flavours/glitch/locales/whitelist_sr.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_sr.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_sv.json b/app/javascript/flavours/glitch/locales/whitelist_sv.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_sv.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_szl.json b/app/javascript/flavours/glitch/locales/whitelist_szl.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_szl.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_ta.json b/app/javascript/flavours/glitch/locales/whitelist_ta.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_ta.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_tai.json b/app/javascript/flavours/glitch/locales/whitelist_tai.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_tai.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_te.json b/app/javascript/flavours/glitch/locales/whitelist_te.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_te.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_th.json b/app/javascript/flavours/glitch/locales/whitelist_th.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_th.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_tr.json b/app/javascript/flavours/glitch/locales/whitelist_tr.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_tr.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_tt.json b/app/javascript/flavours/glitch/locales/whitelist_tt.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_tt.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_ug.json b/app/javascript/flavours/glitch/locales/whitelist_ug.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_ug.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_uk.json b/app/javascript/flavours/glitch/locales/whitelist_uk.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_uk.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_ur.json b/app/javascript/flavours/glitch/locales/whitelist_ur.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_ur.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_vi.json b/app/javascript/flavours/glitch/locales/whitelist_vi.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_vi.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_zgh.json b/app/javascript/flavours/glitch/locales/whitelist_zgh.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_zgh.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_zh-CN.json b/app/javascript/flavours/glitch/locales/whitelist_zh-CN.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_zh-CN.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_zh-HK.json b/app/javascript/flavours/glitch/locales/whitelist_zh-HK.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_zh-HK.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/whitelist_zh-TW.json b/app/javascript/flavours/glitch/locales/whitelist_zh-TW.json new file mode 100644 index 000000000..0d4f101c7 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/whitelist_zh-TW.json @@ -0,0 +1,2 @@ +[ +] diff --git a/app/javascript/flavours/glitch/locales/zgh.js b/app/javascript/flavours/glitch/locales/zgh.js deleted file mode 100644 index f2f15b1a4..000000000 --- a/app/javascript/flavours/glitch/locales/zgh.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/zgh.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/zgh.json b/app/javascript/flavours/glitch/locales/zgh.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/zgh.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/zh-CN.js b/app/javascript/flavours/glitch/locales/zh-CN.js deleted file mode 100644 index 21a68fc01..000000000 --- a/app/javascript/flavours/glitch/locales/zh-CN.js +++ /dev/null @@ -1,201 +0,0 @@ -import inherited from 'mastodon/locales/zh-CN.json'; - -const messages = { - 'account.add_account_note': '为 @{name} 添加备注', - 'account.disclaimer_full': '以下信息可能无法完整代表你的个人资料。', - 'account.follows': '正在关注', - 'account.suspended_disclaimer_full': '该用户已被封禁。', - 'account.view_full_profile': '查看完整资料', - 'account_note.cancel': '取消', - 'account_note.edit': '编辑', - 'account_note.glitch_placeholder': '暂无备注', - 'account_note.save': '保存', - 'advanced_options.icon_title': '高级选项', - 'advanced_options.local-only.long': '不要发布嘟文到其他实例', - 'advanced_options.local-only.short': '本地模式', - 'advanced_options.local-only.tooltip': '这条嘟文仅限于本实例', - 'advanced_options.threaded_mode.long': '发嘟时自动打开回复', - 'advanced_options.threaded_mode.short': '线程模式', - 'advanced_options.threaded_mode.tooltip': '线程模式已启用', - 'boost_modal.missing_description': '这条嘟文未包含媒体描述', - 'column.favourited_by': '喜欢', - 'column.heading': '标题', - 'column.reblogged_by': '转嘟', - 'column.subheading': '其他选项', - 'column.toot': '嘟文和回复', - 'column_header.profile': '个人资料', - 'column_subheading.lists': '列表', - 'column_subheading.navigation': '导航', - 'community.column_settings.allow_local_only': '只显示本地模式嘟文', - 'compose.attach': '附上...', - 'compose.attach.doodle': '画点什么', - 'compose.attach.upload': '上传文件', - 'compose.content-type.html': 'HTML', - 'compose.content-type.markdown': 'Markdown', - 'compose.content-type.plain': '纯文本', - 'compose_form.poll.multiple_choices': '允许多选', - 'compose_form.poll.single_choice': '允许单选', - 'compose_form.spoiler': '隐藏为内容警告', - 'confirmation_modal.do_not_ask_again': '下次不显示确认窗口', - 'confirmations.discard_edit_media.confirm': '确认', - 'confirmations.discard_edit_media.message': '有未保存的媒体描述或预览,确认要关闭?', - 'confirmations.missing_media_description.confirm': '确认', - 'confirmations.missing_media_description.edit': '编辑', - 'confirmations.missing_media_description.message': '你没有为一种或多种媒体撰写描述。请考虑为视障人士添加描述。', - 'confirmations.unfilter': '关于此过滤后嘟文的信息', - 'confirmations.unfilter.author': '作者', - 'confirmations.unfilter.confirm': '查看', - 'confirmations.unfilter.edit_filter': '编辑过滤器', - 'confirmations.unfilter.filters': '应用 {count, plural, one {过滤器} other {过滤器}}', - 'content-type.change': '内容类型 ', - 'direct.conversations_mode': '对话模式', - 'direct.timeline_mode': '时间线模式', - 'endorsed_accounts_editor.endorsed_accounts': '推荐用户', - 'favourite_modal.combo': '下次你可以按 {combo} 跳过这个', - 'getting_started.onboarding': '参观一下', - 'getting_started.open_source_notice': 'Glitchsoc 是由 {Mastodon} 分叉出来的免费开源软件。你可以在 GitHub 上贡献或报告问题,地址是 {github}。', - 'home.column_settings.advanced': '高级', - 'home.column_settings.filter_regex': '按正则表达式过滤', - 'home.column_settings.show_direct': '显示私信', - 'home.settings': '列表设置', - 'keyboard_shortcuts.bookmark': '书签', - 'keyboard_shortcuts.secondary_toot': '使用二级隐私设置发送嘟文', - 'keyboard_shortcuts.toggle_collapse': '折叠或展开嘟文', - 'layout.auto': '自动模式', - 'layout.current_is': '你目前的布局是:', - 'layout.desktop': '桌面模式', - 'layout.hint.auto': '根据“启用高级 Web 界面”设置和屏幕大小自动选择布局。', - 'layout.hint.desktop': '“使用多列布局,无论“启用高级 Web 界面”设置和屏幕大小如何。', - 'layout.hint.single': '使用单列布局,无论“启用高级 Web 界面”设置和屏幕大小如何。', - 'layout.single': '移动模式', - 'media_gallery.sensitive': '敏感内容', - 'moved_to_warning': '此帐户已被标记为移至 {moved_to_link},并且似乎没有收到新关注者。', - 'navigation_bar.app_settings': '应用选项', - 'navigation_bar.featured_users': '推荐用户', - 'navigation_bar.misc': '杂项', - 'notification.markForDeletion': '标记以删除', - 'notification_purge.btn_all': '全选', - 'notification_purge.btn_apply': '清除已选', - 'notification_purge.btn_invert': '反向选择', - 'notification_purge.btn_none': '取消全选', - 'notification_purge.start': '进入通知清除模式', - 'notifications.clear': '清除所有通知', - 'notifications.marked_clear': '清除选择的通知', - 'notifications.marked_clear_confirmation': '你确定要永久清除所有选择的通知吗?', - 'onboarding.done': '完成', - 'onboarding.next': '下一个', - 'onboarding.page_five.public_timelines': '本地时间线显示来自 {domain} 中所有人的公开嘟文。跨站时间线显示了 {domain} 用户关注的每个人的公开嘟文。这些被称为公共时间线,是发现新朋友的好方法。', - 'onboarding.page_four.home': '你的主页时间线会显示你关注的人的嘟文。', - 'onboarding.page_four.notifications': '通知栏显示某人与你互动的内容。', - 'onboarding.page_one.federation': '{domain} 是 Mastodon 的一个“实例”。Mastodon 是一个由独立服务器组成的,通过不断联合形成的社交网络。我们称这些服务器为实例。', - 'onboarding.page_one.handle': '你位于 {domain},因此你的完整用户名是 {handle} 。', - 'onboarding.page_one.welcome': '欢迎来到 {domain}!', - 'onboarding.page_six.admin': '实例的管理员是 {admin}。', - 'onboarding.page_six.almost_done': '就快完成了...', - 'onboarding.page_six.appetoot': '尽情享用吧!', - 'onboarding.page_six.apps_available': '有适用于 iOS、Android 和其他平台的应用程序。', - 'onboarding.page_six.github': '{domain} 在 Glitchsoc 上运行。Glitchsoc 是 {Mastodon} 的一个友好 {fork},与任何 Mastodon 实例或应用兼容。Glitchsoc 是完全免费和开源的。你可以在 {github} 上报告错误、请求功能或贡献代码。', - 'onboarding.page_six.guidelines': '社区准则', - 'onboarding.page_six.read_guidelines': '请阅读 {domain} 的 {guidelines}!', - 'onboarding.page_six.various_app': '应用程序', - 'onboarding.page_three.profile': '编辑你的个人资料,更改你的头像、个人简介和昵称。在那里,你还会发现其他设置。', - 'onboarding.page_three.search': '使用搜索栏查找用户并查看标签,例如 #illustration 和 #introductions。要查找不在此实例中的用户,请使用他们的完整用户名。', - 'onboarding.page_two.compose': '在撰写框中撰写嘟文。你可以使用下方图标上传图像、更改隐私设置和添加内容警告。', - 'onboarding.skip': '跳过', - 'settings.always_show_spoilers_field': '始终显示内容警告框', - 'settings.auto_collapse': '自动折叠', - 'settings.auto_collapse_all': '所有', - 'settings.auto_collapse_lengthy': '长嘟文', - 'settings.auto_collapse_media': '带媒体文件的嘟文', - 'settings.auto_collapse_notifications': '通知', - 'settings.auto_collapse_reblogs': '转嘟', - 'settings.auto_collapse_replies': '回复', - 'settings.close': '关闭', - 'settings.collapsed_statuses': '折叠嘟文', - 'settings.compose_box_opts': '撰写框', - 'settings.confirm_before_clearing_draft': '在覆盖正在写入的嘟文之前显示确认对话框', - 'settings.confirm_boost_missing_media_description': '在转嘟缺少媒体描述的嘟文之前显示确认对话框', - 'settings.confirm_missing_media_description': '在发送缺少媒体描述的嘟文之前显示确认对话框', - 'settings.content_warnings': '内容警告', - 'settings.content_warnings.regexp': '正则表达式', - 'settings.content_warnings_filter': '不会自动展开的内容警告:', - 'settings.enable_collapsed': '启用折叠嘟文', - 'settings.enable_content_warnings_auto_unfold': '自动展开内容警告', - 'settings.filtering_behavior': '过滤器行为', - 'settings.filtering_behavior.cw': '仍然显示嘟文,并在内容警告中添加过滤词', - 'settings.filtering_behavior.drop': '完全隐藏过滤的嘟文', - 'settings.filtering_behavior.hide': '显示“已过滤”并添加一个按钮来显示原因', - 'settings.filtering_behavior.upstream': '像原版 Mastodon 一样显示“已过滤”', - 'settings.filters': '过滤器', - 'settings.general': '一般', - 'settings.hicolor_privacy_icons': '彩色隐私图标 ', - 'settings.hicolor_privacy_icons.hint': '以明亮且易于区分的颜色显示隐私图标', - 'settings.image_backgrounds': '图片背景', - 'settings.image_backgrounds_media': '预览折叠嘟文的媒体文件', - 'settings.image_backgrounds_users': '为折叠嘟文附加图片背景', - 'settings.inline_preview_cards': '外部链接的内嵌预览卡片', - 'settings.layout': '布局:', - 'settings.layout_opts': '布局选项', - 'settings.media': '媒体', - 'settings.media_fullwidth': '全宽媒体预览', - 'settings.media_letterbox': '信箱媒体', - 'settings.media_letterbox_hint': '缩小媒体以填充图像容器而不是拉伸和裁剪它们', - 'settings.media_reveal_behind_cw': '默认显示内容警告后的敏感媒体', - 'settings.navbar_under': '底部导航栏(仅限于移动模式)', - 'settings.notifications.favicon_badge': '未读通知网站图标', - 'settings.notifications.favicon_badge.hint': '将未读通知添加到网站图标', - 'settings.notifications.tab_badge': '未读通知图标', - 'settings.notifications.tab_badge.hint': '当通知栏未打开时,显示未读通知图标', - 'settings.notifications_opts': '通知选项', - 'settings.pop_in_left': '左边', - 'settings.pop_in_player': '启用悬浮播放器', - 'settings.pop_in_position': '悬浮播放器位置:', - 'settings.pop_in_right': '右边', - 'settings.preferences': '用户选项', - 'settings.prepend_cw_re': '回复时在内容警告前加上“re:”', - 'settings.preselect_on_reply': '回复时预先选择用户名', - 'settings.preselect_on_reply_hint': '回复与多个参与者的对话时,预先选择第一个用户名', - 'settings.rewrite_mentions': '重写嘟文中的提及', - 'settings.rewrite_mentions_acct': '重写为用户名和域名(当帐户为远程时)', - 'settings.rewrite_mentions_no': '不要重写', - 'settings.rewrite_mentions_username': '重写为用户名', - 'settings.show_action_bar': '在折叠的嘟文中显示操作按钮', - 'settings.show_content_type_choice': '允许你在撰写嘟文时选择格式类型', - 'settings.show_reply_counter': '显示回复的大致数量', - 'settings.side_arm': '辅助发嘟按钮:', - 'settings.side_arm.none': '无', - 'settings.side_arm_reply_mode': '当回复嘟文时:', - 'settings.side_arm_reply_mode.copy': '复制被回复嘟文的隐私设置', - 'settings.side_arm_reply_mode.keep': '保留辅助发嘟按钮以设置隐私', - 'settings.side_arm_reply_mode.restrict': '将隐私设置限制为正在回复的那条嘟文', - 'settings.swipe_to_change_columns': '允许滑动以在列之间切换(仅限移动模式)', - 'settings.tag_misleading_links': '标记误导性链接', - 'settings.tag_misleading_links.hint': '将带有目标网页链接的视觉指示添加到每个未明确的链接', - 'settings.wide_view': '宽视图(仅限于桌面模式)', - 'settings.wide_view_hint': '拉伸列宽以更好地填充可用空间。', - 'status.collapse': '折叠', - 'status.has_audio': '附带音频文件', - 'status.has_pictures': '附带图片文件', - 'status.has_preview_card': '附带预览卡片', - 'status.has_video': '附带视频文件', - 'status.hide': '隐藏内容', - 'status.in_reply_to': '此嘟文是回复', - 'status.is_poll': '此嘟文是投票', - 'status.local_only': '此嘟文仅本实例可见', - 'status.sensitive_toggle': '点击查看', - 'status.show_filter_reason': '(显示原因)', - 'status.uncollapse': '不折叠', - 'upload_modal.applying': '正在应用...', - 'web_app_crash.change_your_settings': '更改 {settings}', - 'web_app_crash.content': '你可以尝试这些:', - 'web_app_crash.debug_info': '调试信息', - 'web_app_crash.disable_addons': '禁用浏览器插件或本地翻译工具', - 'web_app_crash.issue_tracker': '问题追踪器', - 'web_app_crash.reload': '刷新', - 'web_app_crash.reload_page': '{reload} 此页面', - 'web_app_crash.report_issue': '将错误报告给 {issuetracker}', - 'web_app_crash.settings': '设置', - 'web_app_crash.title': '抱歉,Mastodon 出了点问题。', -}; - -export default Object.assign({}, inherited, messages); \ No newline at end of file diff --git a/app/javascript/flavours/glitch/locales/zh-CN.json b/app/javascript/flavours/glitch/locales/zh-CN.json new file mode 100644 index 000000000..fe03213ae --- /dev/null +++ b/app/javascript/flavours/glitch/locales/zh-CN.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "为 @{name} 添加备注", + "account.disclaimer_full": "以下信息可能无法完整代表你的个人资料。", + "account.follows": "正在关注", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "该用户已被封禁。", + "account.view_full_profile": "查看完整资料", + "account_note.cancel": "取消", + "account_note.edit": "编辑", + "account_note.glitch_placeholder": "暂无备注", + "account_note.save": "保存", + "advanced_options.icon_title": "高级选项", + "advanced_options.local-only.long": "不要发布嘟文到其他实例", + "advanced_options.local-only.short": "本地模式", + "advanced_options.local-only.tooltip": "这条嘟文仅限于本实例", + "advanced_options.threaded_mode.long": "发嘟时自动打开回复", + "advanced_options.threaded_mode.short": "线程模式", + "advanced_options.threaded_mode.tooltip": "线程模式已启用", + "boost_modal.missing_description": "这条嘟文未包含媒体描述", + "column.favourited_by": "喜欢", + "column.heading": "标题", + "column.reblogged_by": "转嘟", + "column.subheading": "其他选项", + "column_header.profile": "个人资料", + "column_subheading.lists": "列表", + "column_subheading.navigation": "导航", + "community.column_settings.allow_local_only": "只显示本地模式嘟文", + "compose.attach": "附上...", + "compose.attach.doodle": "画点什么", + "compose.attach.upload": "上传文件", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "纯文本", + "compose_form.poll.multiple_choices": "允许多选", + "compose_form.poll.single_choice": "允许单选", + "compose_form.spoiler": "隐藏为内容警告", + "confirmation_modal.do_not_ask_again": "下次不显示确认窗口", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "确认", + "confirmations.missing_media_description.edit": "编辑", + "confirmations.missing_media_description.message": "你没有为一种或多种媒体撰写描述。请考虑为视障人士添加描述。", + "confirmations.unfilter.author": "作者", + "confirmations.unfilter.confirm": "查看", + "confirmations.unfilter.edit_filter": "编辑过滤器", + "confirmations.unfilter.filters": "应用 {count, plural, one {过滤器} other {过滤器}}", + "content-type.change": "内容类型 ", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "推荐用户", + "favourite_modal.combo": "下次你可以按 {combo} 跳过这个", + "getting_started.onboarding": "参观一下", + "home.column_settings.advanced": "高级", + "home.column_settings.filter_regex": "按正则表达式过滤", + "home.column_settings.show_direct": "显示私信", + "home.settings": "列表设置", + "keyboard_shortcuts.bookmark": "书签", + "keyboard_shortcuts.secondary_toot": "使用二级隐私设置发送嘟文", + "keyboard_shortcuts.toggle_collapse": "折叠或展开嘟文", + "layout.auto": "自动模式", + "layout.desktop": "桌面模式", + "layout.hint.auto": "根据“启用高级 Web 界面”设置和屏幕大小自动选择布局。", + "layout.hint.desktop": "“使用多列布局,无论“启用高级 Web 界面”设置和屏幕大小如何。", + "layout.hint.single": "使用单列布局,无论“启用高级 Web 界面”设置和屏幕大小如何。", + "layout.single": "移动模式", + "media_gallery.sensitive": "敏感内容", + "moved_to_warning": "此帐户已被标记为移至 {moved_to_link},并且似乎没有收到新关注者。", + "navigation_bar.app_settings": "应用选项", + "navigation_bar.featured_users": "推荐用户", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "杂项", + "notification.markForDeletion": "标记以删除", + "notification_purge.btn_all": "全选", + "notification_purge.btn_apply": "清除已选", + "notification_purge.btn_invert": "反向选择", + "notification_purge.btn_none": "取消全选", + "notification_purge.start": "进入通知清除模式", + "notifications.marked_clear": "清除选择的通知", + "notifications.marked_clear_confirmation": "你确定要永久清除所有选择的通知吗?", + "onboarding.done": "完成", + "onboarding.next": "下一个", + "onboarding.page_five.public_timelines": "本地时间线显示来自 {domain} 中所有人的公开嘟文。跨站时间线显示了 {domain} 用户关注的每个人的公开嘟文。这些被称为公共时间线,是发现新朋友的好方法。", + "onboarding.page_four.home": "你的主页时间线会显示你关注的人的嘟文。", + "onboarding.page_four.notifications": "通知栏显示某人与你互动的内容。", + "onboarding.page_one.federation": "{domain} 是 Mastodon 的一个“实例”。Mastodon 是一个由独立服务器组成的,通过不断联合形成的社交网络。我们称这些服务器为实例。", + "onboarding.page_one.handle": "你位于 {domain},因此你的完整用户名是 {handle} 。", + "onboarding.page_one.welcome": "欢迎来到 {domain}!", + "onboarding.page_six.admin": "实例的管理员是 {admin}。", + "onboarding.page_six.almost_done": "就快完成了...", + "onboarding.page_six.appetoot": "尽情享用吧!", + "onboarding.page_six.apps_available": "有适用于 iOS、Android 和其他平台的应用程序。", + "onboarding.page_six.github": "{domain} 在 Glitchsoc 上运行。Glitchsoc 是 {Mastodon} 的一个友好 {fork},与任何 Mastodon 实例或应用兼容。Glitchsoc 是完全免费和开源的。你可以在 {github} 上报告错误、请求功能或贡献代码。", + "onboarding.page_six.guidelines": "社区准则", + "onboarding.page_six.read_guidelines": "请阅读 {domain} 的 {guidelines}!", + "onboarding.page_six.various_app": "应用程序", + "onboarding.page_three.profile": "编辑你的个人资料,更改你的头像、个人简介和昵称。在那里,你还会发现其他设置。", + "onboarding.page_three.search": "使用搜索栏查找用户并查看标签,例如 #illustration 和 #introductions。要查找不在此实例中的用户,请使用他们的完整用户名。", + "onboarding.page_two.compose": "在撰写框中撰写嘟文。你可以使用下方图标上传图像、更改隐私设置和添加内容警告。", + "onboarding.skip": "跳过", + "settings.always_show_spoilers_field": "始终显示内容警告框", + "settings.auto_collapse": "自动折叠", + "settings.auto_collapse_all": "所有", + "settings.auto_collapse_lengthy": "长嘟文", + "settings.auto_collapse_media": "带媒体文件的嘟文", + "settings.auto_collapse_notifications": "通知", + "settings.auto_collapse_reblogs": "转嘟", + "settings.auto_collapse_replies": "回复", + "settings.close": "关闭", + "settings.collapsed_statuses": "折叠嘟文", + "settings.compose_box_opts": "撰写框", + "settings.confirm_before_clearing_draft": "在覆盖正在写入的嘟文之前显示确认对话框", + "settings.confirm_boost_missing_media_description": "在转嘟缺少媒体描述的嘟文之前显示确认对话框", + "settings.confirm_missing_media_description": "在发送缺少媒体描述的嘟文之前显示确认对话框", + "settings.content_warnings": "内容警告", + "settings.content_warnings.regexp": "正则表达式", + "settings.content_warnings_filter": "不会自动展开的内容警告:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "启用折叠嘟文", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "自动展开内容警告", + "settings.filters": "过滤器", + "settings.general": "一般", + "settings.hicolor_privacy_icons": "彩色隐私图标 ", + "settings.hicolor_privacy_icons.hint": "以明亮且易于区分的颜色显示隐私图标", + "settings.image_backgrounds": "图片背景", + "settings.image_backgrounds_media": "预览折叠嘟文的媒体文件", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "为折叠嘟文附加图片背景", + "settings.inline_preview_cards": "外部链接的内嵌预览卡片", + "settings.layout": "布局:", + "settings.layout_opts": "布局选项", + "settings.media": "媒体", + "settings.media_fullwidth": "全宽媒体预览", + "settings.media_letterbox": "信箱媒体", + "settings.media_letterbox_hint": "缩小媒体以填充图像容器而不是拉伸和裁剪它们", + "settings.media_reveal_behind_cw": "默认显示内容警告后的敏感媒体", + "settings.notifications.favicon_badge": "未读通知网站图标", + "settings.notifications.favicon_badge.hint": "将未读通知添加到网站图标", + "settings.notifications.tab_badge": "未读通知图标", + "settings.notifications.tab_badge.hint": "当通知栏未打开时,显示未读通知图标", + "settings.notifications_opts": "通知选项", + "settings.pop_in_left": "左边", + "settings.pop_in_player": "启用悬浮播放器", + "settings.pop_in_position": "悬浮播放器位置:", + "settings.pop_in_right": "右边", + "settings.preferences": "用户选项", + "settings.prepend_cw_re": "回复时在内容警告前加上“re:”", + "settings.preselect_on_reply": "回复时预先选择用户名", + "settings.preselect_on_reply_hint": "回复与多个参与者的对话时,预先选择第一个用户名", + "settings.rewrite_mentions": "重写嘟文中的提及", + "settings.rewrite_mentions_acct": "重写为用户名和域名(当帐户为远程时)", + "settings.rewrite_mentions_no": "不要重写", + "settings.rewrite_mentions_username": "重写为用户名", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "在折叠的嘟文中显示操作按钮", + "settings.show_content_type_choice": "允许你在撰写嘟文时选择格式类型", + "settings.show_reply_counter": "显示回复的大致数量", + "settings.side_arm": "辅助发嘟按钮:", + "settings.side_arm.none": "无", + "settings.side_arm_reply_mode": "当回复嘟文时:", + "settings.side_arm_reply_mode.copy": "复制被回复嘟文的隐私设置", + "settings.side_arm_reply_mode.keep": "保留辅助发嘟按钮以设置隐私", + "settings.side_arm_reply_mode.restrict": "将隐私设置限制为正在回复的那条嘟文", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "允许滑动以在列之间切换(仅限移动模式)", + "settings.tag_misleading_links": "标记误导性链接", + "settings.tag_misleading_links.hint": "将带有目标网页链接的视觉指示添加到每个未明确的链接", + "settings.wide_view": "宽视图(仅限于桌面模式)", + "settings.wide_view_hint": "拉伸列宽以更好地填充可用空间。", + "status.collapse": "折叠", + "status.has_audio": "附带音频文件", + "status.has_pictures": "附带图片文件", + "status.has_preview_card": "附带预览卡片", + "status.has_video": "附带视频文件", + "status.in_reply_to": "此嘟文是回复", + "status.is_poll": "此嘟文是投票", + "status.local_only": "此嘟文仅本实例可见", + "status.sensitive_toggle": "点击查看", + "status.uncollapse": "不折叠", + "web_app_crash.change_your_settings": "更改 {settings}", + "web_app_crash.content": "你可以尝试这些:", + "web_app_crash.debug_info": "调试信息", + "web_app_crash.disable_addons": "禁用浏览器插件或本地翻译工具", + "web_app_crash.issue_tracker": "问题追踪器", + "web_app_crash.reload": "刷新", + "web_app_crash.reload_page": "{reload} 此页面", + "web_app_crash.report_issue": "将错误报告给 {issuetracker}", + "web_app_crash.settings": "设置", + "web_app_crash.title": "抱歉,Mastodon 出了点问题。" +} diff --git a/app/javascript/flavours/glitch/locales/zh-HK.js b/app/javascript/flavours/glitch/locales/zh-HK.js deleted file mode 100644 index b71c81f2b..000000000 --- a/app/javascript/flavours/glitch/locales/zh-HK.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/zh-HK.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/zh-HK.json b/app/javascript/flavours/glitch/locales/zh-HK.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/zh-HK.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/zh-TW.js b/app/javascript/flavours/glitch/locales/zh-TW.js deleted file mode 100644 index de2b7769c..000000000 --- a/app/javascript/flavours/glitch/locales/zh-TW.js +++ /dev/null @@ -1,7 +0,0 @@ -import inherited from 'mastodon/locales/zh-TW.json'; - -const messages = { - // No translations available. -}; - -export default Object.assign({}, inherited, messages); diff --git a/app/javascript/flavours/glitch/locales/zh-TW.json b/app/javascript/flavours/glitch/locales/zh-TW.json new file mode 100644 index 000000000..807ed8207 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/zh-TW.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/theme.yml b/app/javascript/flavours/glitch/theme.yml index e85dd74e1..181128746 100644 --- a/app/javascript/flavours/glitch/theme.yml +++ b/app/javascript/flavours/glitch/theme.yml @@ -24,10 +24,13 @@ pack: # (OPTIONAL) The directory which contains localization files for # the flavour, relative to this directory. The contents of this -# directory must be `.js` or `.json` files whose names correspond to +# directory must be `.json` files whose names correspond to # language tags and whose default exports are a messages object. locales: locales +# (OPTIONAL) Which flavour to inherit locales from +inherit_locales: vanilla + # (OPTIONAL) A file to use as the preview screenshot for the flavour, # or an array thereof. These are the full path from `app/javascript/`. screenshot: flavours/glitch/images/glitch-preview.jpg diff --git a/config/webpack/generateLocalePacks.js b/config/webpack/generateLocalePacks.js index 09fba4a18..b1b818159 100644 --- a/config/webpack/generateLocalePacks.js +++ b/config/webpack/generateLocalePacks.js @@ -20,18 +20,25 @@ module.exports = Object.keys(flavours).reduce(function (map, entry) { if (!flavour.locales) { return map; } - const locales = readdirSync(flavour.locales).filter( - filename => /\.js(?:on)?$/.test(filename) && !/defaultMessages|whitelist|index/.test(filename) - ); + const locales = readdirSync(flavour.locales).filter(filename => { + return /\.json$/.test(filename) && + !/defaultMessages/.test(filename) && + !/whitelist/.test(filename); + }).map(filename => filename.replace(/\.json$/, '')); + + let inherited_locales_path = null; + if (flavour.inherit_locales && flavours[flavour.inherit_locales]?.locales) { + inherited_locales_path = flavours[flavour.inherit_locales]?.locales; + } + const outPath = resolve('tmp', 'locales', entry); rimraf.sync(outPath); mkdirp.sync(outPath); locales.forEach(function (locale) { - const localeName = locale.replace(/\.js(?:on)?$/, ''); - const localePath = join(outPath, `${localeName}.js`); - const baseLocale = localeName.split('-')[0]; // e.g. 'zh-TW' -> 'zh' + const localePath = join(outPath, `${locale}.js`); + const baseLocale = locale.split('-')[0]; // e.g. 'zh-TW' -> 'zh' const localeDataPath = [ // first try react-intl `node_modules/react-intl/locale-data/${baseLocale}.js`, @@ -45,21 +52,22 @@ module.exports = Object.keys(flavours).reduce(function (map, entry) { filename => filename.replace(/(?:node_modules|app\/javascript)\//, '') )[0]; const localeContent = `// -// locales/${entry}/${localeName}.js +// locales/${entry}/${locale}.js // automatically generated by generateLocalePacks.js // -import messages from '../../../${flavour.locales}/${locale.replace(/\.js$/, '')}'; +${inherited_locales_path ? `import inherited from '../../../${inherited_locales_path}/${locale}.json';` : ''} +import messages from '../../../${flavour.locales}/${locale}.json'; import localeData from '${localeDataPath}'; import { setLocale } from 'locales'; setLocale({ localeData, - messages, + ${inherited_locales_path ? 'messages: Object.assign({}, inherited, messages)' : 'messages'}, }); `; writeFileSync(localePath, localeContent, 'utf8'); - map[`locales/${entry}/${localeName}`] = localePath; + map[`locales/${entry}/${locale}`] = localePath; }); return map; diff --git a/config/webpack/translationRunner.js b/config/webpack/translationRunner.js index 38050baf8..c7f84cc7e 100644 --- a/config/webpack/translationRunner.js +++ b/config/webpack/translationRunner.js @@ -1,11 +1,12 @@ const fs = require('fs'); const path = require('path'); -const { default: manageTranslations } = require('react-intl-translations-manager'); +const { default: manageTranslations, readMessageFiles } = require('react-intl-translations-manager'); const RFC5646_REGEXP = /^[a-z]{2,3}(?:-(?:x|[A-Za-z]{2,4}))*$/; const rootDirectory = path.resolve(__dirname, '..', '..'); -const translationsDirectory = path.resolve(rootDirectory, 'app', 'javascript', 'mastodon', 'locales'); +const externalDefaultMessages = path.resolve(rootDirectory, 'app', 'javascript', 'mastodon', 'locales', 'defaultMessages.json'); +const translationsDirectory = path.resolve(rootDirectory, 'app', 'javascript', 'flavours', 'glitch', 'locales'); const messagesDirectory = path.resolve(rootDirectory, 'build', 'messages'); const availableLanguages = fs.readdirSync(translationsDirectory).reduce((languages, filename) => { const basename = path.basename(filename, '.json'); @@ -86,6 +87,25 @@ validateLanguages(languages, [ !argv.force && testAvailability, ].filter(Boolean)); +// Override `provideExtractedMessages` to ignore translation strings provided upstream already +const provideExtractedMessages = () => { + const extractedMessages = readMessageFiles(messagesDirectory); + const originalExtractedMessages = JSON.parse(fs.readFileSync(externalDefaultMessages, 'utf8')); + const originalKeys = new Set(); + + originalExtractedMessages.forEach(file => { + file.descriptors.forEach(descriptor => { + originalKeys.add(descriptor.id) + }); + }); + + extractedMessages.forEach(file => { + file.descriptors = file.descriptors.filter((descriptor) => !originalKeys.has(descriptor.id)); + }); + + return extractedMessages.filter((file) => file.descriptors.length > 0); +}; + // manage translations manageTranslations({ messagesDirectory, @@ -96,4 +116,7 @@ manageTranslations({ jsonOptions: { trailingNewline: true, }, + overrideCoreMethods: { + provideExtractedMessages, + }, }); -- cgit From 0b71a4770f7c7e161cc62bb6fadff4613584473a Mon Sep 17 00:00:00 2001 From: Claire Date: Wed, 21 Dec 2022 23:19:14 +0100 Subject: New Crowdin updates (#2032) * New translations en.json (French) [ci skip] * New translations en.json (Belarusian) [ci skip] * New translations en.json (Frisian) [ci skip] * New translations en.json (Spanish, Argentina) [ci skip] * New translations en.json (Spanish, Mexico) [ci skip] * New translations en.json (English, United Kingdom) [ci skip] * New translations en.json (Burmese) [ci skip] * New translations en.json (Faroese) [ci skip] * New translations en.json (Latin) [ci skip] * New translations en.json (Bosnian) [ci skip] * New translations en.json (French, Quebec) [ci skip] * New translations en.json (Aragonese) [ci skip] * New translations en.json (Scots) [ci skip] * New translations en.json (Igbo) [ci skip] * New translations en.yml (Romanian) [ci skip] * New translations en.yml (French) [ci skip] * New translations en.yml (Spanish) [ci skip] * New translations en.yml (Afrikaans) [ci skip] * New translations en.yml (Arabic) [ci skip] * New translations en.yml (Belarusian) [ci skip] * New translations en.yml (Bulgarian) [ci skip] * New translations en.yml (Catalan) [ci skip] * New translations en.yml (Danish) [ci skip] * New translations en.yml (German) [ci skip] * New translations en.yml (Greek) [ci skip] * New translations en.yml (Frisian) [ci skip] * New translations en.yml (Basque) [ci skip] * New translations en.yml (Finnish) [ci skip] * New translations en.yml (Irish) [ci skip] * New translations en.yml (Hebrew) [ci skip] * New translations en.yml (Hungarian) [ci skip] * New translations en.yml (Armenian) [ci skip] * New translations en.yml (Italian) [ci skip] * New translations en.yml (Japanese) [ci skip] * New translations en.yml (Georgian) [ci skip] * New translations en.yml (Korean) [ci skip] * New translations en.yml (Lithuanian) [ci skip] * New translations en.yml (Macedonian) [ci skip] * New translations en.yml (Dutch) [ci skip] * New translations en.yml (Norwegian) [ci skip] * New translations en.yml (Punjabi) [ci skip] * New translations en.yml (Polish) [ci skip] * New translations en.yml (Portuguese) [ci skip] * New translations en.yml (Russian) [ci skip] * New translations en.yml (Slovak) [ci skip] * New translations en.yml (Slovenian) [ci skip] * New translations en.yml (Albanian) [ci skip] * New translations en.yml (Serbian (Cyrillic)) [ci skip] * New translations en.yml (Swedish) [ci skip] * New translations en.yml (Turkish) [ci skip] * New translations en.yml (Ukrainian) [ci skip] * New translations en.yml (Chinese Simplified) [ci skip] * New translations en.yml (Chinese Traditional) [ci skip] * New translations en.yml (Urdu (Pakistan)) [ci skip] * New translations en.yml (Vietnamese) [ci skip] * New translations en.yml (Galician) [ci skip] * New translations en.yml (Icelandic) [ci skip] * New translations en.yml (Portuguese, Brazilian) [ci skip] * New translations en.yml (Indonesian) [ci skip] * New translations en.yml (Persian) [ci skip] * New translations en.yml (Tamil) [ci skip] * New translations en.yml (Spanish, Argentina) [ci skip] * New translations en.yml (Spanish, Mexico) [ci skip] * New translations en.yml (Bengali) [ci skip] * New translations en.yml (Marathi) [ci skip] * New translations en.yml (Thai) [ci skip] * New translations en.yml (Croatian) [ci skip] * New translations en.yml (Norwegian Nynorsk) [ci skip] * New translations en.yml (Kazakh) [ci skip] * New translations en.yml (Estonian) [ci skip] * New translations en.yml (Latvian) [ci skip] * New translations en.yml (Hindi) [ci skip] * New translations en.yml (Malay) [ci skip] * New translations en.yml (Telugu) [ci skip] * New translations en.yml (English, United Kingdom) [ci skip] * New translations en.yml (Burmese) [ci skip] * New translations en.yml (Welsh) [ci skip] * New translations en.yml (Faroese) [ci skip] * New translations en.yml (Esperanto) [ci skip] * New translations en.yml (Uyghur) [ci skip] * New translations en.yml (Chinese Traditional, Hong Kong) [ci skip] * New translations en.yml (Tatar) [ci skip] * New translations en.yml (Malayalam) [ci skip] * New translations en.yml (Breton) [ci skip] * New translations en.yml (Latin) [ci skip] * New translations en.yml (Bosnian) [ci skip] * New translations en.yml (French, Quebec) [ci skip] * New translations en.yml (Sinhala) [ci skip] * New translations en.yml (Cornish) [ci skip] * New translations en.yml (Kannada) [ci skip] * New translations en.yml (Scottish Gaelic) [ci skip] * New translations en.yml (Asturian) [ci skip] * New translations en.yml (Aragonese) [ci skip] * New translations en.yml (Occitan) [ci skip] * New translations en.yml (Serbian (Latin)) [ci skip] * New translations en.yml (Kurmanji (Kurdish)) [ci skip] * New translations en.yml (Sorani (Kurdish)) [ci skip] * New translations en.yml (Scots) [ci skip] * New translations en.yml (Igbo) [ci skip] * New translations en.yml (Corsican) [ci skip] * New translations en.yml (Sardinian) [ci skip] * New translations en.yml (Sanskrit) [ci skip] * New translations en.yml (Kabyle) [ci skip] * New translations en.yml (Ido) [ci skip] * New translations simple_form.en.yml (Romanian) [ci skip] * New translations simple_form.en.yml (French) [ci skip] * New translations simple_form.en.yml (Spanish) [ci skip] * New translations simple_form.en.yml (Afrikaans) [ci skip] * New translations simple_form.en.yml (Arabic) [ci skip] * New translations simple_form.en.yml (Belarusian) [ci skip] * New translations simple_form.en.yml (Bulgarian) [ci skip] * New translations simple_form.en.yml (Catalan) [ci skip] * New translations simple_form.en.yml (Danish) [ci skip] * New translations simple_form.en.yml (German) [ci skip] * New translations simple_form.en.yml (Greek) [ci skip] * New translations simple_form.en.yml (Frisian) [ci skip] * New translations simple_form.en.yml (Basque) [ci skip] * New translations simple_form.en.yml (Finnish) [ci skip] * New translations simple_form.en.yml (Irish) [ci skip] * New translations simple_form.en.yml (Hebrew) [ci skip] * New translations simple_form.en.yml (Hungarian) [ci skip] * New translations simple_form.en.yml (Armenian) [ci skip] * New translations simple_form.en.yml (Italian) [ci skip] * New translations simple_form.en.yml (Japanese) [ci skip] * New translations simple_form.en.yml (Georgian) [ci skip] * New translations simple_form.en.yml (Korean) [ci skip] * New translations simple_form.en.yml (Lithuanian) [ci skip] * New translations simple_form.en.yml (Macedonian) [ci skip] * New translations simple_form.en.yml (Dutch) [ci skip] * New translations simple_form.en.yml (Norwegian) [ci skip] * New translations simple_form.en.yml (Punjabi) [ci skip] * New translations simple_form.en.yml (Polish) [ci skip] * New translations simple_form.en.yml (Portuguese) [ci skip] * New translations simple_form.en.yml (Russian) [ci skip] * New translations simple_form.en.yml (Slovak) [ci skip] * New translations simple_form.en.yml (Slovenian) [ci skip] * New translations simple_form.en.yml (Albanian) [ci skip] * New translations simple_form.en.yml (Serbian (Cyrillic)) [ci skip] * New translations simple_form.en.yml (Swedish) [ci skip] * New translations simple_form.en.yml (Turkish) [ci skip] * New translations simple_form.en.yml (Ukrainian) [ci skip] * New translations simple_form.en.yml (Chinese Simplified) [ci skip] * New translations simple_form.en.yml (Chinese Traditional) [ci skip] * New translations simple_form.en.yml (Urdu (Pakistan)) [ci skip] * New translations simple_form.en.yml (Vietnamese) [ci skip] * New translations simple_form.en.yml (Galician) [ci skip] * New translations simple_form.en.yml (Icelandic) [ci skip] * New translations simple_form.en.yml (Portuguese, Brazilian) [ci skip] * New translations simple_form.en.yml (Indonesian) [ci skip] * New translations simple_form.en.yml (Persian) [ci skip] * New translations simple_form.en.yml (Tamil) [ci skip] * New translations simple_form.en.yml (Spanish, Argentina) [ci skip] * New translations simple_form.en.yml (Spanish, Mexico) [ci skip] * New translations simple_form.en.yml (Bengali) [ci skip] * New translations simple_form.en.yml (Marathi) [ci skip] * New translations simple_form.en.yml (Thai) [ci skip] * New translations simple_form.en.yml (Croatian) [ci skip] * New translations simple_form.en.yml (Norwegian Nynorsk) [ci skip] * New translations simple_form.en.yml (Kazakh) [ci skip] * New translations simple_form.en.yml (Estonian) [ci skip] * New translations simple_form.en.yml (Latvian) [ci skip] * New translations simple_form.en.yml (Hindi) [ci skip] * New translations simple_form.en.yml (Malay) [ci skip] * New translations simple_form.en.yml (Telugu) [ci skip] * New translations simple_form.en.yml (English, United Kingdom) [ci skip] * New translations simple_form.en.yml (Burmese) [ci skip] * New translations simple_form.en.yml (Welsh) [ci skip] * New translations simple_form.en.yml (Faroese) [ci skip] * New translations simple_form.en.yml (Esperanto) [ci skip] * New translations simple_form.en.yml (Uyghur) [ci skip] * New translations simple_form.en.yml (Chinese Traditional, Hong Kong) [ci skip] * New translations simple_form.en.yml (Tatar) [ci skip] * New translations simple_form.en.yml (Malayalam) [ci skip] * New translations simple_form.en.yml (Breton) [ci skip] * New translations simple_form.en.yml (Latin) [ci skip] * New translations simple_form.en.yml (Bosnian) [ci skip] * New translations simple_form.en.yml (French, Quebec) [ci skip] * New translations simple_form.en.yml (Sinhala) [ci skip] * New translations simple_form.en.yml (Cornish) [ci skip] * New translations simple_form.en.yml (Kannada) [ci skip] * New translations simple_form.en.yml (Scottish Gaelic) [ci skip] * New translations simple_form.en.yml (Asturian) [ci skip] * New translations simple_form.en.yml (Aragonese) [ci skip] * New translations simple_form.en.yml (Occitan) [ci skip] * New translations simple_form.en.yml (Serbian (Latin)) [ci skip] * New translations simple_form.en.yml (Kurmanji (Kurdish)) [ci skip] * New translations simple_form.en.yml (Sorani (Kurdish)) [ci skip] * New translations simple_form.en.yml (Scots) [ci skip] * New translations simple_form.en.yml (Igbo) [ci skip] * New translations simple_form.en.yml (Corsican) [ci skip] * New translations simple_form.en.yml (Sardinian) [ci skip] * New translations simple_form.en.yml (Sanskrit) [ci skip] * New translations simple_form.en.yml (Kabyle) [ci skip] * New translations simple_form.en.yml (Ido) [ci skip] --- app/javascript/flavours/glitch/locales/an.json | 201 ++++++++++++++++++++++ app/javascript/flavours/glitch/locales/be.json | 201 ++++++++++++++++++++++ app/javascript/flavours/glitch/locales/bs.json | 201 ++++++++++++++++++++++ app/javascript/flavours/glitch/locales/en-GB.json | 201 ++++++++++++++++++++++ app/javascript/flavours/glitch/locales/es-AR.json | 180 +++++++++---------- app/javascript/flavours/glitch/locales/es-MX.json | 180 +++++++++---------- app/javascript/flavours/glitch/locales/fo.json | 201 ++++++++++++++++++++++ app/javascript/flavours/glitch/locales/fr-QC.json | 201 ++++++++++++++++++++++ app/javascript/flavours/glitch/locales/fr.json | 2 +- app/javascript/flavours/glitch/locales/fy.json | 201 ++++++++++++++++++++++ app/javascript/flavours/glitch/locales/ig.json | 201 ++++++++++++++++++++++ app/javascript/flavours/glitch/locales/la.json | 201 ++++++++++++++++++++++ app/javascript/flavours/glitch/locales/my.json | 201 ++++++++++++++++++++++ app/javascript/flavours/glitch/locales/sco.json | 201 ++++++++++++++++++++++ config/locales-glitch/af.yml | 38 ++++ config/locales-glitch/an.yml | 38 ++++ config/locales-glitch/ar.yml | 38 ++++ config/locales-glitch/ast.yml | 38 ++++ config/locales-glitch/be.yml | 38 ++++ config/locales-glitch/bg.yml | 38 ++++ config/locales-glitch/bn.yml | 38 ++++ config/locales-glitch/br.yml | 38 ++++ config/locales-glitch/bs.yml | 38 ++++ config/locales-glitch/ca.yml | 38 ++++ config/locales-glitch/ckb.yml | 38 ++++ config/locales-glitch/co.yml | 38 ++++ config/locales-glitch/cy.yml | 38 ++++ config/locales-glitch/da.yml | 38 ++++ config/locales-glitch/de.yml | 38 ++++ config/locales-glitch/el.yml | 38 ++++ config/locales-glitch/en-GB.yml | 38 ++++ config/locales-glitch/eo.yml | 38 ++++ config/locales-glitch/es-AR.yml | 38 ++++ config/locales-glitch/es-MX.yml | 38 ++++ config/locales-glitch/es.yml | 18 ++ config/locales-glitch/et.yml | 38 ++++ config/locales-glitch/eu.yml | 38 ++++ config/locales-glitch/fa.yml | 38 ++++ config/locales-glitch/fi.yml | 38 ++++ config/locales-glitch/fo.yml | 38 ++++ config/locales-glitch/fr-QC.yml | 38 ++++ config/locales-glitch/fr.yml | 38 ++++ config/locales-glitch/fy.yml | 38 ++++ config/locales-glitch/ga.yml | 38 ++++ config/locales-glitch/gd.yml | 38 ++++ config/locales-glitch/gl.yml | 38 ++++ config/locales-glitch/he.yml | 38 ++++ config/locales-glitch/hi.yml | 38 ++++ config/locales-glitch/hr.yml | 38 ++++ config/locales-glitch/hu.yml | 38 ++++ config/locales-glitch/hy.yml | 38 ++++ config/locales-glitch/id.yml | 38 ++++ config/locales-glitch/ig.yml | 38 ++++ config/locales-glitch/io.yml | 38 ++++ config/locales-glitch/is.yml | 38 ++++ config/locales-glitch/it.yml | 38 ++++ config/locales-glitch/ja.yml | 18 ++ config/locales-glitch/ka.yml | 38 ++++ config/locales-glitch/kab.yml | 38 ++++ config/locales-glitch/kk.yml | 38 ++++ config/locales-glitch/kn.yml | 38 ++++ config/locales-glitch/ko.yml | 8 + config/locales-glitch/ku.yml | 38 ++++ config/locales-glitch/kw.yml | 38 ++++ config/locales-glitch/la.yml | 38 ++++ config/locales-glitch/lt.yml | 38 ++++ config/locales-glitch/lv.yml | 38 ++++ config/locales-glitch/mk.yml | 38 ++++ config/locales-glitch/ml.yml | 38 ++++ config/locales-glitch/mr.yml | 38 ++++ config/locales-glitch/ms.yml | 38 ++++ config/locales-glitch/my.yml | 38 ++++ config/locales-glitch/nl.yml | 38 ++++ config/locales-glitch/nn.yml | 38 ++++ config/locales-glitch/no.yml | 38 ++++ config/locales-glitch/oc.yml | 38 ++++ config/locales-glitch/pa.yml | 38 ++++ config/locales-glitch/pl.yml | 32 ++++ config/locales-glitch/pt-BR.yml | 38 ++++ config/locales-glitch/pt-PT.yml | 38 ++++ config/locales-glitch/ro.yml | 38 ++++ config/locales-glitch/ru.yml | 38 ++++ config/locales-glitch/sa.yml | 38 ++++ config/locales-glitch/sc.yml | 38 ++++ config/locales-glitch/sco.yml | 38 ++++ config/locales-glitch/si.yml | 38 ++++ config/locales-glitch/simple_form.af.yml | 27 +++ config/locales-glitch/simple_form.an.yml | 27 +++ config/locales-glitch/simple_form.ar.yml | 27 +++ config/locales-glitch/simple_form.ast.yml | 27 +++ config/locales-glitch/simple_form.be.yml | 27 +++ config/locales-glitch/simple_form.bg.yml | 27 +++ config/locales-glitch/simple_form.bn.yml | 27 +++ config/locales-glitch/simple_form.br.yml | 27 +++ config/locales-glitch/simple_form.bs.yml | 27 +++ config/locales-glitch/simple_form.ca.yml | 27 +++ config/locales-glitch/simple_form.ckb.yml | 27 +++ config/locales-glitch/simple_form.co.yml | 27 +++ config/locales-glitch/simple_form.cy.yml | 27 +++ config/locales-glitch/simple_form.da.yml | 27 +++ config/locales-glitch/simple_form.de.yml | 27 +++ config/locales-glitch/simple_form.el.yml | 27 +++ config/locales-glitch/simple_form.en-GB.yml | 27 +++ config/locales-glitch/simple_form.eo.yml | 27 +++ config/locales-glitch/simple_form.es-AR.yml | 27 +++ config/locales-glitch/simple_form.es-MX.yml | 27 +++ config/locales-glitch/simple_form.es.yml | 7 + config/locales-glitch/simple_form.et.yml | 27 +++ config/locales-glitch/simple_form.eu.yml | 27 +++ config/locales-glitch/simple_form.fa.yml | 27 +++ config/locales-glitch/simple_form.fi.yml | 27 +++ config/locales-glitch/simple_form.fo.yml | 27 +++ config/locales-glitch/simple_form.fr-QC.yml | 27 +++ config/locales-glitch/simple_form.fr.yml | 27 +++ config/locales-glitch/simple_form.fy.yml | 27 +++ config/locales-glitch/simple_form.ga.yml | 27 +++ config/locales-glitch/simple_form.gd.yml | 27 +++ config/locales-glitch/simple_form.gl.yml | 27 +++ config/locales-glitch/simple_form.he.yml | 27 +++ config/locales-glitch/simple_form.hi.yml | 27 +++ config/locales-glitch/simple_form.hr.yml | 27 +++ config/locales-glitch/simple_form.hu.yml | 27 +++ config/locales-glitch/simple_form.hy.yml | 27 +++ config/locales-glitch/simple_form.id.yml | 27 +++ config/locales-glitch/simple_form.ig.yml | 27 +++ config/locales-glitch/simple_form.io.yml | 27 +++ config/locales-glitch/simple_form.is.yml | 27 +++ config/locales-glitch/simple_form.it.yml | 27 +++ config/locales-glitch/simple_form.ja.yml | 7 + config/locales-glitch/simple_form.ka.yml | 27 +++ config/locales-glitch/simple_form.kab.yml | 27 +++ config/locales-glitch/simple_form.kk.yml | 27 +++ config/locales-glitch/simple_form.kn.yml | 27 +++ config/locales-glitch/simple_form.ko.yml | 3 + config/locales-glitch/simple_form.ku.yml | 27 +++ config/locales-glitch/simple_form.kw.yml | 27 +++ config/locales-glitch/simple_form.la.yml | 27 +++ config/locales-glitch/simple_form.lt.yml | 27 +++ config/locales-glitch/simple_form.lv.yml | 27 +++ config/locales-glitch/simple_form.mk.yml | 27 +++ config/locales-glitch/simple_form.ml.yml | 27 +++ config/locales-glitch/simple_form.mr.yml | 27 +++ config/locales-glitch/simple_form.ms.yml | 27 +++ config/locales-glitch/simple_form.my.yml | 27 +++ config/locales-glitch/simple_form.nl.yml | 27 +++ config/locales-glitch/simple_form.nn.yml | 27 +++ config/locales-glitch/simple_form.no.yml | 27 +++ config/locales-glitch/simple_form.oc.yml | 27 +++ config/locales-glitch/simple_form.pa.yml | 27 +++ config/locales-glitch/simple_form.pl.yml | 17 ++ config/locales-glitch/simple_form.pt-BR.yml | 27 +++ config/locales-glitch/simple_form.pt-PT.yml | 27 +++ config/locales-glitch/simple_form.ro.yml | 27 +++ config/locales-glitch/simple_form.ru.yml | 27 +++ config/locales-glitch/simple_form.sa.yml | 27 +++ config/locales-glitch/simple_form.sc.yml | 27 +++ config/locales-glitch/simple_form.sco.yml | 27 +++ config/locales-glitch/simple_form.si.yml | 27 +++ config/locales-glitch/simple_form.sk.yml | 27 +++ config/locales-glitch/simple_form.sl.yml | 27 +++ config/locales-glitch/simple_form.sq.yml | 27 +++ config/locales-glitch/simple_form.sr-Latn.yml | 27 +++ config/locales-glitch/simple_form.sr.yml | 27 +++ config/locales-glitch/simple_form.sv.yml | 27 +++ config/locales-glitch/simple_form.ta.yml | 27 +++ config/locales-glitch/simple_form.te.yml | 27 +++ config/locales-glitch/simple_form.th.yml | 27 +++ config/locales-glitch/simple_form.tr.yml | 27 +++ config/locales-glitch/simple_form.tt.yml | 27 +++ config/locales-glitch/simple_form.ug.yml | 27 +++ config/locales-glitch/simple_form.uk.yml | 27 +++ config/locales-glitch/simple_form.ur.yml | 27 +++ config/locales-glitch/simple_form.vi.yml | 27 +++ config/locales-glitch/simple_form.zh-CN.yml | 7 + config/locales-glitch/simple_form.zh-HK.yml | 27 +++ config/locales-glitch/simple_form.zh-TW.yml | 27 +++ config/locales-glitch/sk.yml | 38 ++++ config/locales-glitch/sl.yml | 38 ++++ config/locales-glitch/sq.yml | 38 ++++ config/locales-glitch/sr-Latn.yml | 38 ++++ config/locales-glitch/sr.yml | 38 ++++ config/locales-glitch/sv.yml | 38 ++++ config/locales-glitch/ta.yml | 38 ++++ config/locales-glitch/te.yml | 38 ++++ config/locales-glitch/th.yml | 38 ++++ config/locales-glitch/tr.yml | 38 ++++ config/locales-glitch/tt.yml | 38 ++++ config/locales-glitch/ug.yml | 38 ++++ config/locales-glitch/uk.yml | 38 ++++ config/locales-glitch/ur.yml | 38 ++++ config/locales-glitch/vi.yml | 38 ++++ config/locales-glitch/zh-CN.yml | 18 ++ config/locales-glitch/zh-HK.yml | 38 ++++ config/locales-glitch/zh-TW.yml | 38 ++++ 194 files changed, 8052 insertions(+), 181 deletions(-) create mode 100644 app/javascript/flavours/glitch/locales/an.json create mode 100644 app/javascript/flavours/glitch/locales/be.json create mode 100644 app/javascript/flavours/glitch/locales/bs.json create mode 100644 app/javascript/flavours/glitch/locales/en-GB.json create mode 100644 app/javascript/flavours/glitch/locales/fo.json create mode 100644 app/javascript/flavours/glitch/locales/fr-QC.json create mode 100644 app/javascript/flavours/glitch/locales/fy.json create mode 100644 app/javascript/flavours/glitch/locales/ig.json create mode 100644 app/javascript/flavours/glitch/locales/la.json create mode 100644 app/javascript/flavours/glitch/locales/my.json create mode 100644 app/javascript/flavours/glitch/locales/sco.json create mode 100644 config/locales-glitch/af.yml create mode 100644 config/locales-glitch/an.yml create mode 100644 config/locales-glitch/ar.yml create mode 100644 config/locales-glitch/ast.yml create mode 100644 config/locales-glitch/be.yml create mode 100644 config/locales-glitch/bg.yml create mode 100644 config/locales-glitch/bn.yml create mode 100644 config/locales-glitch/br.yml create mode 100644 config/locales-glitch/bs.yml create mode 100644 config/locales-glitch/ca.yml create mode 100644 config/locales-glitch/ckb.yml create mode 100644 config/locales-glitch/co.yml create mode 100644 config/locales-glitch/cy.yml create mode 100644 config/locales-glitch/da.yml create mode 100644 config/locales-glitch/de.yml create mode 100644 config/locales-glitch/el.yml create mode 100644 config/locales-glitch/en-GB.yml create mode 100644 config/locales-glitch/eo.yml create mode 100644 config/locales-glitch/es-AR.yml create mode 100644 config/locales-glitch/es-MX.yml create mode 100644 config/locales-glitch/et.yml create mode 100644 config/locales-glitch/eu.yml create mode 100644 config/locales-glitch/fa.yml create mode 100644 config/locales-glitch/fi.yml create mode 100644 config/locales-glitch/fo.yml create mode 100644 config/locales-glitch/fr-QC.yml create mode 100644 config/locales-glitch/fr.yml create mode 100644 config/locales-glitch/fy.yml create mode 100644 config/locales-glitch/ga.yml create mode 100644 config/locales-glitch/gd.yml create mode 100644 config/locales-glitch/gl.yml create mode 100644 config/locales-glitch/he.yml create mode 100644 config/locales-glitch/hi.yml create mode 100644 config/locales-glitch/hr.yml create mode 100644 config/locales-glitch/hu.yml create mode 100644 config/locales-glitch/hy.yml create mode 100644 config/locales-glitch/id.yml create mode 100644 config/locales-glitch/ig.yml create mode 100644 config/locales-glitch/io.yml create mode 100644 config/locales-glitch/is.yml create mode 100644 config/locales-glitch/it.yml create mode 100644 config/locales-glitch/ka.yml create mode 100644 config/locales-glitch/kab.yml create mode 100644 config/locales-glitch/kk.yml create mode 100644 config/locales-glitch/kn.yml create mode 100644 config/locales-glitch/ku.yml create mode 100644 config/locales-glitch/kw.yml create mode 100644 config/locales-glitch/la.yml create mode 100644 config/locales-glitch/lt.yml create mode 100644 config/locales-glitch/lv.yml create mode 100644 config/locales-glitch/mk.yml create mode 100644 config/locales-glitch/ml.yml create mode 100644 config/locales-glitch/mr.yml create mode 100644 config/locales-glitch/ms.yml create mode 100644 config/locales-glitch/my.yml create mode 100644 config/locales-glitch/nl.yml create mode 100644 config/locales-glitch/nn.yml create mode 100644 config/locales-glitch/no.yml create mode 100644 config/locales-glitch/oc.yml create mode 100644 config/locales-glitch/pa.yml create mode 100644 config/locales-glitch/pt-BR.yml create mode 100644 config/locales-glitch/pt-PT.yml create mode 100644 config/locales-glitch/ro.yml create mode 100644 config/locales-glitch/ru.yml create mode 100644 config/locales-glitch/sa.yml create mode 100644 config/locales-glitch/sc.yml create mode 100644 config/locales-glitch/sco.yml create mode 100644 config/locales-glitch/si.yml create mode 100644 config/locales-glitch/simple_form.af.yml create mode 100644 config/locales-glitch/simple_form.an.yml create mode 100644 config/locales-glitch/simple_form.ar.yml create mode 100644 config/locales-glitch/simple_form.ast.yml create mode 100644 config/locales-glitch/simple_form.be.yml create mode 100644 config/locales-glitch/simple_form.bg.yml create mode 100644 config/locales-glitch/simple_form.bn.yml create mode 100644 config/locales-glitch/simple_form.br.yml create mode 100644 config/locales-glitch/simple_form.bs.yml create mode 100644 config/locales-glitch/simple_form.ca.yml create mode 100644 config/locales-glitch/simple_form.ckb.yml create mode 100644 config/locales-glitch/simple_form.co.yml create mode 100644 config/locales-glitch/simple_form.cy.yml create mode 100644 config/locales-glitch/simple_form.da.yml create mode 100644 config/locales-glitch/simple_form.de.yml create mode 100644 config/locales-glitch/simple_form.el.yml create mode 100644 config/locales-glitch/simple_form.en-GB.yml create mode 100644 config/locales-glitch/simple_form.eo.yml create mode 100644 config/locales-glitch/simple_form.es-AR.yml create mode 100644 config/locales-glitch/simple_form.es-MX.yml create mode 100644 config/locales-glitch/simple_form.et.yml create mode 100644 config/locales-glitch/simple_form.eu.yml create mode 100644 config/locales-glitch/simple_form.fa.yml create mode 100644 config/locales-glitch/simple_form.fi.yml create mode 100644 config/locales-glitch/simple_form.fo.yml create mode 100644 config/locales-glitch/simple_form.fr-QC.yml create mode 100644 config/locales-glitch/simple_form.fr.yml create mode 100644 config/locales-glitch/simple_form.fy.yml create mode 100644 config/locales-glitch/simple_form.ga.yml create mode 100644 config/locales-glitch/simple_form.gd.yml create mode 100644 config/locales-glitch/simple_form.gl.yml create mode 100644 config/locales-glitch/simple_form.he.yml create mode 100644 config/locales-glitch/simple_form.hi.yml create mode 100644 config/locales-glitch/simple_form.hr.yml create mode 100644 config/locales-glitch/simple_form.hu.yml create mode 100644 config/locales-glitch/simple_form.hy.yml create mode 100644 config/locales-glitch/simple_form.id.yml create mode 100644 config/locales-glitch/simple_form.ig.yml create mode 100644 config/locales-glitch/simple_form.io.yml create mode 100644 config/locales-glitch/simple_form.is.yml create mode 100644 config/locales-glitch/simple_form.it.yml create mode 100644 config/locales-glitch/simple_form.ka.yml create mode 100644 config/locales-glitch/simple_form.kab.yml create mode 100644 config/locales-glitch/simple_form.kk.yml create mode 100644 config/locales-glitch/simple_form.kn.yml create mode 100644 config/locales-glitch/simple_form.ku.yml create mode 100644 config/locales-glitch/simple_form.kw.yml create mode 100644 config/locales-glitch/simple_form.la.yml create mode 100644 config/locales-glitch/simple_form.lt.yml create mode 100644 config/locales-glitch/simple_form.lv.yml create mode 100644 config/locales-glitch/simple_form.mk.yml create mode 100644 config/locales-glitch/simple_form.ml.yml create mode 100644 config/locales-glitch/simple_form.mr.yml create mode 100644 config/locales-glitch/simple_form.ms.yml create mode 100644 config/locales-glitch/simple_form.my.yml create mode 100644 config/locales-glitch/simple_form.nl.yml create mode 100644 config/locales-glitch/simple_form.nn.yml create mode 100644 config/locales-glitch/simple_form.no.yml create mode 100644 config/locales-glitch/simple_form.oc.yml create mode 100644 config/locales-glitch/simple_form.pa.yml create mode 100644 config/locales-glitch/simple_form.pt-BR.yml create mode 100644 config/locales-glitch/simple_form.pt-PT.yml create mode 100644 config/locales-glitch/simple_form.ro.yml create mode 100644 config/locales-glitch/simple_form.ru.yml create mode 100644 config/locales-glitch/simple_form.sa.yml create mode 100644 config/locales-glitch/simple_form.sc.yml create mode 100644 config/locales-glitch/simple_form.sco.yml create mode 100644 config/locales-glitch/simple_form.si.yml create mode 100644 config/locales-glitch/simple_form.sk.yml create mode 100644 config/locales-glitch/simple_form.sl.yml create mode 100644 config/locales-glitch/simple_form.sq.yml create mode 100644 config/locales-glitch/simple_form.sr-Latn.yml create mode 100644 config/locales-glitch/simple_form.sr.yml create mode 100644 config/locales-glitch/simple_form.sv.yml create mode 100644 config/locales-glitch/simple_form.ta.yml create mode 100644 config/locales-glitch/simple_form.te.yml create mode 100644 config/locales-glitch/simple_form.th.yml create mode 100644 config/locales-glitch/simple_form.tr.yml create mode 100644 config/locales-glitch/simple_form.tt.yml create mode 100644 config/locales-glitch/simple_form.ug.yml create mode 100644 config/locales-glitch/simple_form.uk.yml create mode 100644 config/locales-glitch/simple_form.ur.yml create mode 100644 config/locales-glitch/simple_form.vi.yml create mode 100644 config/locales-glitch/simple_form.zh-HK.yml create mode 100644 config/locales-glitch/simple_form.zh-TW.yml create mode 100644 config/locales-glitch/sk.yml create mode 100644 config/locales-glitch/sl.yml create mode 100644 config/locales-glitch/sq.yml create mode 100644 config/locales-glitch/sr-Latn.yml create mode 100644 config/locales-glitch/sr.yml create mode 100644 config/locales-glitch/sv.yml create mode 100644 config/locales-glitch/ta.yml create mode 100644 config/locales-glitch/te.yml create mode 100644 config/locales-glitch/th.yml create mode 100644 config/locales-glitch/tr.yml create mode 100644 config/locales-glitch/tt.yml create mode 100644 config/locales-glitch/ug.yml create mode 100644 config/locales-glitch/uk.yml create mode 100644 config/locales-glitch/ur.yml create mode 100644 config/locales-glitch/vi.yml create mode 100644 config/locales-glitch/zh-HK.yml create mode 100644 config/locales-glitch/zh-TW.yml (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/locales/an.json b/app/javascript/flavours/glitch/locales/an.json new file mode 100644 index 000000000..eb99fc64d --- /dev/null +++ b/app/javascript/flavours/glitch/locales/an.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an 'instance' of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}, and is compatible with any Mastodon instance or app. Glitchsoc is entirely free and open-source. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content Warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "User preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/be.json b/app/javascript/flavours/glitch/locales/be.json new file mode 100644 index 000000000..eb99fc64d --- /dev/null +++ b/app/javascript/flavours/glitch/locales/be.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an 'instance' of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}, and is compatible with any Mastodon instance or app. Glitchsoc is entirely free and open-source. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content Warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "User preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/bs.json b/app/javascript/flavours/glitch/locales/bs.json new file mode 100644 index 000000000..eb99fc64d --- /dev/null +++ b/app/javascript/flavours/glitch/locales/bs.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an 'instance' of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}, and is compatible with any Mastodon instance or app. Glitchsoc is entirely free and open-source. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content Warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "User preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/en-GB.json b/app/javascript/flavours/glitch/locales/en-GB.json new file mode 100644 index 000000000..eb99fc64d --- /dev/null +++ b/app/javascript/flavours/glitch/locales/en-GB.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an 'instance' of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}, and is compatible with any Mastodon instance or app. Glitchsoc is entirely free and open-source. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content Warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "User preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/es-AR.json b/app/javascript/flavours/glitch/locales/es-AR.json index 807ed8207..2c6794fbf 100644 --- a/app/javascript/flavours/glitch/locales/es-AR.json +++ b/app/javascript/flavours/glitch/locales/es-AR.json @@ -10,13 +10,13 @@ "account_note.edit": "Edit", "account_note.glitch_placeholder": "No comment provided", "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "advanced_options.icon_title": "Opciones avanzadas", + "advanced_options.local-only.long": "No publicar a otras instancias", + "advanced_options.local-only.short": "Local", + "advanced_options.local-only.tooltip": "Este toot es local", + "advanced_options.threaded_mode.long": "Al publicar abre automáticamente una respuesta", + "advanced_options.threaded_mode.short": "Modo hilo", + "advanced_options.threaded_mode.tooltip": "Modo hilo habilitado", "boost_modal.missing_description": "This toot contains some media without description", "column.favourited_by": "Favourited by", "column.heading": "Misc", @@ -26,9 +26,9 @@ "column_subheading.lists": "Lists", "column_subheading.navigation": "Navigation", "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", + "compose.attach": "Adjuntar...", + "compose.attach.doodle": "Dibujar algo", + "compose.attach.upload": "Subir un archivo", "compose.content-type.html": "HTML", "compose.content-type.markdown": "Markdown", "compose.content-type.plain": "Plain text", @@ -41,43 +41,43 @@ "confirmations.missing_media_description.confirm": "Send anyway", "confirmations.missing_media_description.edit": "Edit media", "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "confirmations.unfilter.author": "Publicado por", + "confirmations.unfilter.confirm": "Mostrar", + "confirmations.unfilter.edit_filter": "Editar filtro", + "confirmations.unfilter.filters": "Coincidencia con {count, plural, one {filtro} other {filtros}}", "content-type.change": "Content type", "direct.group_by_conversations": "Group by conversation", "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", + "favourite_modal.combo": "Puedes presionar {combo} para omitir esto la próxima vez", + "getting_started.onboarding": "Paseo inicial", "home.column_settings.advanced": "Advanced", "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", + "home.column_settings.show_direct": "Mostrar mensajes directos", "home.settings": "Column settings", "keyboard_shortcuts.bookmark": "to bookmark", "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.auto": "Automático", + "layout.desktop": "Escritorio", + "layout.hint.auto": "Seleccionar un diseño automáticamente basado en \"Habilitar interface web avanzada\" y tamaño de pantalla", + "layout.hint.desktop": "Utiliza el diseño multi-columna sin importar \"Habilitar interface web avanzada\" o tamaño de pantalla", + "layout.hint.single": "Utiliza el diseño de una columna sin importar \"Habilitar interface web avanzada\" o tamaño de pantalla", "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", + "media_gallery.sensitive": "Sensible", "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", + "navigation_bar.app_settings": "Ajustes de aplicación", "navigation_bar.featured_users": "Featured users", "navigation_bar.info": "Extended information", "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", + "notification.markForDeletion": "Marcar para borrar", + "notification_purge.btn_all": "Seleccionar\ntodo", + "notification_purge.btn_apply": "Borrar\nselección", + "notification_purge.btn_invert": "Invertir\nselección", + "notification_purge.btn_none": "Seleccionar\nnada", "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "notifications.marked_clear": "Limpiar notificaciones seleccionadas", + "notifications.marked_clear_confirmation": "¿Deseas borrar permanentemente todas las notificaciones seleccionadas?", "onboarding.done": "Done", "onboarding.next": "Next", "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", @@ -85,7 +85,7 @@ "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_one.welcome": "¡Bienvenidx a {domain}!", "onboarding.page_six.admin": "Your instance's admin is {admin}.", "onboarding.page_six.almost_done": "Almost done...", "onboarding.page_six.appetoot": "Bon Appetoot!", @@ -98,87 +98,87 @@ "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.always_show_spoilers_field": "Siempre mostrar el campo de advertencia de contenido", + "settings.auto_collapse": "Colapsar automáticamente", + "settings.auto_collapse_all": "Todo", + "settings.auto_collapse_lengthy": "Toots largos", + "settings.auto_collapse_media": "Toots con medios", + "settings.auto_collapse_notifications": "Notificaciones", + "settings.auto_collapse_reblogs": "Retoots", + "settings.auto_collapse_replies": "Respuestas", + "settings.close": "Cerrar", + "settings.collapsed_statuses": "Toots colapsados", + "settings.compose_box_opts": "Cuadro de redacción", + "settings.confirm_before_clearing_draft": "Mostrar diálogo de confirmación antes de sobreescribir un mensaje estabas escribiendo", + "settings.confirm_boost_missing_media_description": "Mostrar diálogo de confirmación antes de retootear publicaciones con medios sin descripción", + "settings.confirm_missing_media_description": "Mostrar diálogo de confirmación antes de publicar toots con medios sin descripción", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings.regexp": "Regexp (expresión regular)", + "settings.content_warnings_filter": "No descolapsar estas advertencias de contenido:", "settings.content_warnings_media_outside": "Display media attachments outside content warnings", "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", "settings.content_warnings_shared_state": "Show/hide content of all copies at once", "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", "settings.content_warnings_unfold_opts": "Auto-unfolding options", "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed": "Habilitar toots colapsados", "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", + "settings.enable_content_warnings_auto_unfold": "Descolapsar automáticamente advertencias de contenido", + "settings.filters": "Filtros", "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons": "Íconos de privacidad más visibles", "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds": "Fondos de imágenes", + "settings.image_backgrounds_media": "Vista previa de medios de toots colapsados", "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", + "settings.image_backgrounds_users": "Darle fondo de imagen a toots colapsados", + "settings.inline_preview_cards": "Vista previa para enlaces externos", + "settings.layout": "Diseño", + "settings.layout_opts": "Opciones de diseño", + "settings.media": "Medios", + "settings.media_fullwidth": "Ancho completo al mostrar medios ", + "settings.media_letterbox": "Mantener proporciones al mostrar medios", + "settings.media_letterbox_hint": "Escalar medios para que llenen el espacio del contenedor sin cambiar sus proporciones sin recortarlos", + "settings.media_reveal_behind_cw": "Siempre mostrar medios sensibles dentro de las advertencias de contenido", + "settings.notifications.favicon_badge": "Marcador de notificaciones en el favicon", + "settings.notifications.favicon_badge.hint": "Muestra un marcador de notificaciones sin leer en el favicon", + "settings.notifications.tab_badge": "Marcador de notificaciones no leídas", + "settings.notifications.tab_badge.hint": "Muestra un marcador de notificaciones sin leer en el ícono de notificaciones cuando dicha columna no está abierta", + "settings.notifications_opts": "Opciones de notificaciones", "settings.pop_in_left": "Left", "settings.pop_in_player": "Enable pop-in player", "settings.pop_in_position": "Pop-in player position:", "settings.pop_in_right": "Right", "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", + "settings.prepend_cw_re": "Anteponer \"re: \" a las advertencias de contenido al responder", + "settings.preselect_on_reply": "Preseleccionar nombres de usuarix al responder", + "settings.preselect_on_reply_hint": "Al responder a conversaciones con múltiples participantes, preselecciona los nombres de usuarix subsecuentes del/la primerx", + "settings.rewrite_mentions": "Reescribir menciones in publicaciones mostradas", + "settings.rewrite_mentions_acct": "Reescribir con nombre de usuarix y dominio (para cuentas remotas)", + "settings.rewrite_mentions_no": "No reescribir menciones", + "settings.rewrite_mentions_username": "Reescribir con nombre de usuarix", "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.show_action_bar": "Mostrar botones de acción en toots colapsados", + "settings.show_content_type_choice": "Mostrar selección de tipo de contenido al crear toots", + "settings.show_reply_counter": "Mostrar un conteo estimado de respuestas", + "settings.side_arm": "Botón secundario:", + "settings.side_arm.none": "Ninguno", + "settings.side_arm_reply_mode": "Al responder a un toot, el botón de toot secundario debe:", + "settings.side_arm_reply_mode.copy": "Copiar opción de privacidad del toot al que estás respondiendo", + "settings.side_arm_reply_mode.keep": "Conservar opción de privacidad", + "settings.side_arm_reply_mode.restrict": "Restringir la opción de privacidad a la misma del toot al que estás respondiendo", "settings.status_icons": "Toot icons", "settings.status_icons_language": "Language indicator", "settings.status_icons_local_only": "Local-only indicator", "settings.status_icons_media": "Media and poll indicators", "settings.status_icons_reply": "Reply indicator", "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", + "settings.swipe_to_change_columns": "Permitir deslizar para cambiar columnas (Sólo en móvil)", + "settings.tag_misleading_links": "Marcar enlaces engañosos", + "settings.tag_misleading_links.hint": "Añadir una indicación visual indicando el destino de los enlace que no los mencionen explícitamente", + "settings.wide_view": "Vista amplia (solo modo de escritorio)", "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", + "status.collapse": "Colapsar", "status.has_audio": "Features attached audio files", "status.has_pictures": "Features attached pictures", "status.has_preview_card": "Features an attached preview card", @@ -187,7 +187,7 @@ "status.is_poll": "This toot is a poll", "status.local_only": "Only visible from your instance", "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", + "status.uncollapse": "Descolapsar", "web_app_crash.change_your_settings": "Change your {settings}", "web_app_crash.content": "You could try any of the following:", "web_app_crash.debug_info": "Debug information", diff --git a/app/javascript/flavours/glitch/locales/es-MX.json b/app/javascript/flavours/glitch/locales/es-MX.json index 807ed8207..2c6794fbf 100644 --- a/app/javascript/flavours/glitch/locales/es-MX.json +++ b/app/javascript/flavours/glitch/locales/es-MX.json @@ -10,13 +10,13 @@ "account_note.edit": "Edit", "account_note.glitch_placeholder": "No comment provided", "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "advanced_options.icon_title": "Opciones avanzadas", + "advanced_options.local-only.long": "No publicar a otras instancias", + "advanced_options.local-only.short": "Local", + "advanced_options.local-only.tooltip": "Este toot es local", + "advanced_options.threaded_mode.long": "Al publicar abre automáticamente una respuesta", + "advanced_options.threaded_mode.short": "Modo hilo", + "advanced_options.threaded_mode.tooltip": "Modo hilo habilitado", "boost_modal.missing_description": "This toot contains some media without description", "column.favourited_by": "Favourited by", "column.heading": "Misc", @@ -26,9 +26,9 @@ "column_subheading.lists": "Lists", "column_subheading.navigation": "Navigation", "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", + "compose.attach": "Adjuntar...", + "compose.attach.doodle": "Dibujar algo", + "compose.attach.upload": "Subir un archivo", "compose.content-type.html": "HTML", "compose.content-type.markdown": "Markdown", "compose.content-type.plain": "Plain text", @@ -41,43 +41,43 @@ "confirmations.missing_media_description.confirm": "Send anyway", "confirmations.missing_media_description.edit": "Edit media", "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "confirmations.unfilter.author": "Publicado por", + "confirmations.unfilter.confirm": "Mostrar", + "confirmations.unfilter.edit_filter": "Editar filtro", + "confirmations.unfilter.filters": "Coincidencia con {count, plural, one {filtro} other {filtros}}", "content-type.change": "Content type", "direct.group_by_conversations": "Group by conversation", "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", + "favourite_modal.combo": "Puedes presionar {combo} para omitir esto la próxima vez", + "getting_started.onboarding": "Paseo inicial", "home.column_settings.advanced": "Advanced", "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", + "home.column_settings.show_direct": "Mostrar mensajes directos", "home.settings": "Column settings", "keyboard_shortcuts.bookmark": "to bookmark", "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.auto": "Automático", + "layout.desktop": "Escritorio", + "layout.hint.auto": "Seleccionar un diseño automáticamente basado en \"Habilitar interface web avanzada\" y tamaño de pantalla", + "layout.hint.desktop": "Utiliza el diseño multi-columna sin importar \"Habilitar interface web avanzada\" o tamaño de pantalla", + "layout.hint.single": "Utiliza el diseño de una columna sin importar \"Habilitar interface web avanzada\" o tamaño de pantalla", "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", + "media_gallery.sensitive": "Sensible", "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", + "navigation_bar.app_settings": "Ajustes de aplicación", "navigation_bar.featured_users": "Featured users", "navigation_bar.info": "Extended information", "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", + "notification.markForDeletion": "Marcar para borrar", + "notification_purge.btn_all": "Seleccionar\ntodo", + "notification_purge.btn_apply": "Borrar\nselección", + "notification_purge.btn_invert": "Invertir\nselección", + "notification_purge.btn_none": "Seleccionar\nnada", "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "notifications.marked_clear": "Limpiar notificaciones seleccionadas", + "notifications.marked_clear_confirmation": "¿Deseas borrar permanentemente todas las notificaciones seleccionadas?", "onboarding.done": "Done", "onboarding.next": "Next", "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", @@ -85,7 +85,7 @@ "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_one.welcome": "¡Bienvenidx a {domain}!", "onboarding.page_six.admin": "Your instance's admin is {admin}.", "onboarding.page_six.almost_done": "Almost done...", "onboarding.page_six.appetoot": "Bon Appetoot!", @@ -98,87 +98,87 @@ "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.always_show_spoilers_field": "Siempre mostrar el campo de advertencia de contenido", + "settings.auto_collapse": "Colapsar automáticamente", + "settings.auto_collapse_all": "Todo", + "settings.auto_collapse_lengthy": "Toots largos", + "settings.auto_collapse_media": "Toots con medios", + "settings.auto_collapse_notifications": "Notificaciones", + "settings.auto_collapse_reblogs": "Retoots", + "settings.auto_collapse_replies": "Respuestas", + "settings.close": "Cerrar", + "settings.collapsed_statuses": "Toots colapsados", + "settings.compose_box_opts": "Cuadro de redacción", + "settings.confirm_before_clearing_draft": "Mostrar diálogo de confirmación antes de sobreescribir un mensaje estabas escribiendo", + "settings.confirm_boost_missing_media_description": "Mostrar diálogo de confirmación antes de retootear publicaciones con medios sin descripción", + "settings.confirm_missing_media_description": "Mostrar diálogo de confirmación antes de publicar toots con medios sin descripción", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings.regexp": "Regexp (expresión regular)", + "settings.content_warnings_filter": "No descolapsar estas advertencias de contenido:", "settings.content_warnings_media_outside": "Display media attachments outside content warnings", "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", "settings.content_warnings_shared_state": "Show/hide content of all copies at once", "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", "settings.content_warnings_unfold_opts": "Auto-unfolding options", "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed": "Habilitar toots colapsados", "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", + "settings.enable_content_warnings_auto_unfold": "Descolapsar automáticamente advertencias de contenido", + "settings.filters": "Filtros", "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons": "Íconos de privacidad más visibles", "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds": "Fondos de imágenes", + "settings.image_backgrounds_media": "Vista previa de medios de toots colapsados", "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", + "settings.image_backgrounds_users": "Darle fondo de imagen a toots colapsados", + "settings.inline_preview_cards": "Vista previa para enlaces externos", + "settings.layout": "Diseño", + "settings.layout_opts": "Opciones de diseño", + "settings.media": "Medios", + "settings.media_fullwidth": "Ancho completo al mostrar medios ", + "settings.media_letterbox": "Mantener proporciones al mostrar medios", + "settings.media_letterbox_hint": "Escalar medios para que llenen el espacio del contenedor sin cambiar sus proporciones sin recortarlos", + "settings.media_reveal_behind_cw": "Siempre mostrar medios sensibles dentro de las advertencias de contenido", + "settings.notifications.favicon_badge": "Marcador de notificaciones en el favicon", + "settings.notifications.favicon_badge.hint": "Muestra un marcador de notificaciones sin leer en el favicon", + "settings.notifications.tab_badge": "Marcador de notificaciones no leídas", + "settings.notifications.tab_badge.hint": "Muestra un marcador de notificaciones sin leer en el ícono de notificaciones cuando dicha columna no está abierta", + "settings.notifications_opts": "Opciones de notificaciones", "settings.pop_in_left": "Left", "settings.pop_in_player": "Enable pop-in player", "settings.pop_in_position": "Pop-in player position:", "settings.pop_in_right": "Right", "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", + "settings.prepend_cw_re": "Anteponer \"re: \" a las advertencias de contenido al responder", + "settings.preselect_on_reply": "Preseleccionar nombres de usuarix al responder", + "settings.preselect_on_reply_hint": "Al responder a conversaciones con múltiples participantes, preselecciona los nombres de usuarix subsecuentes del/la primerx", + "settings.rewrite_mentions": "Reescribir menciones in publicaciones mostradas", + "settings.rewrite_mentions_acct": "Reescribir con nombre de usuarix y dominio (para cuentas remotas)", + "settings.rewrite_mentions_no": "No reescribir menciones", + "settings.rewrite_mentions_username": "Reescribir con nombre de usuarix", "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.show_action_bar": "Mostrar botones de acción en toots colapsados", + "settings.show_content_type_choice": "Mostrar selección de tipo de contenido al crear toots", + "settings.show_reply_counter": "Mostrar un conteo estimado de respuestas", + "settings.side_arm": "Botón secundario:", + "settings.side_arm.none": "Ninguno", + "settings.side_arm_reply_mode": "Al responder a un toot, el botón de toot secundario debe:", + "settings.side_arm_reply_mode.copy": "Copiar opción de privacidad del toot al que estás respondiendo", + "settings.side_arm_reply_mode.keep": "Conservar opción de privacidad", + "settings.side_arm_reply_mode.restrict": "Restringir la opción de privacidad a la misma del toot al que estás respondiendo", "settings.status_icons": "Toot icons", "settings.status_icons_language": "Language indicator", "settings.status_icons_local_only": "Local-only indicator", "settings.status_icons_media": "Media and poll indicators", "settings.status_icons_reply": "Reply indicator", "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", + "settings.swipe_to_change_columns": "Permitir deslizar para cambiar columnas (Sólo en móvil)", + "settings.tag_misleading_links": "Marcar enlaces engañosos", + "settings.tag_misleading_links.hint": "Añadir una indicación visual indicando el destino de los enlace que no los mencionen explícitamente", + "settings.wide_view": "Vista amplia (solo modo de escritorio)", "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", + "status.collapse": "Colapsar", "status.has_audio": "Features attached audio files", "status.has_pictures": "Features attached pictures", "status.has_preview_card": "Features an attached preview card", @@ -187,7 +187,7 @@ "status.is_poll": "This toot is a poll", "status.local_only": "Only visible from your instance", "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", + "status.uncollapse": "Descolapsar", "web_app_crash.change_your_settings": "Change your {settings}", "web_app_crash.content": "You could try any of the following:", "web_app_crash.debug_info": "Debug information", diff --git a/app/javascript/flavours/glitch/locales/fo.json b/app/javascript/flavours/glitch/locales/fo.json new file mode 100644 index 000000000..eb99fc64d --- /dev/null +++ b/app/javascript/flavours/glitch/locales/fo.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an 'instance' of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}, and is compatible with any Mastodon instance or app. Glitchsoc is entirely free and open-source. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content Warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "User preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/fr-QC.json b/app/javascript/flavours/glitch/locales/fr-QC.json new file mode 100644 index 000000000..b53b36e97 --- /dev/null +++ b/app/javascript/flavours/glitch/locales/fr-QC.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Abonnements", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/fr.json b/app/javascript/flavours/glitch/locales/fr.json index 807ed8207..b53b36e97 100644 --- a/app/javascript/flavours/glitch/locales/fr.json +++ b/app/javascript/flavours/glitch/locales/fr.json @@ -2,7 +2,7 @@ "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", "account.add_account_note": "Add note for @{name}", "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", + "account.follows": "Abonnements", "account.joined": "Joined {date}", "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", "account.view_full_profile": "View full profile", diff --git a/app/javascript/flavours/glitch/locales/fy.json b/app/javascript/flavours/glitch/locales/fy.json new file mode 100644 index 000000000..eb99fc64d --- /dev/null +++ b/app/javascript/flavours/glitch/locales/fy.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an 'instance' of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}, and is compatible with any Mastodon instance or app. Glitchsoc is entirely free and open-source. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content Warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "User preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/ig.json b/app/javascript/flavours/glitch/locales/ig.json new file mode 100644 index 000000000..eb99fc64d --- /dev/null +++ b/app/javascript/flavours/glitch/locales/ig.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an 'instance' of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}, and is compatible with any Mastodon instance or app. Glitchsoc is entirely free and open-source. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content Warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "User preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/la.json b/app/javascript/flavours/glitch/locales/la.json new file mode 100644 index 000000000..eb99fc64d --- /dev/null +++ b/app/javascript/flavours/glitch/locales/la.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an 'instance' of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}, and is compatible with any Mastodon instance or app. Glitchsoc is entirely free and open-source. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content Warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "User preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/my.json b/app/javascript/flavours/glitch/locales/my.json new file mode 100644 index 000000000..eb99fc64d --- /dev/null +++ b/app/javascript/flavours/glitch/locales/my.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an 'instance' of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}, and is compatible with any Mastodon instance or app. Glitchsoc is entirely free and open-source. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content Warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "User preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/app/javascript/flavours/glitch/locales/sco.json b/app/javascript/flavours/glitch/locales/sco.json new file mode 100644 index 000000000..eb99fc64d --- /dev/null +++ b/app/javascript/flavours/glitch/locales/sco.json @@ -0,0 +1,201 @@ +{ + "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "account.add_account_note": "Add note for @{name}", + "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.follows": "Follows", + "account.joined": "Joined {date}", + "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", + "account.view_full_profile": "View full profile", + "account_note.cancel": "Cancel", + "account_note.edit": "Edit", + "account_note.glitch_placeholder": "No comment provided", + "account_note.save": "Save", + "advanced_options.icon_title": "Advanced options", + "advanced_options.local-only.long": "Do not post to other instances", + "advanced_options.local-only.short": "Local-only", + "advanced_options.local-only.tooltip": "This post is local-only", + "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", + "advanced_options.threaded_mode.short": "Threaded mode", + "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", + "boost_modal.missing_description": "This toot contains some media without description", + "column.favourited_by": "Favourited by", + "column.heading": "Misc", + "column.reblogged_by": "Boosted by", + "column.subheading": "Miscellaneous options", + "column_header.profile": "Profile", + "column_subheading.lists": "Lists", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Show local-only toots", + "compose.attach": "Attach...", + "compose.attach.doodle": "Draw something", + "compose.attach.upload": "Upload a file", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Plain text", + "compose_form.poll.multiple_choices": "Allow multiple choices", + "compose_form.poll.single_choice": "Allow one choice", + "compose_form.spoiler": "Hide text behind warning", + "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", + "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", + "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", + "confirmations.missing_media_description.confirm": "Send anyway", + "confirmations.missing_media_description.edit": "Edit media", + "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", + "confirmations.unfilter.author": "Author", + "confirmations.unfilter.confirm": "Show", + "confirmations.unfilter.edit_filter": "Edit filter", + "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", + "content-type.change": "Content type", + "direct.group_by_conversations": "Group by conversation", + "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", + "favourite_modal.combo": "You can press {combo} to skip this next time", + "getting_started.onboarding": "Show me around", + "home.column_settings.advanced": "Advanced", + "home.column_settings.filter_regex": "Filter out by regular expressions", + "home.column_settings.show_direct": "Show DMs", + "home.settings": "Column settings", + "keyboard_shortcuts.bookmark": "to bookmark", + "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", + "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", + "layout.auto": "Auto", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", + "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", + "layout.single": "Mobile", + "media_gallery.sensitive": "Sensitive", + "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", + "navigation_bar.app_settings": "App settings", + "navigation_bar.featured_users": "Featured users", + "navigation_bar.info": "Extended information", + "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", + "navigation_bar.misc": "Misc", + "notification.markForDeletion": "Mark for deletion", + "notification_purge.btn_all": "Select\nall", + "notification_purge.btn_apply": "Clear\nselected", + "notification_purge.btn_invert": "Invert\nselection", + "notification_purge.btn_none": "Select\nnone", + "notification_purge.start": "Enter notification cleaning mode", + "notifications.marked_clear": "Clear selected notifications", + "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", + "onboarding.done": "Done", + "onboarding.next": "Next", + "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", + "onboarding.page_four.home": "The home timeline shows posts from people you follow.", + "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", + "onboarding.page_one.federation": "{domain} is an 'instance' of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", + "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_six.admin": "Your instance's admin is {admin}.", + "onboarding.page_six.almost_done": "Almost done...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", + "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}, and is compatible with any Mastodon instance or app. Glitchsoc is entirely free and open-source. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "community guidelines", + "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile apps", + "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", + "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", + "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", + "onboarding.skip": "Skip", + "settings.always_show_spoilers_field": "Always enable the Content Warning field", + "settings.auto_collapse": "Automatic collapsing", + "settings.auto_collapse_all": "Everything", + "settings.auto_collapse_lengthy": "Lengthy toots", + "settings.auto_collapse_media": "Toots with media", + "settings.auto_collapse_notifications": "Notifications", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Replies", + "settings.close": "Close", + "settings.collapsed_statuses": "Collapsed toots", + "settings.compose_box_opts": "Compose box", + "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", + "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", + "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", + "settings.content_warnings": "Content Warnings", + "settings.content_warnings.regexp": "Regular expression", + "settings.content_warnings_filter": "Content warnings to not automatically unfold:", + "settings.content_warnings_media_outside": "Display media attachments outside content warnings", + "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", + "settings.content_warnings_shared_state": "Show/hide content of all copies at once", + "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", + "settings.content_warnings_unfold_opts": "Auto-unfolding options", + "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", + "settings.enable_collapsed": "Enable collapsed toots", + "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", + "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", + "settings.filters": "Filters", + "settings.general": "General", + "settings.hicolor_privacy_icons": "High color privacy icons", + "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", + "settings.image_backgrounds": "Image backgrounds", + "settings.image_backgrounds_media": "Preview collapsed toot media", + "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", + "settings.image_backgrounds_users": "Give collapsed toots an image background", + "settings.inline_preview_cards": "Inline preview cards for external links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout options", + "settings.media": "Media", + "settings.media_fullwidth": "Full-width media previews", + "settings.media_letterbox": "Letterbox media", + "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", + "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", + "settings.notifications.favicon_badge": "Unread notifications favicon badge", + "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", + "settings.notifications.tab_badge": "Unread notifications badge", + "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", + "settings.notifications_opts": "Notifications options", + "settings.pop_in_left": "Left", + "settings.pop_in_player": "Enable pop-in player", + "settings.pop_in_position": "Pop-in player position:", + "settings.pop_in_right": "Right", + "settings.preferences": "User preferences", + "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", + "settings.preselect_on_reply": "Pre-select usernames on reply", + "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", + "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", + "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", + "settings.rewrite_mentions_no": "Do not rewrite mentions", + "settings.rewrite_mentions_username": "Rewrite with username", + "settings.shared_settings_link": "user preferences", + "settings.show_action_bar": "Show action buttons in collapsed toots", + "settings.show_content_type_choice": "Show content-type choice when authoring toots", + "settings.show_reply_counter": "Display an estimate of the reply count", + "settings.side_arm": "Secondary toot button:", + "settings.side_arm.none": "None", + "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", + "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", + "settings.side_arm_reply_mode.keep": "Keep its set privacy", + "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", + "settings.status_icons": "Toot icons", + "settings.status_icons_language": "Language indicator", + "settings.status_icons_local_only": "Local-only indicator", + "settings.status_icons_media": "Media and poll indicators", + "settings.status_icons_reply": "Reply indicator", + "settings.status_icons_visibility": "Toot privacy indicator", + "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", + "settings.tag_misleading_links": "Tag misleading links", + "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", + "settings.wide_view": "Wide view (Desktop mode only)", + "settings.wide_view_hint": "Stretches columns to better fill the available space.", + "status.collapse": "Collapse", + "status.has_audio": "Features attached audio files", + "status.has_pictures": "Features attached pictures", + "status.has_preview_card": "Features an attached preview card", + "status.has_video": "Features attached videos", + "status.in_reply_to": "This toot is a reply", + "status.is_poll": "This toot is a poll", + "status.local_only": "Only visible from your instance", + "status.sensitive_toggle": "Click to view", + "status.uncollapse": "Uncollapse", + "web_app_crash.change_your_settings": "Change your {settings}", + "web_app_crash.content": "You could try any of the following:", + "web_app_crash.debug_info": "Debug information", + "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", + "web_app_crash.issue_tracker": "issue tracker", + "web_app_crash.reload": "Reload", + "web_app_crash.reload_page": "{reload} the current page", + "web_app_crash.report_issue": "Report a bug in the {issuetracker}", + "web_app_crash.settings": "settings", + "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." +} diff --git a/config/locales-glitch/af.yml b/config/locales-glitch/af.yml new file mode 100644 index 000000000..7eb443c97 --- /dev/null +++ b/config/locales-glitch/af.yml @@ -0,0 +1,38 @@ +--- +af: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can
contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/an.yml b/config/locales-glitch/an.yml new file mode 100644 index 000000000..7769a7b83 --- /dev/null +++ b/config/locales-glitch/an.yml @@ -0,0 +1,38 @@ +--- +an: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/ar.yml b/config/locales-glitch/ar.yml new file mode 100644 index 000000000..24e703e5a --- /dev/null +++ b/config/locales-glitch/ar.yml @@ -0,0 +1,38 @@ +--- +ar: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/ast.yml b/config/locales-glitch/ast.yml new file mode 100644 index 000000000..0e294ba8c --- /dev/null +++ b/config/locales-glitch/ast.yml @@ -0,0 +1,38 @@ +--- +ast: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/be.yml b/config/locales-glitch/be.yml new file mode 100644 index 000000000..53ee5ab09 --- /dev/null +++ b/config/locales-glitch/be.yml @@ -0,0 +1,38 @@ +--- +be: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/bg.yml b/config/locales-glitch/bg.yml new file mode 100644 index 000000000..de3435ef4 --- /dev/null +++ b/config/locales-glitch/bg.yml @@ -0,0 +1,38 @@ +--- +bg: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/bn.yml b/config/locales-glitch/bn.yml new file mode 100644 index 000000000..5f464049b --- /dev/null +++ b/config/locales-glitch/bn.yml @@ -0,0 +1,38 @@ +--- +bn: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/br.yml b/config/locales-glitch/br.yml new file mode 100644 index 000000000..53a39fe02 --- /dev/null +++ b/config/locales-glitch/br.yml @@ -0,0 +1,38 @@ +--- +br: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/bs.yml b/config/locales-glitch/bs.yml new file mode 100644 index 000000000..1d8af181f --- /dev/null +++ b/config/locales-glitch/bs.yml @@ -0,0 +1,38 @@ +--- +bs: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/ca.yml b/config/locales-glitch/ca.yml new file mode 100644 index 000000000..f3b3adb99 --- /dev/null +++ b/config/locales-glitch/ca.yml @@ -0,0 +1,38 @@ +--- +ca: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/ckb.yml b/config/locales-glitch/ckb.yml new file mode 100644 index 000000000..a9efcff27 --- /dev/null +++ b/config/locales-glitch/ckb.yml @@ -0,0 +1,38 @@ +--- +ckb-IR: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/co.yml b/config/locales-glitch/co.yml new file mode 100644 index 000000000..880c7f133 --- /dev/null +++ b/config/locales-glitch/co.yml @@ -0,0 +1,38 @@ +--- +co: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/cy.yml b/config/locales-glitch/cy.yml new file mode 100644 index 000000000..63e5296fc --- /dev/null +++ b/config/locales-glitch/cy.yml @@ -0,0 +1,38 @@ +--- +cy: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/da.yml b/config/locales-glitch/da.yml new file mode 100644 index 000000000..325922fac --- /dev/null +++ b/config/locales-glitch/da.yml @@ -0,0 +1,38 @@ +--- +da: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/de.yml b/config/locales-glitch/de.yml new file mode 100644 index 000000000..99de7430c --- /dev/null +++ b/config/locales-glitch/de.yml @@ -0,0 +1,38 @@ +--- +de: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/el.yml b/config/locales-glitch/el.yml new file mode 100644 index 000000000..517e9c663 --- /dev/null +++ b/config/locales-glitch/el.yml @@ -0,0 +1,38 @@ +--- +el: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/en-GB.yml b/config/locales-glitch/en-GB.yml new file mode 100644 index 000000000..cec973752 --- /dev/null +++ b/config/locales-glitch/en-GB.yml @@ -0,0 +1,38 @@ +--- +en-GB: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/eo.yml b/config/locales-glitch/eo.yml new file mode 100644 index 000000000..a97e7b134 --- /dev/null +++ b/config/locales-glitch/eo.yml @@ -0,0 +1,38 @@ +--- +eo: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/es-AR.yml b/config/locales-glitch/es-AR.yml new file mode 100644 index 000000000..eea52b7a6 --- /dev/null +++ b/config/locales-glitch/es-AR.yml @@ -0,0 +1,38 @@ +--- +es-AR: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: No mostrar el conteo de seguidorxs en perfiles de usuarix + title: Ocultar conteo de seguidorxs + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: Cuando los toots federen, agrega esta etiqueta de contenido a los toots que no tengan. Es útil si tu servidor se especializa en contenido que otros servidores desearían tener con una advertencia de contenido. Los medios también se marcarán como sensibles. + title: Advertencia de contenido para los toots salientes + show_reblogs_in_public_timelines: + desc_html: Mostrar retoots públicos en las línea de tiempo local y pública. + title: Mostrar retoots en líneas de tiempo públicas + show_replies_in_public_timelines: + desc_html: Además de auto-respuestas públicas (hilos), mostrar respuestas públicas en las línea de tiempo local y pública. + title: Mostrar respuestas en líneas de tiempo públicas + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Usar + settings: + flavours: Ediciones diff --git a/config/locales-glitch/es-MX.yml b/config/locales-glitch/es-MX.yml new file mode 100644 index 000000000..6cec17c3b --- /dev/null +++ b/config/locales-glitch/es-MX.yml @@ -0,0 +1,38 @@ +--- +es-MX: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: No mostrar el conteo de seguidorxs en perfiles de usuarix + title: Ocultar conteo de seguidorxs + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: Cuando los toots federen, agrega esta etiqueta de contenido a los toots que no tengan. Es útil si tu servidor se especializa en contenido que otros servidores desearían tener con una advertencia de contenido. Los medios también se marcarán como sensibles. + title: Advertencia de contenido para los toots salientes + show_reblogs_in_public_timelines: + desc_html: Mostrar retoots públicos en las línea de tiempo local y pública. + title: Mostrar retoots en líneas de tiempo públicas + show_replies_in_public_timelines: + desc_html: Además de auto-respuestas públicas (hilos), mostrar respuestas públicas en las línea de tiempo local y pública. + title: Mostrar respuestas en líneas de tiempo públicas + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Usar + settings: + flavours: Ediciones diff --git a/config/locales-glitch/es.yml b/config/locales-glitch/es.yml index d842deb67..14af6097e 100644 --- a/config/locales-glitch/es.yml +++ b/config/locales-glitch/es.yml @@ -1,10 +1,21 @@ --- es: admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin hide_followers_count: desc_html: No mostrar el conteo de seguidorxs en perfiles de usuarix title: Ocultar conteo de seguidorxs + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other outgoing_spoilers: desc_html: Cuando los toots federen, agrega esta etiqueta de contenido a los toots que no tengan. Es útil si tu servidor se especializa en contenido que otros servidores desearían tener con una advertencia de contenido. Los medios también se marcarán como sensibles. title: Advertencia de contenido para los toots salientes @@ -14,6 +25,13 @@ es: show_replies_in_public_timelines: desc_html: Además de auto-respuestas públicas (hilos), mostrar respuestas públicas en las línea de tiempo local y pública. title: Mostrar respuestas en líneas de tiempo públicas + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification generic: use_this: Usar settings: diff --git a/config/locales-glitch/et.yml b/config/locales-glitch/et.yml new file mode 100644 index 000000000..75eb72264 --- /dev/null +++ b/config/locales-glitch/et.yml @@ -0,0 +1,38 @@ +--- +et: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/eu.yml b/config/locales-glitch/eu.yml new file mode 100644 index 000000000..956c5c2f7 --- /dev/null +++ b/config/locales-glitch/eu.yml @@ -0,0 +1,38 @@ +--- +eu: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/fa.yml b/config/locales-glitch/fa.yml new file mode 100644 index 000000000..8067833b1 --- /dev/null +++ b/config/locales-glitch/fa.yml @@ -0,0 +1,38 @@ +--- +fa: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/fi.yml b/config/locales-glitch/fi.yml new file mode 100644 index 000000000..87b61df09 --- /dev/null +++ b/config/locales-glitch/fi.yml @@ -0,0 +1,38 @@ +--- +fi: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/fo.yml b/config/locales-glitch/fo.yml new file mode 100644 index 000000000..5b81be369 --- /dev/null +++ b/config/locales-glitch/fo.yml @@ -0,0 +1,38 @@ +--- +fo: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/fr-QC.yml b/config/locales-glitch/fr-QC.yml new file mode 100644 index 000000000..f9a8614d8 --- /dev/null +++ b/config/locales-glitch/fr-QC.yml @@ -0,0 +1,38 @@ +--- +fr-QC: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/fr.yml b/config/locales-glitch/fr.yml new file mode 100644 index 000000000..e8e5085ba --- /dev/null +++ b/config/locales-glitch/fr.yml @@ -0,0 +1,38 @@ +--- +fr: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/fy.yml b/config/locales-glitch/fy.yml new file mode 100644 index 000000000..6b8e225bc --- /dev/null +++ b/config/locales-glitch/fy.yml @@ -0,0 +1,38 @@ +--- +fy: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/ga.yml b/config/locales-glitch/ga.yml new file mode 100644 index 000000000..aafc36d47 --- /dev/null +++ b/config/locales-glitch/ga.yml @@ -0,0 +1,38 @@ +--- +ga: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/gd.yml b/config/locales-glitch/gd.yml new file mode 100644 index 000000000..d8873517c --- /dev/null +++ b/config/locales-glitch/gd.yml @@ -0,0 +1,38 @@ +--- +gd: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/gl.yml b/config/locales-glitch/gl.yml new file mode 100644 index 000000000..9fb5b77f7 --- /dev/null +++ b/config/locales-glitch/gl.yml @@ -0,0 +1,38 @@ +--- +gl: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/he.yml b/config/locales-glitch/he.yml new file mode 100644 index 000000000..f7915d709 --- /dev/null +++ b/config/locales-glitch/he.yml @@ -0,0 +1,38 @@ +--- +he: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/hi.yml b/config/locales-glitch/hi.yml new file mode 100644 index 000000000..aec5cdbda --- /dev/null +++ b/config/locales-glitch/hi.yml @@ -0,0 +1,38 @@ +--- +hi: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/hr.yml b/config/locales-glitch/hr.yml new file mode 100644 index 000000000..5aa51d881 --- /dev/null +++ b/config/locales-glitch/hr.yml @@ -0,0 +1,38 @@ +--- +hr: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/hu.yml b/config/locales-glitch/hu.yml new file mode 100644 index 000000000..71bd724cd --- /dev/null +++ b/config/locales-glitch/hu.yml @@ -0,0 +1,38 @@ +--- +hu: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/hy.yml b/config/locales-glitch/hy.yml new file mode 100644 index 000000000..44ad8aaad --- /dev/null +++ b/config/locales-glitch/hy.yml @@ -0,0 +1,38 @@ +--- +hy: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/id.yml b/config/locales-glitch/id.yml new file mode 100644 index 000000000..2b4649463 --- /dev/null +++ b/config/locales-glitch/id.yml @@ -0,0 +1,38 @@ +--- +id: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/ig.yml b/config/locales-glitch/ig.yml new file mode 100644 index 000000000..a773d3075 --- /dev/null +++ b/config/locales-glitch/ig.yml @@ -0,0 +1,38 @@ +--- +ig: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/io.yml b/config/locales-glitch/io.yml new file mode 100644 index 000000000..781f8a80e --- /dev/null +++ b/config/locales-glitch/io.yml @@ -0,0 +1,38 @@ +--- +io: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/is.yml b/config/locales-glitch/is.yml new file mode 100644 index 000000000..0cbf67e0e --- /dev/null +++ b/config/locales-glitch/is.yml @@ -0,0 +1,38 @@ +--- +is: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/it.yml b/config/locales-glitch/it.yml new file mode 100644 index 000000000..4e2bf74b9 --- /dev/null +++ b/config/locales-glitch/it.yml @@ -0,0 +1,38 @@ +--- +it: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/ja.yml b/config/locales-glitch/ja.yml index 54ebfaeca..61bf4644b 100644 --- a/config/locales-glitch/ja.yml +++ b/config/locales-glitch/ja.yml @@ -1,10 +1,21 @@ --- ja: admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin hide_followers_count: desc_html: プロフィールページのフォロワー数を見られないようにします title: フォロワー数を隠す + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other outgoing_spoilers: desc_html: トゥートが連合される際、閲覧注意としてマークされていないトゥートにこの警告が追加されます。これはあなたのインスタンスが他のインスタンスに警告をして欲しいとされる投稿に特化している場合に便利です。 メディアは閲覧注意にマークされます。 title: 発信するトゥートへの警告 @@ -14,6 +25,13 @@ ja: show_replies_in_public_timelines: desc_html: 自分への公開投稿の返信に加えて、すべての公開投稿の返信をローカルタイムラインと連合タイムラインに表示します。 title: 公開タイムラインに返信を表示 + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification generic: use_this: これを使う settings: diff --git a/config/locales-glitch/ka.yml b/config/locales-glitch/ka.yml new file mode 100644 index 000000000..eca5173ba --- /dev/null +++ b/config/locales-glitch/ka.yml @@ -0,0 +1,38 @@ +--- +ka: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/kab.yml b/config/locales-glitch/kab.yml new file mode 100644 index 000000000..5831340c5 --- /dev/null +++ b/config/locales-glitch/kab.yml @@ -0,0 +1,38 @@ +--- +kab: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/kk.yml b/config/locales-glitch/kk.yml new file mode 100644 index 000000000..addad540d --- /dev/null +++ b/config/locales-glitch/kk.yml @@ -0,0 +1,38 @@ +--- +kk: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/kn.yml b/config/locales-glitch/kn.yml new file mode 100644 index 000000000..18a70afeb --- /dev/null +++ b/config/locales-glitch/kn.yml @@ -0,0 +1,38 @@ +--- +kn: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/ko.yml b/config/locales-glitch/ko.yml index bc9c4e86b..f69193411 100644 --- a/config/locales-glitch/ko.yml +++ b/config/locales-glitch/ko.yml @@ -8,9 +8,17 @@ ko: captcha_enabled: desc_html: 이것은 hCaptcha의 외부 스크립트에 의존합니다, 이것은 개인정보 보호에 위협을 가할 수도 있습니다. 추가적으로, 이것은 몇몇 사람들(특히나 장애인들)에게 가입 절차의 접근성을 심각하게 떨어트릴 수 있습니다. 이러한 이유로, 대체제로 승인 전용이나 초대제를 통한 가입을 고려해보세요.
한정된 사용만 가능한 초대장을 통한 가입자들은 CAPTCHA를 풀지 않아도 됩니다 title: 새로운 사용자가 계정 확인을 위해서는 CAPTCHA를 풀어야 하도록 합니다 + flavour_and_skin: + title: Flavour and skin hide_followers_count: desc_html: 사용자 프로필에 팔로워 수를 표시하지 않습니다 title: 팔로워 수 숨기기 + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots show_reblogs_in_public_timelines: desc_html: 공개글의 공개적인 부스트를 로컬과 공개 타임라인에 표시합니다. title: 부스트를 공개 타임라인에 표시 diff --git a/config/locales-glitch/ku.yml b/config/locales-glitch/ku.yml new file mode 100644 index 000000000..6b3e35be5 --- /dev/null +++ b/config/locales-glitch/ku.yml @@ -0,0 +1,38 @@ +--- +kmr-TR: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/kw.yml b/config/locales-glitch/kw.yml new file mode 100644 index 000000000..ed35d87ba --- /dev/null +++ b/config/locales-glitch/kw.yml @@ -0,0 +1,38 @@ +--- +kw: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/la.yml b/config/locales-glitch/la.yml new file mode 100644 index 000000000..937c35285 --- /dev/null +++ b/config/locales-glitch/la.yml @@ -0,0 +1,38 @@ +--- +la: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/lt.yml b/config/locales-glitch/lt.yml new file mode 100644 index 000000000..7497b5717 --- /dev/null +++ b/config/locales-glitch/lt.yml @@ -0,0 +1,38 @@ +--- +lt: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/lv.yml b/config/locales-glitch/lv.yml new file mode 100644 index 000000000..0804c52b7 --- /dev/null +++ b/config/locales-glitch/lv.yml @@ -0,0 +1,38 @@ +--- +lv: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/mk.yml b/config/locales-glitch/mk.yml new file mode 100644 index 000000000..daed4eb50 --- /dev/null +++ b/config/locales-glitch/mk.yml @@ -0,0 +1,38 @@ +--- +mk: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/ml.yml b/config/locales-glitch/ml.yml new file mode 100644 index 000000000..6b5a0186c --- /dev/null +++ b/config/locales-glitch/ml.yml @@ -0,0 +1,38 @@ +--- +ml: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/mr.yml b/config/locales-glitch/mr.yml new file mode 100644 index 000000000..2ec3c1b63 --- /dev/null +++ b/config/locales-glitch/mr.yml @@ -0,0 +1,38 @@ +--- +mr: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/ms.yml b/config/locales-glitch/ms.yml new file mode 100644 index 000000000..200944d6d --- /dev/null +++ b/config/locales-glitch/ms.yml @@ -0,0 +1,38 @@ +--- +ms: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/my.yml b/config/locales-glitch/my.yml new file mode 100644 index 000000000..d7f7931be --- /dev/null +++ b/config/locales-glitch/my.yml @@ -0,0 +1,38 @@ +--- +my: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/nl.yml b/config/locales-glitch/nl.yml new file mode 100644 index 000000000..96e900323 --- /dev/null +++ b/config/locales-glitch/nl.yml @@ -0,0 +1,38 @@ +--- +nl: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/nn.yml b/config/locales-glitch/nn.yml new file mode 100644 index 000000000..f33c14c00 --- /dev/null +++ b/config/locales-glitch/nn.yml @@ -0,0 +1,38 @@ +--- +nn: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/no.yml b/config/locales-glitch/no.yml new file mode 100644 index 000000000..1ee226ed5 --- /dev/null +++ b/config/locales-glitch/no.yml @@ -0,0 +1,38 @@ +--- +"no": + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/oc.yml b/config/locales-glitch/oc.yml new file mode 100644 index 000000000..cbdcb29fe --- /dev/null +++ b/config/locales-glitch/oc.yml @@ -0,0 +1,38 @@ +--- +oc: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/pa.yml b/config/locales-glitch/pa.yml new file mode 100644 index 000000000..6c8d1484d --- /dev/null +++ b/config/locales-glitch/pa.yml @@ -0,0 +1,38 @@ +--- +pa: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/pl.yml b/config/locales-glitch/pl.yml index 3fcdedcf3..9a714abcd 100644 --- a/config/locales-glitch/pl.yml +++ b/config/locales-glitch/pl.yml @@ -1,5 +1,37 @@ --- pl: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification generic: use_this: Użyj tego settings: diff --git a/config/locales-glitch/pt-BR.yml b/config/locales-glitch/pt-BR.yml new file mode 100644 index 000000000..5439dc2da --- /dev/null +++ b/config/locales-glitch/pt-BR.yml @@ -0,0 +1,38 @@ +--- +pt: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/pt-PT.yml b/config/locales-glitch/pt-PT.yml new file mode 100644 index 000000000..5439dc2da --- /dev/null +++ b/config/locales-glitch/pt-PT.yml @@ -0,0 +1,38 @@ +--- +pt: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/ro.yml b/config/locales-glitch/ro.yml new file mode 100644 index 000000000..bd12d75b6 --- /dev/null +++ b/config/locales-glitch/ro.yml @@ -0,0 +1,38 @@ +--- +ro: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/ru.yml b/config/locales-glitch/ru.yml new file mode 100644 index 000000000..6817f80d4 --- /dev/null +++ b/config/locales-glitch/ru.yml @@ -0,0 +1,38 @@ +--- +ru: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/sa.yml b/config/locales-glitch/sa.yml new file mode 100644 index 000000000..cd6df912c --- /dev/null +++ b/config/locales-glitch/sa.yml @@ -0,0 +1,38 @@ +--- +sa: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/sc.yml b/config/locales-glitch/sc.yml new file mode 100644 index 000000000..50f28be12 --- /dev/null +++ b/config/locales-glitch/sc.yml @@ -0,0 +1,38 @@ +--- +sc: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/sco.yml b/config/locales-glitch/sco.yml new file mode 100644 index 000000000..2a9d10165 --- /dev/null +++ b/config/locales-glitch/sco.yml @@ -0,0 +1,38 @@ +--- +sco: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/si.yml b/config/locales-glitch/si.yml new file mode 100644 index 000000000..6376cc5b3 --- /dev/null +++ b/config/locales-glitch/si.yml @@ -0,0 +1,38 @@ +--- +si: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/simple_form.af.yml b/config/locales-glitch/simple_form.af.yml new file mode 100644 index 000000000..c7b7ae1d9 --- /dev/null +++ b/config/locales-glitch/simple_form.af.yml @@ -0,0 +1,27 @@ +--- +af: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.an.yml b/config/locales-glitch/simple_form.an.yml new file mode 100644 index 000000000..c7789ac69 --- /dev/null +++ b/config/locales-glitch/simple_form.an.yml @@ -0,0 +1,27 @@ +--- +an: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.ar.yml b/config/locales-glitch/simple_form.ar.yml new file mode 100644 index 000000000..07615007b --- /dev/null +++ b/config/locales-glitch/simple_form.ar.yml @@ -0,0 +1,27 @@ +--- +ar: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.ast.yml b/config/locales-glitch/simple_form.ast.yml new file mode 100644 index 000000000..f2f431b14 --- /dev/null +++ b/config/locales-glitch/simple_form.ast.yml @@ -0,0 +1,27 @@ +--- +ast: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.be.yml b/config/locales-glitch/simple_form.be.yml new file mode 100644 index 000000000..3d724a6c7 --- /dev/null +++ b/config/locales-glitch/simple_form.be.yml @@ -0,0 +1,27 @@ +--- +be: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.bg.yml b/config/locales-glitch/simple_form.bg.yml new file mode 100644 index 000000000..220088494 --- /dev/null +++ b/config/locales-glitch/simple_form.bg.yml @@ -0,0 +1,27 @@ +--- +bg: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.bn.yml b/config/locales-glitch/simple_form.bn.yml new file mode 100644 index 000000000..9eea9e55e --- /dev/null +++ b/config/locales-glitch/simple_form.bn.yml @@ -0,0 +1,27 @@ +--- +bn: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.br.yml b/config/locales-glitch/simple_form.br.yml new file mode 100644 index 000000000..699d30d9c --- /dev/null +++ b/config/locales-glitch/simple_form.br.yml @@ -0,0 +1,27 @@ +--- +br: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.bs.yml b/config/locales-glitch/simple_form.bs.yml new file mode 100644 index 000000000..d7a52e676 --- /dev/null +++ b/config/locales-glitch/simple_form.bs.yml @@ -0,0 +1,27 @@ +--- +bs: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.ca.yml b/config/locales-glitch/simple_form.ca.yml new file mode 100644 index 000000000..df44a1344 --- /dev/null +++ b/config/locales-glitch/simple_form.ca.yml @@ -0,0 +1,27 @@ +--- +ca: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.ckb.yml b/config/locales-glitch/simple_form.ckb.yml new file mode 100644 index 000000000..9a11a5b18 --- /dev/null +++ b/config/locales-glitch/simple_form.ckb.yml @@ -0,0 +1,27 @@ +--- +ckb-IR: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.co.yml b/config/locales-glitch/simple_form.co.yml new file mode 100644 index 000000000..7a43e5eb8 --- /dev/null +++ b/config/locales-glitch/simple_form.co.yml @@ -0,0 +1,27 @@ +--- +co: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.cy.yml b/config/locales-glitch/simple_form.cy.yml new file mode 100644 index 000000000..9473e20db --- /dev/null +++ b/config/locales-glitch/simple_form.cy.yml @@ -0,0 +1,27 @@ +--- +cy: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.da.yml b/config/locales-glitch/simple_form.da.yml new file mode 100644 index 000000000..f3fc4da29 --- /dev/null +++ b/config/locales-glitch/simple_form.da.yml @@ -0,0 +1,27 @@ +--- +da: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.de.yml b/config/locales-glitch/simple_form.de.yml new file mode 100644 index 000000000..092e935d7 --- /dev/null +++ b/config/locales-glitch/simple_form.de.yml @@ -0,0 +1,27 @@ +--- +de: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.el.yml b/config/locales-glitch/simple_form.el.yml new file mode 100644 index 000000000..6f9480061 --- /dev/null +++ b/config/locales-glitch/simple_form.el.yml @@ -0,0 +1,27 @@ +--- +el: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.en-GB.yml b/config/locales-glitch/simple_form.en-GB.yml new file mode 100644 index 000000000..a75014981 --- /dev/null +++ b/config/locales-glitch/simple_form.en-GB.yml @@ -0,0 +1,27 @@ +--- +en-GB: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.eo.yml b/config/locales-glitch/simple_form.eo.yml new file mode 100644 index 000000000..435933211 --- /dev/null +++ b/config/locales-glitch/simple_form.eo.yml @@ -0,0 +1,27 @@ +--- +eo: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.es-AR.yml b/config/locales-glitch/simple_form.es-AR.yml new file mode 100644 index 000000000..1ea796823 --- /dev/null +++ b/config/locales-glitch/simple_form.es-AR.yml @@ -0,0 +1,27 @@ +--- +es-AR: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: Al escribir toots, asume que estás escritos en HTML, a menos que se especifique lo contrario + setting_default_content_type_markdown: Al escribir toots, asume que estás usando Markdown para dar formato de texto enriquecido, a menos que se especifique lo contrario + setting_default_content_type_plain: Al escribir toots, asume que estás usando texto sin formato, a menos que se especifique lo contrario (predeterminado de Mastodon) + setting_default_language: El idioma de tus toots se puede detectar automáticamente, pero no siempre es correcto + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Cambia el diseño de la edición seleccionada de Mastodon + labels: + defaults: + setting_default_content_type: Formato predeterminado de tus toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Sin formato + setting_favourite_modal: Mostrar diálogo de confirmación antes de marcar como favorito (sólo aplica a la edición Glich) + setting_hide_followers_count: Ocultar tu conteo de seguidorxs + setting_skin: Diseño + setting_system_emoji_font: Usar la fuente predeterminada del sistema para emojis (sólo aplica a la edición Glitch) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.es-MX.yml b/config/locales-glitch/simple_form.es-MX.yml new file mode 100644 index 000000000..891073656 --- /dev/null +++ b/config/locales-glitch/simple_form.es-MX.yml @@ -0,0 +1,27 @@ +--- +es-MX: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: Al escribir toots, asume que estás escritos en HTML, a menos que se especifique lo contrario + setting_default_content_type_markdown: Al escribir toots, asume que estás usando Markdown para dar formato de texto enriquecido, a menos que se especifique lo contrario + setting_default_content_type_plain: Al escribir toots, asume que estás usando texto sin formato, a menos que se especifique lo contrario (predeterminado de Mastodon) + setting_default_language: El idioma de tus toots se puede detectar automáticamente, pero no siempre es correcto + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Cambia el diseño de la edición seleccionada de Mastodon + labels: + defaults: + setting_default_content_type: Formato predeterminado de tus toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Sin formato + setting_favourite_modal: Mostrar diálogo de confirmación antes de marcar como favorito (sólo aplica a la edición Glich) + setting_hide_followers_count: Ocultar tu conteo de seguidorxs + setting_skin: Diseño + setting_system_emoji_font: Usar la fuente predeterminada del sistema para emojis (sólo aplica a la edición Glitch) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.es.yml b/config/locales-glitch/simple_form.es.yml index 977775be6..96ed4c1ec 100644 --- a/config/locales-glitch/simple_form.es.yml +++ b/config/locales-glitch/simple_form.es.yml @@ -1,12 +1,15 @@ --- es: simple_form: + glitch_only: glitch-soc hints: defaults: + fields: You can have up to %{count} items displayed as a table on your profile setting_default_content_type_html: Al escribir toots, asume que estás escritos en HTML, a menos que se especifique lo contrario setting_default_content_type_markdown: Al escribir toots, asume que estás usando Markdown para dar formato de texto enriquecido, a menos que se especifique lo contrario setting_default_content_type_plain: Al escribir toots, asume que estás usando texto sin formato, a menos que se especifique lo contrario (predeterminado de Mastodon) setting_default_language: El idioma de tus toots se puede detectar automáticamente, pero no siempre es correcto + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. setting_skin: Cambia el diseño de la edición seleccionada de Mastodon labels: defaults: @@ -18,3 +21,7 @@ es: setting_hide_followers_count: Ocultar tu conteo de seguidorxs setting_skin: Diseño setting_system_emoji_font: Usar la fuente predeterminada del sistema para emojis (sólo aplica a la edición Glitch) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.et.yml b/config/locales-glitch/simple_form.et.yml new file mode 100644 index 000000000..090ab6cb5 --- /dev/null +++ b/config/locales-glitch/simple_form.et.yml @@ -0,0 +1,27 @@ +--- +et: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.eu.yml b/config/locales-glitch/simple_form.eu.yml new file mode 100644 index 000000000..e0085473e --- /dev/null +++ b/config/locales-glitch/simple_form.eu.yml @@ -0,0 +1,27 @@ +--- +eu: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.fa.yml b/config/locales-glitch/simple_form.fa.yml new file mode 100644 index 000000000..dabbee1a3 --- /dev/null +++ b/config/locales-glitch/simple_form.fa.yml @@ -0,0 +1,27 @@ +--- +fa: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.fi.yml b/config/locales-glitch/simple_form.fi.yml new file mode 100644 index 000000000..dbc8ce044 --- /dev/null +++ b/config/locales-glitch/simple_form.fi.yml @@ -0,0 +1,27 @@ +--- +fi: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.fo.yml b/config/locales-glitch/simple_form.fo.yml new file mode 100644 index 000000000..4b59c9c6c --- /dev/null +++ b/config/locales-glitch/simple_form.fo.yml @@ -0,0 +1,27 @@ +--- +fo: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.fr-QC.yml b/config/locales-glitch/simple_form.fr-QC.yml new file mode 100644 index 000000000..20b3f6146 --- /dev/null +++ b/config/locales-glitch/simple_form.fr-QC.yml @@ -0,0 +1,27 @@ +--- +fr-QC: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.fr.yml b/config/locales-glitch/simple_form.fr.yml new file mode 100644 index 000000000..0a0685c44 --- /dev/null +++ b/config/locales-glitch/simple_form.fr.yml @@ -0,0 +1,27 @@ +--- +fr: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.fy.yml b/config/locales-glitch/simple_form.fy.yml new file mode 100644 index 000000000..61e87e931 --- /dev/null +++ b/config/locales-glitch/simple_form.fy.yml @@ -0,0 +1,27 @@ +--- +fy: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.ga.yml b/config/locales-glitch/simple_form.ga.yml new file mode 100644 index 000000000..917abe778 --- /dev/null +++ b/config/locales-glitch/simple_form.ga.yml @@ -0,0 +1,27 @@ +--- +ga: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.gd.yml b/config/locales-glitch/simple_form.gd.yml new file mode 100644 index 000000000..7b569a689 --- /dev/null +++ b/config/locales-glitch/simple_form.gd.yml @@ -0,0 +1,27 @@ +--- +gd: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.gl.yml b/config/locales-glitch/simple_form.gl.yml new file mode 100644 index 000000000..7aa480b4c --- /dev/null +++ b/config/locales-glitch/simple_form.gl.yml @@ -0,0 +1,27 @@ +--- +gl: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.he.yml b/config/locales-glitch/simple_form.he.yml new file mode 100644 index 000000000..85e0d2e02 --- /dev/null +++ b/config/locales-glitch/simple_form.he.yml @@ -0,0 +1,27 @@ +--- +he: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.hi.yml b/config/locales-glitch/simple_form.hi.yml new file mode 100644 index 000000000..fd1e19ca3 --- /dev/null +++ b/config/locales-glitch/simple_form.hi.yml @@ -0,0 +1,27 @@ +--- +hi: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.hr.yml b/config/locales-glitch/simple_form.hr.yml new file mode 100644 index 000000000..3ddc7d77b --- /dev/null +++ b/config/locales-glitch/simple_form.hr.yml @@ -0,0 +1,27 @@ +--- +hr: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.hu.yml b/config/locales-glitch/simple_form.hu.yml new file mode 100644 index 000000000..7d77afcb4 --- /dev/null +++ b/config/locales-glitch/simple_form.hu.yml @@ -0,0 +1,27 @@ +--- +hu: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.hy.yml b/config/locales-glitch/simple_form.hy.yml new file mode 100644 index 000000000..24b990d7b --- /dev/null +++ b/config/locales-glitch/simple_form.hy.yml @@ -0,0 +1,27 @@ +--- +hy: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.id.yml b/config/locales-glitch/simple_form.id.yml new file mode 100644 index 000000000..686392aee --- /dev/null +++ b/config/locales-glitch/simple_form.id.yml @@ -0,0 +1,27 @@ +--- +id: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.ig.yml b/config/locales-glitch/simple_form.ig.yml new file mode 100644 index 000000000..f85eea7a3 --- /dev/null +++ b/config/locales-glitch/simple_form.ig.yml @@ -0,0 +1,27 @@ +--- +ig: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.io.yml b/config/locales-glitch/simple_form.io.yml new file mode 100644 index 000000000..92f7fe4a9 --- /dev/null +++ b/config/locales-glitch/simple_form.io.yml @@ -0,0 +1,27 @@ +--- +io: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.is.yml b/config/locales-glitch/simple_form.is.yml new file mode 100644 index 000000000..f7acc0869 --- /dev/null +++ b/config/locales-glitch/simple_form.is.yml @@ -0,0 +1,27 @@ +--- +is: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.it.yml b/config/locales-glitch/simple_form.it.yml new file mode 100644 index 000000000..325b7d1bb --- /dev/null +++ b/config/locales-glitch/simple_form.it.yml @@ -0,0 +1,27 @@ +--- +it: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.ja.yml b/config/locales-glitch/simple_form.ja.yml index dc9e0b579..7bc7eb13f 100644 --- a/config/locales-glitch/simple_form.ja.yml +++ b/config/locales-glitch/simple_form.ja.yml @@ -1,12 +1,15 @@ --- ja: simple_form: + glitch_only: glitch-soc hints: defaults: + fields: You can have up to %{count} items displayed as a table on your profile setting_default_content_type_html: トゥートを作成するとき特に指定がない限り生のHTMLで書かれているとします setting_default_content_type_markdown: トゥートを作成するとき特に指定がない限りリッチテキスト形式のマークダウンで書かれているとします setting_default_content_type_plain: トゥートを作成するとき特に指定がない限りプレーンテキストで書かれているとします(Mastodon既定の動作) setting_default_language: あなたのトゥートの言語を自動検出しますが必ずしも正確ではありません + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. setting_skin: 選択したMastodonフレーバーに変更します labels: defaults: @@ -18,3 +21,7 @@ ja: setting_hide_followers_count: フォロワー数を隠す setting_skin: スキン setting_system_emoji_font: 絵文字にシステム既定のフォントを使用する(Glitch Edition フレーバーのみに適用されます) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.ka.yml b/config/locales-glitch/simple_form.ka.yml new file mode 100644 index 000000000..30d2d137c --- /dev/null +++ b/config/locales-glitch/simple_form.ka.yml @@ -0,0 +1,27 @@ +--- +ka: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.kab.yml b/config/locales-glitch/simple_form.kab.yml new file mode 100644 index 000000000..3c68f188a --- /dev/null +++ b/config/locales-glitch/simple_form.kab.yml @@ -0,0 +1,27 @@ +--- +kab: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.kk.yml b/config/locales-glitch/simple_form.kk.yml new file mode 100644 index 000000000..0ad2cbbed --- /dev/null +++ b/config/locales-glitch/simple_form.kk.yml @@ -0,0 +1,27 @@ +--- +kk: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.kn.yml b/config/locales-glitch/simple_form.kn.yml new file mode 100644 index 000000000..00305eccf --- /dev/null +++ b/config/locales-glitch/simple_form.kn.yml @@ -0,0 +1,27 @@ +--- +kn: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.ko.yml b/config/locales-glitch/simple_form.ko.yml index 193c85513..b7cbb91b0 100644 --- a/config/locales-glitch/simple_form.ko.yml +++ b/config/locales-glitch/simple_form.ko.yml @@ -1,12 +1,15 @@ --- ko: simple_form: + glitch_only: glitch-soc hints: defaults: + fields: You can have up to %{count} items displayed as a table on your profile setting_default_content_type_html: 게시물을 작성할 때, 형식을 지정하지 않았다면, 생 HTML이라고 가정합니다 setting_default_content_type_markdown: 게시물을 작성할 때, 형식을 지정하지 않았다면, 마크다운이라고 가정합니다 setting_default_content_type_plain: 게시물을 작성할 때, 형식을 지정하지 않았다면, 일반적인 텍스트라고 가정합니다. (마스토돈의 기본 동작) setting_default_language: 작성하는 게시물의 언어는 자동으로 설정될 수 있습니다, 하지만 언제나 정확하지는 않습니다 + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. setting_skin: 선택한 마스토돈 풍미의 스킨을 바꿉니다 labels: defaults: diff --git a/config/locales-glitch/simple_form.ku.yml b/config/locales-glitch/simple_form.ku.yml new file mode 100644 index 000000000..19886fd16 --- /dev/null +++ b/config/locales-glitch/simple_form.ku.yml @@ -0,0 +1,27 @@ +--- +kmr-TR: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.kw.yml b/config/locales-glitch/simple_form.kw.yml new file mode 100644 index 000000000..2dc7ebe34 --- /dev/null +++ b/config/locales-glitch/simple_form.kw.yml @@ -0,0 +1,27 @@ +--- +kw: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.la.yml b/config/locales-glitch/simple_form.la.yml new file mode 100644 index 000000000..534001565 --- /dev/null +++ b/config/locales-glitch/simple_form.la.yml @@ -0,0 +1,27 @@ +--- +la: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.lt.yml b/config/locales-glitch/simple_form.lt.yml new file mode 100644 index 000000000..d5febc901 --- /dev/null +++ b/config/locales-glitch/simple_form.lt.yml @@ -0,0 +1,27 @@ +--- +lt: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.lv.yml b/config/locales-glitch/simple_form.lv.yml new file mode 100644 index 000000000..9a30494f9 --- /dev/null +++ b/config/locales-glitch/simple_form.lv.yml @@ -0,0 +1,27 @@ +--- +lv: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.mk.yml b/config/locales-glitch/simple_form.mk.yml new file mode 100644 index 000000000..6f2d2421f --- /dev/null +++ b/config/locales-glitch/simple_form.mk.yml @@ -0,0 +1,27 @@ +--- +mk: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.ml.yml b/config/locales-glitch/simple_form.ml.yml new file mode 100644 index 000000000..3c0d7a70a --- /dev/null +++ b/config/locales-glitch/simple_form.ml.yml @@ -0,0 +1,27 @@ +--- +ml: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.mr.yml b/config/locales-glitch/simple_form.mr.yml new file mode 100644 index 000000000..eb7089757 --- /dev/null +++ b/config/locales-glitch/simple_form.mr.yml @@ -0,0 +1,27 @@ +--- +mr: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.ms.yml b/config/locales-glitch/simple_form.ms.yml new file mode 100644 index 000000000..31ddcd1f9 --- /dev/null +++ b/config/locales-glitch/simple_form.ms.yml @@ -0,0 +1,27 @@ +--- +ms: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.my.yml b/config/locales-glitch/simple_form.my.yml new file mode 100644 index 000000000..a0a67ff66 --- /dev/null +++ b/config/locales-glitch/simple_form.my.yml @@ -0,0 +1,27 @@ +--- +my: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.nl.yml b/config/locales-glitch/simple_form.nl.yml new file mode 100644 index 000000000..1e04b6c20 --- /dev/null +++ b/config/locales-glitch/simple_form.nl.yml @@ -0,0 +1,27 @@ +--- +nl: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.nn.yml b/config/locales-glitch/simple_form.nn.yml new file mode 100644 index 000000000..06408dcf8 --- /dev/null +++ b/config/locales-glitch/simple_form.nn.yml @@ -0,0 +1,27 @@ +--- +nn: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.no.yml b/config/locales-glitch/simple_form.no.yml new file mode 100644 index 000000000..649e27b9e --- /dev/null +++ b/config/locales-glitch/simple_form.no.yml @@ -0,0 +1,27 @@ +--- +"no": + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.oc.yml b/config/locales-glitch/simple_form.oc.yml new file mode 100644 index 000000000..f555e6fca --- /dev/null +++ b/config/locales-glitch/simple_form.oc.yml @@ -0,0 +1,27 @@ +--- +oc: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.pa.yml b/config/locales-glitch/simple_form.pa.yml new file mode 100644 index 000000000..9eee21ec9 --- /dev/null +++ b/config/locales-glitch/simple_form.pa.yml @@ -0,0 +1,27 @@ +--- +pa: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.pl.yml b/config/locales-glitch/simple_form.pl.yml index 264494c2d..e328a3445 100644 --- a/config/locales-glitch/simple_form.pl.yml +++ b/config/locales-glitch/simple_form.pl.yml @@ -1,10 +1,27 @@ --- pl: simple_form: + glitch_only: glitch-soc hints: defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. setting_skin: Zmienia wygląd używanej odmiany Mastodona labels: defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text setting_favourite_modal: Pytaj o potwierdzenie przed dodaniem do ulubionych + setting_hide_followers_count: Hide your followers count setting_skin: Motyw + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.pt-BR.yml b/config/locales-glitch/simple_form.pt-BR.yml new file mode 100644 index 000000000..cac0cddce --- /dev/null +++ b/config/locales-glitch/simple_form.pt-BR.yml @@ -0,0 +1,27 @@ +--- +pt: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.pt-PT.yml b/config/locales-glitch/simple_form.pt-PT.yml new file mode 100644 index 000000000..cac0cddce --- /dev/null +++ b/config/locales-glitch/simple_form.pt-PT.yml @@ -0,0 +1,27 @@ +--- +pt: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.ro.yml b/config/locales-glitch/simple_form.ro.yml new file mode 100644 index 000000000..41f9fc96d --- /dev/null +++ b/config/locales-glitch/simple_form.ro.yml @@ -0,0 +1,27 @@ +--- +ro: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.ru.yml b/config/locales-glitch/simple_form.ru.yml new file mode 100644 index 000000000..cb21b98b5 --- /dev/null +++ b/config/locales-glitch/simple_form.ru.yml @@ -0,0 +1,27 @@ +--- +ru: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.sa.yml b/config/locales-glitch/simple_form.sa.yml new file mode 100644 index 000000000..a97b0bccf --- /dev/null +++ b/config/locales-glitch/simple_form.sa.yml @@ -0,0 +1,27 @@ +--- +sa: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.sc.yml b/config/locales-glitch/simple_form.sc.yml new file mode 100644 index 000000000..aa1cb749e --- /dev/null +++ b/config/locales-glitch/simple_form.sc.yml @@ -0,0 +1,27 @@ +--- +sc: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.sco.yml b/config/locales-glitch/simple_form.sco.yml new file mode 100644 index 000000000..3aba873c4 --- /dev/null +++ b/config/locales-glitch/simple_form.sco.yml @@ -0,0 +1,27 @@ +--- +sco: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.si.yml b/config/locales-glitch/simple_form.si.yml new file mode 100644 index 000000000..858abd71f --- /dev/null +++ b/config/locales-glitch/simple_form.si.yml @@ -0,0 +1,27 @@ +--- +si: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.sk.yml b/config/locales-glitch/simple_form.sk.yml new file mode 100644 index 000000000..391b314f4 --- /dev/null +++ b/config/locales-glitch/simple_form.sk.yml @@ -0,0 +1,27 @@ +--- +sk: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.sl.yml b/config/locales-glitch/simple_form.sl.yml new file mode 100644 index 000000000..83ea32917 --- /dev/null +++ b/config/locales-glitch/simple_form.sl.yml @@ -0,0 +1,27 @@ +--- +sl: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.sq.yml b/config/locales-glitch/simple_form.sq.yml new file mode 100644 index 000000000..819de27a1 --- /dev/null +++ b/config/locales-glitch/simple_form.sq.yml @@ -0,0 +1,27 @@ +--- +sq: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.sr-Latn.yml b/config/locales-glitch/simple_form.sr-Latn.yml new file mode 100644 index 000000000..0cc7666c8 --- /dev/null +++ b/config/locales-glitch/simple_form.sr-Latn.yml @@ -0,0 +1,27 @@ +--- +sr: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.sr.yml b/config/locales-glitch/simple_form.sr.yml new file mode 100644 index 000000000..0cc7666c8 --- /dev/null +++ b/config/locales-glitch/simple_form.sr.yml @@ -0,0 +1,27 @@ +--- +sr: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.sv.yml b/config/locales-glitch/simple_form.sv.yml new file mode 100644 index 000000000..02fc1418c --- /dev/null +++ b/config/locales-glitch/simple_form.sv.yml @@ -0,0 +1,27 @@ +--- +sv: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.ta.yml b/config/locales-glitch/simple_form.ta.yml new file mode 100644 index 000000000..06ddc7fb8 --- /dev/null +++ b/config/locales-glitch/simple_form.ta.yml @@ -0,0 +1,27 @@ +--- +ta: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.te.yml b/config/locales-glitch/simple_form.te.yml new file mode 100644 index 000000000..45d3a5693 --- /dev/null +++ b/config/locales-glitch/simple_form.te.yml @@ -0,0 +1,27 @@ +--- +te: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.th.yml b/config/locales-glitch/simple_form.th.yml new file mode 100644 index 000000000..b88200c9a --- /dev/null +++ b/config/locales-glitch/simple_form.th.yml @@ -0,0 +1,27 @@ +--- +th: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.tr.yml b/config/locales-glitch/simple_form.tr.yml new file mode 100644 index 000000000..9f17e4cd4 --- /dev/null +++ b/config/locales-glitch/simple_form.tr.yml @@ -0,0 +1,27 @@ +--- +tr: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.tt.yml b/config/locales-glitch/simple_form.tt.yml new file mode 100644 index 000000000..4a3faf510 --- /dev/null +++ b/config/locales-glitch/simple_form.tt.yml @@ -0,0 +1,27 @@ +--- +tt: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.ug.yml b/config/locales-glitch/simple_form.ug.yml new file mode 100644 index 000000000..447959c10 --- /dev/null +++ b/config/locales-glitch/simple_form.ug.yml @@ -0,0 +1,27 @@ +--- +ug: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.uk.yml b/config/locales-glitch/simple_form.uk.yml new file mode 100644 index 000000000..855332537 --- /dev/null +++ b/config/locales-glitch/simple_form.uk.yml @@ -0,0 +1,27 @@ +--- +uk: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.ur.yml b/config/locales-glitch/simple_form.ur.yml new file mode 100644 index 000000000..d5bff2d0f --- /dev/null +++ b/config/locales-glitch/simple_form.ur.yml @@ -0,0 +1,27 @@ +--- +ur: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.vi.yml b/config/locales-glitch/simple_form.vi.yml new file mode 100644 index 000000000..f2a45d50b --- /dev/null +++ b/config/locales-glitch/simple_form.vi.yml @@ -0,0 +1,27 @@ +--- +vi: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.zh-CN.yml b/config/locales-glitch/simple_form.zh-CN.yml index 1c72ba784..f4c865d07 100644 --- a/config/locales-glitch/simple_form.zh-CN.yml +++ b/config/locales-glitch/simple_form.zh-CN.yml @@ -1,12 +1,15 @@ --- zh-CN: simple_form: + glitch_only: glitch-soc hints: defaults: + fields: You can have up to %{count} items displayed as a table on your profile setting_default_content_type_html: 在撰写嘟文时,除非另有指定,假定它们使用原始 HTML 语言撰写 setting_default_content_type_markdown: 在撰写嘟文时,除非另有指定,假定它们使用 Markdown 进行富文本格式化 setting_default_content_type_plain: 在撰写嘟文时,除非另有指定,假定它们是没有特殊格式的纯文本(默认的 Mastodon 行为) setting_default_language: 你的嘟文语言可以自动检测,但不一定准确 + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. setting_skin: 更换为所选择的 Mastodon 风味 labels: defaults: @@ -18,3 +21,7 @@ zh-CN: setting_hide_followers_count: 隐藏你的关注者人数 setting_skin: 皮肤 setting_system_emoji_font: 表情符号使用系统默认字体 (仅限于 Glitch 风味) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.zh-HK.yml b/config/locales-glitch/simple_form.zh-HK.yml new file mode 100644 index 000000000..b1151106c --- /dev/null +++ b/config/locales-glitch/simple_form.zh-HK.yml @@ -0,0 +1,27 @@ +--- +zh: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.zh-TW.yml b/config/locales-glitch/simple_form.zh-TW.yml new file mode 100644 index 000000000..ce84b7ee6 --- /dev/null +++ b/config/locales-glitch/simple_form.zh-TW.yml @@ -0,0 +1,27 @@ +--- +zh-TW: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: You can have up to %{count} items displayed as a table on your profile + setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise + setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise + setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) + setting_default_language: The language of your toots can be detected automatically, but it's not always accurate + setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. + setting_skin: Reskins the selected Mastodon flavour + labels: + defaults: + setting_default_content_type: Default format for toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Plain text + setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) + setting_hide_followers_count: Hide your followers count + setting_skin: Skin + setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) + notification_emails: + trending_link: New trending link requires review + trending_status: New trending post requires review + trending_tag: New trending tag requires review diff --git a/config/locales-glitch/sk.yml b/config/locales-glitch/sk.yml new file mode 100644 index 000000000..1b5151372 --- /dev/null +++ b/config/locales-glitch/sk.yml @@ -0,0 +1,38 @@ +--- +sk: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/sl.yml b/config/locales-glitch/sl.yml new file mode 100644 index 000000000..20f43c42c --- /dev/null +++ b/config/locales-glitch/sl.yml @@ -0,0 +1,38 @@ +--- +sl: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/sq.yml b/config/locales-glitch/sq.yml new file mode 100644 index 000000000..a361906bc --- /dev/null +++ b/config/locales-glitch/sq.yml @@ -0,0 +1,38 @@ +--- +sq: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/sr-Latn.yml b/config/locales-glitch/sr-Latn.yml new file mode 100644 index 000000000..edcd89a19 --- /dev/null +++ b/config/locales-glitch/sr-Latn.yml @@ -0,0 +1,38 @@ +--- +sr: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/sr.yml b/config/locales-glitch/sr.yml new file mode 100644 index 000000000..edcd89a19 --- /dev/null +++ b/config/locales-glitch/sr.yml @@ -0,0 +1,38 @@ +--- +sr: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/sv.yml b/config/locales-glitch/sv.yml new file mode 100644 index 000000000..31d646dca --- /dev/null +++ b/config/locales-glitch/sv.yml @@ -0,0 +1,38 @@ +--- +sv: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/ta.yml b/config/locales-glitch/ta.yml new file mode 100644 index 000000000..668c46ba8 --- /dev/null +++ b/config/locales-glitch/ta.yml @@ -0,0 +1,38 @@ +--- +ta: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/te.yml b/config/locales-glitch/te.yml new file mode 100644 index 000000000..95c11971f --- /dev/null +++ b/config/locales-glitch/te.yml @@ -0,0 +1,38 @@ +--- +te: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/th.yml b/config/locales-glitch/th.yml new file mode 100644 index 000000000..bbf30457d --- /dev/null +++ b/config/locales-glitch/th.yml @@ -0,0 +1,38 @@ +--- +th: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/tr.yml b/config/locales-glitch/tr.yml new file mode 100644 index 000000000..c374d1e13 --- /dev/null +++ b/config/locales-glitch/tr.yml @@ -0,0 +1,38 @@ +--- +tr: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/tt.yml b/config/locales-glitch/tt.yml new file mode 100644 index 000000000..119e25272 --- /dev/null +++ b/config/locales-glitch/tt.yml @@ -0,0 +1,38 @@ +--- +tt: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/ug.yml b/config/locales-glitch/ug.yml new file mode 100644 index 000000000..4157effb9 --- /dev/null +++ b/config/locales-glitch/ug.yml @@ -0,0 +1,38 @@ +--- +ug: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/uk.yml b/config/locales-glitch/uk.yml new file mode 100644 index 000000000..e28ccbc9e --- /dev/null +++ b/config/locales-glitch/uk.yml @@ -0,0 +1,38 @@ +--- +uk: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/ur.yml b/config/locales-glitch/ur.yml new file mode 100644 index 000000000..465898cdb --- /dev/null +++ b/config/locales-glitch/ur.yml @@ -0,0 +1,38 @@ +--- +ur: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/vi.yml b/config/locales-glitch/vi.yml new file mode 100644 index 000000000..d8c383798 --- /dev/null +++ b/config/locales-glitch/vi.yml @@ -0,0 +1,38 @@ +--- +vi: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/zh-CN.yml b/config/locales-glitch/zh-CN.yml index 40a09c1c9..ff16d1743 100644 --- a/config/locales-glitch/zh-CN.yml +++ b/config/locales-glitch/zh-CN.yml @@ -1,10 +1,21 @@ --- zh-CN: admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin hide_followers_count: desc_html: 不要在用户资料中显示关注者人数 title: 隐藏关注者人数 + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other outgoing_spoilers: desc_html: 在联邦化嘟文的时候,将这个内容警告添加到没有内容警告的嘟文中。如果你的服务器专用于其他服务器可能希望有内容警告的内容,它会很有用。媒体也将被标记为敏感。 title: 对外嘟文的内容警告 @@ -14,6 +25,13 @@ zh-CN: show_replies_in_public_timelines: desc_html: 除了公开的自我回复(线程模式),在本地和跨站时间轴中显示公开回复。 title: 在公共时间轴中显示回复 + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification generic: use_this: 使用这个 settings: diff --git a/config/locales-glitch/zh-HK.yml b/config/locales-glitch/zh-HK.yml new file mode 100644 index 000000000..237a521fc --- /dev/null +++ b/config/locales-glitch/zh-HK.yml @@ -0,0 +1,38 @@ +--- +zh: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours diff --git a/config/locales-glitch/zh-TW.yml b/config/locales-glitch/zh-TW.yml new file mode 100644 index 000000000..17c1f65ec --- /dev/null +++ b/config/locales-glitch/zh-TW.yml @@ -0,0 +1,38 @@ +--- +zh-TW: + admin: + custom_emojis: + batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' + batch_error: 'An error occurred: %{message}' + settings: + captcha_enabled: + desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA + title: Require new users to solve a CAPTCHA to confirm their account + flavour_and_skin: + title: Flavour and skin + hide_followers_count: + desc_html: Do not show followers count on user profiles + title: Hide followers count + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other + outgoing_spoilers: + desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. + title: Content warning for outgoing toots + show_reblogs_in_public_timelines: + desc_html: Show public boosts of public toots in local and public timelines. + title: Show boosts in public timelines + show_replies_in_public_timelines: + desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. + title: Show replies in public timelines + trending_status_cw: + desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. + title: Allow posts with Content Warnings to trend + auth: + captcha_confirmation: + hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. + title: User verification + generic: + use_this: Use this + settings: + flavours: Flavours -- cgit From deb804c954d78c37142fc38f65e95a4cb227d7ac Mon Sep 17 00:00:00 2001 From: Claire Date: Thu, 22 Dec 2022 00:21:39 +0100 Subject: New Crowdin updates (#2034) * New translations en.json (Lithuanian) [ci skip] * New translations en.json (Macedonian) [ci skip] * New translations en.json (Dutch) [ci skip] * New translations en.json (Norwegian) [ci skip] * New translations en.json (Punjabi) [ci skip] * New translations en.json (Polish) [ci skip] * New translations en.json (Portuguese) [ci skip] * New translations en.json (Russian) [ci skip] * New translations en.json (Slovak) [ci skip] * New translations en.json (Slovenian) [ci skip] * New translations en.json (Albanian) [ci skip] * New translations en.json (Serbian (Cyrillic)) [ci skip] * New translations en.json (Swedish) [ci skip] * New translations en.json (Turkish) [ci skip] * New translations en.json (Ukrainian) [ci skip] * New translations en.json (Chinese Simplified) [ci skip] * New translations en.json (Chinese Traditional) [ci skip] * New translations en.json (Urdu (Pakistan)) [ci skip] * New translations en.json (Vietnamese) [ci skip] * New translations en.json (Galician) [ci skip] * New translations en.json (Icelandic) [ci skip] * New translations en.json (Portuguese, Brazilian) [ci skip] * New translations en.json (Indonesian) [ci skip] * New translations en.json (Persian) [ci skip] * New translations en.json (Tamil) [ci skip] * New translations en.json (Spanish, Argentina) [ci skip] * New translations en.json (Spanish, Mexico) [ci skip] * New translations en.json (Bengali) [ci skip] * New translations en.json (Marathi) [ci skip] * New translations en.json (Thai) [ci skip] * New translations en.json (Croatian) [ci skip] * New translations en.json (Norwegian Nynorsk) [ci skip] * New translations en.json (Kazakh) [ci skip] * New translations en.json (Estonian) [ci skip] * New translations en.json (Latvian) [ci skip] * New translations en.json (Hindi) [ci skip] * New translations en.json (Malay) [ci skip] * New translations en.json (Telugu) [ci skip] * New translations en.json (English, United Kingdom) [ci skip] * New translations en.json (Burmese) [ci skip] * New translations en.json (Welsh) [ci skip] * New translations en.json (Faroese) [ci skip] * New translations en.json (Esperanto) [ci skip] * New translations en.json (Uyghur) [ci skip] * New translations en.json (Chinese Traditional, Hong Kong) [ci skip] * New translations en.json (Tatar) [ci skip] * New translations en.json (Malayalam) [ci skip] * New translations en.json (Breton) [ci skip] * New translations en.json (Latin) [ci skip] * New translations en.json (Bosnian) [ci skip] * New translations en.json (French, Quebec) [ci skip] * New translations en.json (Sinhala) [ci skip] * New translations en.json (Cornish) [ci skip] * New translations en.json (Kannada) [ci skip] * New translations en.json (Scottish Gaelic) [ci skip] * New translations en.json (Asturian) [ci skip] * New translations en.json (Aragonese) [ci skip] * New translations en.json (Occitan) [ci skip] * New translations en.json (Serbian (Latin)) [ci skip] * New translations en.json (Kurmanji (Kurdish)) [ci skip] * New translations en.json (Sorani (Kurdish)) [ci skip] * New translations en.json (Scots) [ci skip] * New translations en.json (Igbo) [ci skip] * New translations en.json (Corsican) [ci skip] * New translations en.json (Sardinian) [ci skip] * New translations en.json (Sanskrit) [ci skip] * New translations en.json (Kabyle) [ci skip] * New translations en.json (Ido) [ci skip] * New translations en.yml (Romanian) [ci skip] * New translations en.yml (French) [ci skip] * New translations en.yml (Spanish) [ci skip] * New translations en.yml (Afrikaans) [ci skip] * New translations en.yml (Arabic) [ci skip] * New translations en.yml (Belarusian) [ci skip] * New translations en.yml (Bulgarian) [ci skip] * New translations en.yml (Catalan) [ci skip] * New translations en.yml (Czech) [ci skip] * New translations en.yml (Danish) [ci skip] * New translations en.yml (German) [ci skip] * New translations en.yml (Greek) [ci skip] * New translations en.yml (Frisian) [ci skip] * New translations en.yml (Basque) [ci skip] * New translations en.yml (Finnish) [ci skip] * New translations en.yml (Irish) [ci skip] * New translations en.yml (Hebrew) [ci skip] * New translations en.yml (Hungarian) [ci skip] * New translations en.yml (Armenian) [ci skip] * New translations en.yml (Italian) [ci skip] * New translations en.yml (Japanese) [ci skip] * New translations en.yml (Georgian) [ci skip] * New translations en.yml (Korean) [ci skip] * New translations en.yml (Lithuanian) [ci skip] * New translations en.yml (Macedonian) [ci skip] * New translations en.yml (Dutch) [ci skip] * New translations en.yml (Norwegian) [ci skip] * New translations en.yml (Punjabi) [ci skip] * New translations en.yml (Polish) [ci skip] * New translations en.yml (Portuguese) [ci skip] * New translations en.yml (Russian) [ci skip] * New translations en.yml (Slovak) [ci skip] * New translations en.yml (Slovenian) [ci skip] * New translations en.yml (Albanian) [ci skip] * New translations en.yml (Serbian (Cyrillic)) [ci skip] * New translations en.yml (Swedish) [ci skip] * New translations en.yml (Turkish) [ci skip] * New translations en.yml (Ukrainian) [ci skip] * New translations en.yml (Chinese Simplified) [ci skip] * New translations en.yml (Chinese Traditional) [ci skip] * New translations en.yml (Urdu (Pakistan)) [ci skip] * New translations en.yml (Vietnamese) [ci skip] * New translations en.yml (Galician) [ci skip] * New translations en.yml (Icelandic) [ci skip] * New translations en.yml (Portuguese, Brazilian) [ci skip] * New translations en.yml (Indonesian) [ci skip] * New translations en.yml (Persian) [ci skip] * New translations en.yml (Tamil) [ci skip] * New translations en.yml (Spanish, Argentina) [ci skip] * New translations en.yml (Spanish, Mexico) [ci skip] * New translations en.yml (Bengali) [ci skip] * New translations en.yml (Marathi) [ci skip] * New translations en.yml (Thai) [ci skip] * New translations en.yml (Croatian) [ci skip] * New translations en.yml (Norwegian Nynorsk) [ci skip] * New translations en.yml (Kazakh) [ci skip] * New translations en.yml (Estonian) [ci skip] * New translations en.yml (Latvian) [ci skip] * New translations en.yml (Hindi) [ci skip] * New translations en.yml (Malay) [ci skip] * New translations en.yml (Telugu) [ci skip] * New translations en.yml (English, United Kingdom) [ci skip] * New translations en.yml (Burmese) [ci skip] * New translations en.yml (Welsh) [ci skip] * New translations en.yml (Faroese) [ci skip] * New translations en.yml (Esperanto) [ci skip] * New translations en.yml (Uyghur) [ci skip] * New translations en.yml (Chinese Traditional, Hong Kong) [ci skip] * New translations en.yml (Tatar) [ci skip] * New translations en.yml (Malayalam) [ci skip] * New translations en.yml (Breton) [ci skip] * New translations en.yml (Latin) [ci skip] * New translations en.yml (Bosnian) [ci skip] * New translations en.yml (French, Quebec) [ci skip] * New translations en.yml (Sinhala) [ci skip] * New translations en.yml (Cornish) [ci skip] * New translations en.yml (Kannada) [ci skip] * New translations en.yml (Scottish Gaelic) [ci skip] * New translations en.yml (Asturian) [ci skip] * New translations en.yml (Aragonese) [ci skip] * New translations en.yml (Occitan) [ci skip] * New translations en.yml (Serbian (Latin)) [ci skip] * New translations en.yml (Kurmanji (Kurdish)) [ci skip] * New translations en.yml (Sorani (Kurdish)) [ci skip] * New translations en.yml (Scots) [ci skip] * New translations en.yml (Igbo) [ci skip] * New translations en.yml (Corsican) [ci skip] * New translations en.yml (Sardinian) [ci skip] * New translations en.yml (Sanskrit) [ci skip] * New translations en.yml (Kabyle) [ci skip] * New translations en.yml (Ido) [ci skip] * New translations simple_form.en.yml (Romanian) [ci skip] * New translations simple_form.en.yml (French) [ci skip] * New translations simple_form.en.yml (Spanish) [ci skip] * New translations simple_form.en.yml (Afrikaans) [ci skip] * New translations simple_form.en.yml (Arabic) [ci skip] * New translations simple_form.en.yml (Belarusian) [ci skip] * New translations simple_form.en.yml (Bulgarian) [ci skip] * New translations simple_form.en.yml (Catalan) [ci skip] * New translations simple_form.en.yml (Czech) [ci skip] * New translations simple_form.en.yml (Danish) [ci skip] * New translations simple_form.en.yml (German) [ci skip] * New translations simple_form.en.yml (Greek) [ci skip] * New translations simple_form.en.yml (Frisian) [ci skip] * New translations simple_form.en.yml (Basque) [ci skip] * New translations simple_form.en.yml (Finnish) [ci skip] * New translations simple_form.en.yml (Irish) [ci skip] * New translations simple_form.en.yml (Hebrew) [ci skip] * New translations simple_form.en.yml (Hungarian) [ci skip] * New translations simple_form.en.yml (Armenian) [ci skip] * New translations simple_form.en.yml (Italian) [ci skip] * New translations simple_form.en.yml (Japanese) [ci skip] * New translations simple_form.en.yml (Georgian) [ci skip] * New translations simple_form.en.yml (Korean) [ci skip] * New translations simple_form.en.yml (Lithuanian) [ci skip] * New translations simple_form.en.yml (Macedonian) [ci skip] * New translations simple_form.en.yml (Dutch) [ci skip] * New translations simple_form.en.yml (Norwegian) [ci skip] * New translations simple_form.en.yml (Punjabi) [ci skip] * New translations simple_form.en.yml (Polish) [ci skip] * New translations simple_form.en.yml (Portuguese) [ci skip] * New translations simple_form.en.yml (Russian) [ci skip] * New translations simple_form.en.yml (Slovak) [ci skip] * New translations simple_form.en.yml (Slovenian) [ci skip] * New translations simple_form.en.yml (Albanian) [ci skip] * New translations simple_form.en.yml (Serbian (Cyrillic)) [ci skip] * New translations simple_form.en.yml (Swedish) [ci skip] * New translations simple_form.en.yml (Turkish) [ci skip] * New translations simple_form.en.yml (Ukrainian) [ci skip] * New translations simple_form.en.yml (Chinese Simplified) [ci skip] * New translations simple_form.en.yml (Chinese Traditional) [ci skip] * New translations simple_form.en.yml (Urdu (Pakistan)) [ci skip] * New translations simple_form.en.yml (Vietnamese) [ci skip] * New translations simple_form.en.yml (Galician) [ci skip] * New translations simple_form.en.yml (Icelandic) [ci skip] * New translations simple_form.en.yml (Portuguese, Brazilian) [ci skip] * New translations simple_form.en.yml (Indonesian) [ci skip] * New translations simple_form.en.yml (Persian) [ci skip] * New translations simple_form.en.yml (Tamil) [ci skip] * New translations simple_form.en.yml (Spanish, Argentina) [ci skip] * New translations simple_form.en.yml (Spanish, Mexico) [ci skip] * New translations simple_form.en.yml (Bengali) [ci skip] * New translations simple_form.en.yml (Marathi) [ci skip] * New translations simple_form.en.yml (Thai) [ci skip] * New translations simple_form.en.yml (Croatian) [ci skip] * New translations simple_form.en.yml (Norwegian Nynorsk) [ci skip] * New translations simple_form.en.yml (Kazakh) [ci skip] * New translations simple_form.en.yml (Estonian) [ci skip] * New translations simple_form.en.yml (Latvian) [ci skip] * New translations simple_form.en.yml (Hindi) [ci skip] * New translations simple_form.en.yml (Malay) [ci skip] * New translations simple_form.en.yml (Telugu) [ci skip] * New translations simple_form.en.yml (English, United Kingdom) [ci skip] * New translations simple_form.en.yml (Burmese) [ci skip] * New translations simple_form.en.yml (Welsh) [ci skip] * New translations simple_form.en.yml (Faroese) [ci skip] * New translations simple_form.en.yml (Esperanto) [ci skip] * New translations simple_form.en.yml (Uyghur) [ci skip] * New translations simple_form.en.yml (Chinese Traditional, Hong Kong) [ci skip] * New translations simple_form.en.yml (Tatar) [ci skip] * New translations simple_form.en.yml (Malayalam) [ci skip] * New translations simple_form.en.yml (Breton) [ci skip] * New translations simple_form.en.yml (Latin) [ci skip] * New translations simple_form.en.yml (Bosnian) [ci skip] * New translations simple_form.en.yml (French, Quebec) [ci skip] * New translations simple_form.en.yml (Sinhala) [ci skip] * New translations simple_form.en.yml (Cornish) [ci skip] * New translations simple_form.en.yml (Kannada) [ci skip] * New translations simple_form.en.yml (Scottish Gaelic) [ci skip] * New translations simple_form.en.yml (Asturian) [ci skip] * New translations simple_form.en.yml (Aragonese) [ci skip] * New translations simple_form.en.yml (Occitan) [ci skip] * New translations simple_form.en.yml (Serbian (Latin)) [ci skip] * New translations simple_form.en.yml (Kurmanji (Kurdish)) [ci skip] * New translations simple_form.en.yml (Sorani (Kurdish)) [ci skip] * New translations simple_form.en.yml (Scots) [ci skip] * New translations simple_form.en.yml (Igbo) [ci skip] * New translations simple_form.en.yml (Corsican) [ci skip] * New translations simple_form.en.yml (Sardinian) [ci skip] * New translations simple_form.en.yml (Sanskrit) [ci skip] * New translations simple_form.en.yml (Kabyle) [ci skip] * New translations simple_form.en.yml (Ido) [ci skip] --- app/javascript/flavours/glitch/locales/af.json | 197 +------------------- app/javascript/flavours/glitch/locales/an.json | 202 +-------------------- app/javascript/flavours/glitch/locales/ar.json | 197 +------------------- app/javascript/flavours/glitch/locales/ast.json | 197 +------------------- app/javascript/flavours/glitch/locales/be.json | 202 +-------------------- app/javascript/flavours/glitch/locales/bg.json | 197 +------------------- app/javascript/flavours/glitch/locales/bn.json | 197 +------------------- app/javascript/flavours/glitch/locales/br.json | 197 +------------------- app/javascript/flavours/glitch/locales/bs.json | 202 +-------------------- app/javascript/flavours/glitch/locales/ca.json | 197 +------------------- app/javascript/flavours/glitch/locales/ckb.json | 197 +------------------- app/javascript/flavours/glitch/locales/co.json | 197 +------------------- app/javascript/flavours/glitch/locales/cs.json | 50 +---- app/javascript/flavours/glitch/locales/cy.json | 197 +------------------- app/javascript/flavours/glitch/locales/da.json | 197 +------------------- app/javascript/flavours/glitch/locales/de.json | 197 +------------------- app/javascript/flavours/glitch/locales/el.json | 197 +------------------- app/javascript/flavours/glitch/locales/en-GB.json | 202 +-------------------- app/javascript/flavours/glitch/locales/eo.json | 197 +------------------- app/javascript/flavours/glitch/locales/es-AR.json | 107 +---------- app/javascript/flavours/glitch/locales/es-MX.json | 107 +---------- app/javascript/flavours/glitch/locales/es.json | 107 +---------- app/javascript/flavours/glitch/locales/et.json | 197 +------------------- app/javascript/flavours/glitch/locales/eu.json | 197 +------------------- app/javascript/flavours/glitch/locales/fa.json | 197 +------------------- app/javascript/flavours/glitch/locales/fi.json | 197 +------------------- app/javascript/flavours/glitch/locales/fo.json | 202 +-------------------- app/javascript/flavours/glitch/locales/fr-QC.json | 197 +------------------- app/javascript/flavours/glitch/locales/fr.json | 197 +------------------- app/javascript/flavours/glitch/locales/fy.json | 202 +-------------------- app/javascript/flavours/glitch/locales/ga.json | 197 +------------------- app/javascript/flavours/glitch/locales/gd.json | 197 +------------------- app/javascript/flavours/glitch/locales/gl.json | 197 +------------------- app/javascript/flavours/glitch/locales/he.json | 197 +------------------- app/javascript/flavours/glitch/locales/hi.json | 197 +------------------- app/javascript/flavours/glitch/locales/hr.json | 197 +------------------- app/javascript/flavours/glitch/locales/hu.json | 197 +------------------- app/javascript/flavours/glitch/locales/hy.json | 197 +------------------- app/javascript/flavours/glitch/locales/id.json | 197 +------------------- app/javascript/flavours/glitch/locales/ig.json | 202 +-------------------- app/javascript/flavours/glitch/locales/io.json | 197 +------------------- app/javascript/flavours/glitch/locales/is.json | 197 +------------------- app/javascript/flavours/glitch/locales/it.json | 197 +------------------- app/javascript/flavours/glitch/locales/ja.json | 78 +------- app/javascript/flavours/glitch/locales/ka.json | 197 +------------------- app/javascript/flavours/glitch/locales/kab.json | 197 +------------------- app/javascript/flavours/glitch/locales/kk.json | 197 +------------------- app/javascript/flavours/glitch/locales/kn.json | 197 +------------------- app/javascript/flavours/glitch/locales/ko.json | 15 -- app/javascript/flavours/glitch/locales/ku.json | 197 +------------------- app/javascript/flavours/glitch/locales/kw.json | 197 +------------------- app/javascript/flavours/glitch/locales/la.json | 202 +-------------------- app/javascript/flavours/glitch/locales/lt.json | 197 +------------------- app/javascript/flavours/glitch/locales/lv.json | 197 +------------------- app/javascript/flavours/glitch/locales/mk.json | 197 +------------------- app/javascript/flavours/glitch/locales/ml.json | 197 +------------------- app/javascript/flavours/glitch/locales/mr.json | 197 +------------------- app/javascript/flavours/glitch/locales/ms.json | 197 +------------------- app/javascript/flavours/glitch/locales/my.json | 202 +-------------------- app/javascript/flavours/glitch/locales/nl.json | 197 +------------------- app/javascript/flavours/glitch/locales/nn.json | 197 +------------------- app/javascript/flavours/glitch/locales/no.json | 197 +------------------- app/javascript/flavours/glitch/locales/oc.json | 197 +------------------- app/javascript/flavours/glitch/locales/pa.json | 197 +------------------- app/javascript/flavours/glitch/locales/pl.json | 148 +-------------- app/javascript/flavours/glitch/locales/pt-BR.json | 197 +------------------- app/javascript/flavours/glitch/locales/pt-PT.json | 197 +------------------- app/javascript/flavours/glitch/locales/ro.json | 197 +------------------- app/javascript/flavours/glitch/locales/ru.json | 197 +------------------- app/javascript/flavours/glitch/locales/sa.json | 197 +------------------- app/javascript/flavours/glitch/locales/sc.json | 197 +------------------- app/javascript/flavours/glitch/locales/sco.json | 202 +-------------------- app/javascript/flavours/glitch/locales/si.json | 197 +------------------- app/javascript/flavours/glitch/locales/sk.json | 197 +------------------- app/javascript/flavours/glitch/locales/sl.json | 197 +------------------- app/javascript/flavours/glitch/locales/sq.json | 197 +------------------- .../flavours/glitch/locales/sr-Latn.json | 197 +------------------- app/javascript/flavours/glitch/locales/sr.json | 197 +------------------- app/javascript/flavours/glitch/locales/sv.json | 197 +------------------- app/javascript/flavours/glitch/locales/ta.json | 197 +------------------- app/javascript/flavours/glitch/locales/te.json | 197 +------------------- app/javascript/flavours/glitch/locales/th.json | 197 +------------------- app/javascript/flavours/glitch/locales/tr.json | 197 +------------------- app/javascript/flavours/glitch/locales/tt.json | 197 +------------------- app/javascript/flavours/glitch/locales/ug.json | 197 +------------------- app/javascript/flavours/glitch/locales/uk.json | 155 +--------------- app/javascript/flavours/glitch/locales/ur.json | 197 +------------------- app/javascript/flavours/glitch/locales/vi.json | 197 +------------------- app/javascript/flavours/glitch/locales/zh-CN.json | 24 --- app/javascript/flavours/glitch/locales/zh-HK.json | 197 +------------------- app/javascript/flavours/glitch/locales/zh-TW.json | 197 +------------------- config/locales-glitch/af.yml | 37 ---- config/locales-glitch/an.yml | 37 ---- config/locales-glitch/ar.yml | 37 ---- config/locales-glitch/ast.yml | 37 ---- config/locales-glitch/be.yml | 37 ---- config/locales-glitch/bg.yml | 37 ---- config/locales-glitch/bn.yml | 37 ---- config/locales-glitch/br.yml | 37 ---- config/locales-glitch/bs.yml | 37 ---- config/locales-glitch/ca.yml | 37 ---- config/locales-glitch/ckb.yml | 37 ---- config/locales-glitch/co.yml | 37 ---- config/locales-glitch/cy.yml | 37 ---- config/locales-glitch/da.yml | 37 ---- config/locales-glitch/de.yml | 37 ---- config/locales-glitch/el.yml | 37 ---- config/locales-glitch/en-GB.yml | 37 ---- config/locales-glitch/eo.yml | 37 ---- config/locales-glitch/es-AR.yml | 18 -- config/locales-glitch/es-MX.yml | 18 -- config/locales-glitch/es.yml | 18 -- config/locales-glitch/et.yml | 37 ---- config/locales-glitch/eu.yml | 37 ---- config/locales-glitch/fa.yml | 37 ---- config/locales-glitch/fi.yml | 37 ---- config/locales-glitch/fo.yml | 37 ---- config/locales-glitch/fr-QC.yml | 39 +--- config/locales-glitch/fr.yml | 39 +--- config/locales-glitch/fy.yml | 37 ---- config/locales-glitch/ga.yml | 37 ---- config/locales-glitch/gd.yml | 37 ---- config/locales-glitch/gl.yml | 37 ---- config/locales-glitch/he.yml | 37 ---- config/locales-glitch/hi.yml | 37 ---- config/locales-glitch/hr.yml | 37 ---- config/locales-glitch/hu.yml | 37 ---- config/locales-glitch/hy.yml | 37 ---- config/locales-glitch/id.yml | 37 ---- config/locales-glitch/ig.yml | 37 ---- config/locales-glitch/io.yml | 37 ---- config/locales-glitch/is.yml | 37 ---- config/locales-glitch/it.yml | 37 ---- config/locales-glitch/ja.yml | 18 -- config/locales-glitch/ka.yml | 37 ---- config/locales-glitch/kab.yml | 37 ---- config/locales-glitch/kk.yml | 37 ---- config/locales-glitch/kn.yml | 37 ---- config/locales-glitch/ko.yml | 8 - config/locales-glitch/ku.yml | 37 ---- config/locales-glitch/kw.yml | 37 ---- config/locales-glitch/la.yml | 37 ---- config/locales-glitch/lt.yml | 37 ---- config/locales-glitch/lv.yml | 37 ---- config/locales-glitch/mk.yml | 37 ---- config/locales-glitch/ml.yml | 37 ---- config/locales-glitch/mr.yml | 37 ---- config/locales-glitch/ms.yml | 37 ---- config/locales-glitch/my.yml | 37 ---- config/locales-glitch/nl.yml | 37 ---- config/locales-glitch/nn.yml | 37 ---- config/locales-glitch/no.yml | 39 +--- config/locales-glitch/oc.yml | 37 ---- config/locales-glitch/pa.yml | 37 ---- config/locales-glitch/pl.yml | 32 ---- config/locales-glitch/pt-BR.yml | 37 ---- config/locales-glitch/pt-PT.yml | 37 ---- config/locales-glitch/ro.yml | 37 ---- config/locales-glitch/ru.yml | 37 ---- config/locales-glitch/sa.yml | 37 ---- config/locales-glitch/sc.yml | 37 ---- config/locales-glitch/sco.yml | 37 ---- config/locales-glitch/si.yml | 37 ---- config/locales-glitch/simple_form.af.yml | 26 --- config/locales-glitch/simple_form.an.yml | 26 --- config/locales-glitch/simple_form.ar.yml | 26 --- config/locales-glitch/simple_form.ast.yml | 26 --- config/locales-glitch/simple_form.be.yml | 26 --- config/locales-glitch/simple_form.bg.yml | 26 --- config/locales-glitch/simple_form.bn.yml | 26 --- config/locales-glitch/simple_form.br.yml | 26 --- config/locales-glitch/simple_form.bs.yml | 26 --- config/locales-glitch/simple_form.ca.yml | 26 --- config/locales-glitch/simple_form.ckb.yml | 26 --- config/locales-glitch/simple_form.co.yml | 26 --- config/locales-glitch/simple_form.cs.yml | 3 - config/locales-glitch/simple_form.cy.yml | 26 --- config/locales-glitch/simple_form.da.yml | 26 --- config/locales-glitch/simple_form.de.yml | 26 --- config/locales-glitch/simple_form.el.yml | 26 --- config/locales-glitch/simple_form.en-GB.yml | 26 --- config/locales-glitch/simple_form.eo.yml | 26 --- config/locales-glitch/simple_form.es-AR.yml | 9 - config/locales-glitch/simple_form.es-MX.yml | 9 - config/locales-glitch/simple_form.es.yml | 9 - config/locales-glitch/simple_form.et.yml | 26 --- config/locales-glitch/simple_form.eu.yml | 26 --- config/locales-glitch/simple_form.fa.yml | 26 --- config/locales-glitch/simple_form.fi.yml | 26 --- config/locales-glitch/simple_form.fo.yml | 26 --- config/locales-glitch/simple_form.fr-QC.yml | 26 --- config/locales-glitch/simple_form.fr.yml | 26 --- config/locales-glitch/simple_form.fy.yml | 26 --- config/locales-glitch/simple_form.ga.yml | 26 --- config/locales-glitch/simple_form.gd.yml | 26 --- config/locales-glitch/simple_form.gl.yml | 26 --- config/locales-glitch/simple_form.he.yml | 26 --- config/locales-glitch/simple_form.hi.yml | 26 --- config/locales-glitch/simple_form.hr.yml | 26 --- config/locales-glitch/simple_form.hu.yml | 26 --- config/locales-glitch/simple_form.hy.yml | 26 --- config/locales-glitch/simple_form.id.yml | 26 --- config/locales-glitch/simple_form.ig.yml | 26 --- config/locales-glitch/simple_form.io.yml | 26 --- config/locales-glitch/simple_form.is.yml | 26 --- config/locales-glitch/simple_form.it.yml | 26 --- config/locales-glitch/simple_form.ja.yml | 8 - config/locales-glitch/simple_form.ka.yml | 26 --- config/locales-glitch/simple_form.kab.yml | 26 --- config/locales-glitch/simple_form.kk.yml | 26 --- config/locales-glitch/simple_form.kn.yml | 26 --- config/locales-glitch/simple_form.ko.yml | 4 - config/locales-glitch/simple_form.ku.yml | 26 --- config/locales-glitch/simple_form.kw.yml | 26 --- config/locales-glitch/simple_form.la.yml | 26 --- config/locales-glitch/simple_form.lt.yml | 26 --- config/locales-glitch/simple_form.lv.yml | 26 --- config/locales-glitch/simple_form.mk.yml | 26 --- config/locales-glitch/simple_form.ml.yml | 26 --- config/locales-glitch/simple_form.mr.yml | 26 --- config/locales-glitch/simple_form.ms.yml | 26 --- config/locales-glitch/simple_form.my.yml | 26 --- config/locales-glitch/simple_form.nl.yml | 26 --- config/locales-glitch/simple_form.nn.yml | 26 --- config/locales-glitch/simple_form.no.yml | 28 +-- config/locales-glitch/simple_form.oc.yml | 26 --- config/locales-glitch/simple_form.pa.yml | 26 --- config/locales-glitch/simple_form.pl.yml | 17 -- config/locales-glitch/simple_form.pt-BR.yml | 26 --- config/locales-glitch/simple_form.pt-PT.yml | 26 --- config/locales-glitch/simple_form.ro.yml | 26 --- config/locales-glitch/simple_form.ru.yml | 26 --- config/locales-glitch/simple_form.sa.yml | 26 --- config/locales-glitch/simple_form.sc.yml | 26 --- config/locales-glitch/simple_form.sco.yml | 26 --- config/locales-glitch/simple_form.si.yml | 26 --- config/locales-glitch/simple_form.sk.yml | 26 --- config/locales-glitch/simple_form.sl.yml | 26 --- config/locales-glitch/simple_form.sq.yml | 26 --- config/locales-glitch/simple_form.sr-Latn.yml | 26 --- config/locales-glitch/simple_form.sr.yml | 26 --- config/locales-glitch/simple_form.sv.yml | 26 --- config/locales-glitch/simple_form.ta.yml | 26 --- config/locales-glitch/simple_form.te.yml | 26 --- config/locales-glitch/simple_form.th.yml | 26 --- config/locales-glitch/simple_form.tr.yml | 26 --- config/locales-glitch/simple_form.tt.yml | 26 --- config/locales-glitch/simple_form.ug.yml | 26 --- config/locales-glitch/simple_form.uk.yml | 26 --- config/locales-glitch/simple_form.ur.yml | 26 --- config/locales-glitch/simple_form.vi.yml | 26 --- config/locales-glitch/simple_form.zh-CN.yml | 9 - config/locales-glitch/simple_form.zh-HK.yml | 26 --- config/locales-glitch/simple_form.zh-TW.yml | 26 --- config/locales-glitch/sk.yml | 37 ---- config/locales-glitch/sl.yml | 37 ---- config/locales-glitch/sq.yml | 37 ---- config/locales-glitch/sr-Latn.yml | 37 ---- config/locales-glitch/sr.yml | 37 ---- config/locales-glitch/sv.yml | 37 ---- config/locales-glitch/ta.yml | 37 ---- config/locales-glitch/te.yml | 37 ---- config/locales-glitch/th.yml | 37 ---- config/locales-glitch/tr.yml | 37 ---- config/locales-glitch/tt.yml | 37 ---- config/locales-glitch/ug.yml | 37 ---- config/locales-glitch/uk.yml | 37 ---- config/locales-glitch/ur.yml | 37 ---- config/locales-glitch/vi.yml | 37 ---- config/locales-glitch/zh-CN.yml | 18 -- config/locales-glitch/zh-HK.yml | 37 ---- config/locales-glitch/zh-TW.yml | 37 ---- 272 files changed, 105 insertions(+), 22325 deletions(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/locales/af.json b/app/javascript/flavours/glitch/locales/af.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/af.json +++ b/app/javascript/flavours/glitch/locales/af.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/an.json b/app/javascript/flavours/glitch/locales/an.json index eb99fc64d..0967ef424 100644 --- a/app/javascript/flavours/glitch/locales/an.json +++ b/app/javascript/flavours/glitch/locales/an.json @@ -1,201 +1 @@ -{ - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", - "onboarding.page_one.federation": "{domain} is an 'instance' of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", - "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}, and is compatible with any Mastodon instance or app. Glitchsoc is entirely free and open-source. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", - "settings.content_warnings": "Content Warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "User preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." -} +{} diff --git a/app/javascript/flavours/glitch/locales/ar.json b/app/javascript/flavours/glitch/locales/ar.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/ar.json +++ b/app/javascript/flavours/glitch/locales/ar.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/ast.json b/app/javascript/flavours/glitch/locales/ast.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/ast.json +++ b/app/javascript/flavours/glitch/locales/ast.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/be.json b/app/javascript/flavours/glitch/locales/be.json index eb99fc64d..0967ef424 100644 --- a/app/javascript/flavours/glitch/locales/be.json +++ b/app/javascript/flavours/glitch/locales/be.json @@ -1,201 +1 @@ -{ - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", - "onboarding.page_one.federation": "{domain} is an 'instance' of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", - "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}, and is compatible with any Mastodon instance or app. Glitchsoc is entirely free and open-source. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", - "settings.content_warnings": "Content Warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "User preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." -} +{} diff --git a/app/javascript/flavours/glitch/locales/bg.json b/app/javascript/flavours/glitch/locales/bg.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/bg.json +++ b/app/javascript/flavours/glitch/locales/bg.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/bn.json b/app/javascript/flavours/glitch/locales/bn.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/bn.json +++ b/app/javascript/flavours/glitch/locales/bn.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/br.json b/app/javascript/flavours/glitch/locales/br.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/br.json +++ b/app/javascript/flavours/glitch/locales/br.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/bs.json b/app/javascript/flavours/glitch/locales/bs.json index eb99fc64d..0967ef424 100644 --- a/app/javascript/flavours/glitch/locales/bs.json +++ b/app/javascript/flavours/glitch/locales/bs.json @@ -1,201 +1 @@ -{ - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", - "onboarding.page_one.federation": "{domain} is an 'instance' of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", - "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}, and is compatible with any Mastodon instance or app. Glitchsoc is entirely free and open-source. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", - "settings.content_warnings": "Content Warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "User preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." -} +{} diff --git a/app/javascript/flavours/glitch/locales/ca.json b/app/javascript/flavours/glitch/locales/ca.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/ca.json +++ b/app/javascript/flavours/glitch/locales/ca.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/ckb.json b/app/javascript/flavours/glitch/locales/ckb.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/ckb.json +++ b/app/javascript/flavours/glitch/locales/ckb.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/co.json b/app/javascript/flavours/glitch/locales/co.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/co.json +++ b/app/javascript/flavours/glitch/locales/co.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/cs.json b/app/javascript/flavours/glitch/locales/cs.json index 1283f4bdd..09ad53140 100644 --- a/app/javascript/flavours/glitch/locales/cs.json +++ b/app/javascript/flavours/glitch/locales/cs.json @@ -1,15 +1,5 @@ { "about.fork_disclaimer": "Glitch-soc je svobodný software s otevřeným zdrojovým kódem založený na Mastodonu.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", "advanced_options.icon_title": "Pokročilá nastavení", "advanced_options.local-only.long": "Neposílat na jiné servery", "advanced_options.local-only.short": "Lokální příspěvek", @@ -18,33 +8,15 @@ "advanced_options.threaded_mode.short": "Režim vlákna", "advanced_options.threaded_mode.tooltip": "Režim vlákna je zapnutý", "boost_modal.missing_description": "Příspěvek obsahuje obrázky bez popisků", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", "column.subheading": "Různé", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", "compose.attach": "Připojit...", "compose.attach.doodle": "Něco namalovat", "compose.attach.upload": "Nahrát soubor", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", "compose.content-type.plain": "Prostý text", "compose_form.poll.multiple_choices": "Povolit více odpovědí", "compose_form.poll.single_choice": "Povolit jednu odpověď", "compose_form.spoiler": "Přidat varování o obsahu", "confirmation_modal.do_not_ask_again": "Příště se už neptat", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", "content-type.change": "Formát příspěvku", "direct.group_by_conversations": "Seskupit do konverzací", "endorsed_accounts_editor.endorsed_accounts": "Vybrané účty", @@ -53,18 +25,14 @@ "home.column_settings.advanced": "Pokročilé", "home.column_settings.filter_regex": "Filtrovat podle regulárních výrazů", "home.column_settings.show_direct": "Zobrazit přímé zprávy", - "home.settings": "Column settings", "keyboard_shortcuts.bookmark": "Přidat do záložek", "keyboard_shortcuts.secondary_toot": "Odeslat příspěvek s druhotným nastavením soukromí", "keyboard_shortcuts.toggle_collapse": "Sbalit/rozbalit příspěvek", "layout.auto": "Automatické", - "layout.desktop": "Desktop", "layout.hint.auto": "Vybrat rozložení automaticky v závislosti na nastavení “Povolit pokročilé webové rozhraní” a velikosti obrazovky.", "layout.hint.desktop": "Použít vícesloupcové rozložení nezávisle na nastavení “Povolit pokročilé webové rozhraní” a velikosti obrazovky.", "layout.hint.single": "Použít jednosloupcové rozložení nezávisle na nastavení “Povolit pokročilé webové rozhraní” a velikosti obrazovky.", - "layout.single": "Mobile", "media_gallery.sensitive": "Citlivý obsah", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", "navigation_bar.app_settings": "Nastavení aplikace", "navigation_bar.featured_users": "Vybraní uživatelé", "navigation_bar.info": "Rozšířené informace", @@ -86,13 +54,10 @@ "onboarding.page_one.federation": "{domain} je 'instance' Mastodonu. Mastodon je síť nezávislých serverů, které jsou spolu propojené do jedné velké sociální sítě. Těmto serverům říkáme instance.", "onboarding.page_one.handle": "Jste na instanci {domain}, takže celá adresa vašeho profilu je {handle}", "onboarding.page_one.welcome": "Vítá vás {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", "onboarding.page_six.almost_done": "Skoro hotovo...", "onboarding.page_six.appetoot": "Veselé mastodonění!", "onboarding.page_six.apps_available": "Jsou dostupné {apps} pro iOS, Android i jiné platformy.", "onboarding.page_six.github": "Na serveru {domain} běží Glitchsoc. Glitchsoc je přátelský {fork} programu {Mastodon}, a je kompatibilní s jakoukoliv jinou mastodoní instancí nebo aplikací. Glitchsoc je zcela svobodný a má otevřený zdrojový kód. Na stránce {github} můžete hlásit chyby, žádat o nové funkce, nebo ke kódu vlastnoručně přispět.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", "onboarding.page_six.various_app": "mobilní aplikace", "onboarding.page_three.profile": "Upravte si svůj profil a nastavte si profilový obrázek, jméno, a krátký text o sobě. Naleznete tam i další možnosti nastavení.", "onboarding.page_three.search": "Pomocí vyhledávací lišty můžete hledat lidi nebo hashtagy. Pokud hledáte někoho z jiné instance, musíte použít celou adresu jeho profilu.", @@ -124,7 +89,6 @@ "settings.enable_collapsed": "Povolit sbalené příspěvky", "settings.enable_collapsed_hint": "U sbalených příspěvků je část jejich obsahu skrytá, aby zabraly méně místa na obrazovce. (Tohle není stejná funkce jako varování o obsahu.)", "settings.enable_content_warnings_auto_unfold": "Vždy rozbalit příspěvky označené varováním o obsahu", - "settings.filters": "Filters", "settings.general": "Obecné", "settings.hicolor_privacy_icons": "Barevné ikony soukromí", "settings.hicolor_privacy_icons.hint": "Zobrazit ikony úrovně soukromí příspěvků v jasných, snadno rozlišitelných barvách", @@ -173,7 +137,6 @@ "settings.status_icons_media": "Indikace obrázků a anket", "settings.status_icons_reply": "Indikace odpovědi", "settings.status_icons_visibility": "Indikace úrovně soukromí", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", "settings.tag_misleading_links": "Označit zavádějící odkazy", "settings.tag_misleading_links.hint": "Zobrazit skutečný cíl u každého odkazu, který ho explicitně nezmiňuje", "settings.wide_view": "Široké sloupce (pouze v režimu Desktop)", @@ -186,16 +149,5 @@ "status.in_reply_to": "Tento příspěvek je odpověď", "status.is_poll": "Tento příspěvek je anketa", "status.local_only": "Viditelné pouze z vaší instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Rozbalit", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "status.uncollapse": "Rozbalit" } diff --git a/app/javascript/flavours/glitch/locales/cy.json b/app/javascript/flavours/glitch/locales/cy.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/cy.json +++ b/app/javascript/flavours/glitch/locales/cy.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/da.json b/app/javascript/flavours/glitch/locales/da.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/da.json +++ b/app/javascript/flavours/glitch/locales/da.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/de.json b/app/javascript/flavours/glitch/locales/de.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/de.json +++ b/app/javascript/flavours/glitch/locales/de.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/el.json b/app/javascript/flavours/glitch/locales/el.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/el.json +++ b/app/javascript/flavours/glitch/locales/el.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/en-GB.json b/app/javascript/flavours/glitch/locales/en-GB.json index eb99fc64d..0967ef424 100644 --- a/app/javascript/flavours/glitch/locales/en-GB.json +++ b/app/javascript/flavours/glitch/locales/en-GB.json @@ -1,201 +1 @@ -{ - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", - "onboarding.page_one.federation": "{domain} is an 'instance' of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", - "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}, and is compatible with any Mastodon instance or app. Glitchsoc is entirely free and open-source. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", - "settings.content_warnings": "Content Warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "User preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." -} +{} diff --git a/app/javascript/flavours/glitch/locales/eo.json b/app/javascript/flavours/glitch/locales/eo.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/eo.json +++ b/app/javascript/flavours/glitch/locales/eo.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/es-AR.json b/app/javascript/flavours/glitch/locales/es-AR.json index 2c6794fbf..652ed3ab4 100644 --- a/app/javascript/flavours/glitch/locales/es-AR.json +++ b/app/javascript/flavours/glitch/locales/es-AR.json @@ -1,15 +1,4 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", "advanced_options.icon_title": "Opciones avanzadas", "advanced_options.local-only.long": "No publicar a otras instancias", "advanced_options.local-only.short": "Local", @@ -17,87 +6,33 @@ "advanced_options.threaded_mode.long": "Al publicar abre automáticamente una respuesta", "advanced_options.threaded_mode.short": "Modo hilo", "advanced_options.threaded_mode.tooltip": "Modo hilo habilitado", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", "compose.attach": "Adjuntar...", "compose.attach.doodle": "Dibujar algo", "compose.attach.upload": "Subir un archivo", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", "confirmations.unfilter.author": "Publicado por", "confirmations.unfilter.confirm": "Mostrar", "confirmations.unfilter.edit_filter": "Editar filtro", "confirmations.unfilter.filters": "Coincidencia con {count, plural, one {filtro} other {filtros}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", "favourite_modal.combo": "Puedes presionar {combo} para omitir esto la próxima vez", "getting_started.onboarding": "Paseo inicial", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", "home.column_settings.show_direct": "Mostrar mensajes directos", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", "layout.auto": "Automático", "layout.desktop": "Escritorio", "layout.hint.auto": "Seleccionar un diseño automáticamente basado en \"Habilitar interface web avanzada\" y tamaño de pantalla", "layout.hint.desktop": "Utiliza el diseño multi-columna sin importar \"Habilitar interface web avanzada\" o tamaño de pantalla", "layout.hint.single": "Utiliza el diseño de una columna sin importar \"Habilitar interface web avanzada\" o tamaño de pantalla", - "layout.single": "Mobile", "media_gallery.sensitive": "Sensible", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", "navigation_bar.app_settings": "Ajustes de aplicación", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", "notification.markForDeletion": "Marcar para borrar", "notification_purge.btn_all": "Seleccionar\ntodo", "notification_purge.btn_apply": "Borrar\nselección", "notification_purge.btn_invert": "Invertir\nselección", "notification_purge.btn_none": "Seleccionar\nnada", - "notification_purge.start": "Enter notification cleaning mode", "notifications.marked_clear": "Limpiar notificaciones seleccionadas", "notifications.marked_clear_confirmation": "¿Deseas borrar permanentemente todas las notificaciones seleccionadas?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", "onboarding.page_one.welcome": "¡Bienvenidx a {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", "settings.always_show_spoilers_field": "Siempre mostrar el campo de advertencia de contenido", "settings.auto_collapse": "Colapsar automáticamente", "settings.auto_collapse_all": "Todo", @@ -115,22 +50,12 @@ "settings.content_warnings": "Content warnings", "settings.content_warnings.regexp": "Regexp (expresión regular)", "settings.content_warnings_filter": "No descolapsar estas advertencias de contenido:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", "settings.enable_collapsed": "Habilitar toots colapsados", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", "settings.enable_content_warnings_auto_unfold": "Descolapsar automáticamente advertencias de contenido", "settings.filters": "Filtros", - "settings.general": "General", "settings.hicolor_privacy_icons": "Íconos de privacidad más visibles", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", "settings.image_backgrounds": "Fondos de imágenes", "settings.image_backgrounds_media": "Vista previa de medios de toots colapsados", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", "settings.image_backgrounds_users": "Darle fondo de imagen a toots colapsados", "settings.inline_preview_cards": "Vista previa para enlaces externos", "settings.layout": "Diseño", @@ -145,10 +70,6 @@ "settings.notifications.tab_badge": "Marcador de notificaciones no leídas", "settings.notifications.tab_badge.hint": "Muestra un marcador de notificaciones sin leer en el ícono de notificaciones cuando dicha columna no está abierta", "settings.notifications_opts": "Opciones de notificaciones", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", "settings.preferences": "Preferences", "settings.prepend_cw_re": "Anteponer \"re: \" a las advertencias de contenido al responder", "settings.preselect_on_reply": "Preseleccionar nombres de usuarix al responder", @@ -157,7 +78,6 @@ "settings.rewrite_mentions_acct": "Reescribir con nombre de usuarix y dominio (para cuentas remotas)", "settings.rewrite_mentions_no": "No reescribir menciones", "settings.rewrite_mentions_username": "Reescribir con nombre de usuarix", - "settings.shared_settings_link": "user preferences", "settings.show_action_bar": "Mostrar botones de acción en toots colapsados", "settings.show_content_type_choice": "Mostrar selección de tipo de contenido al crear toots", "settings.show_reply_counter": "Mostrar un conteo estimado de respuestas", @@ -167,35 +87,10 @@ "settings.side_arm_reply_mode.copy": "Copiar opción de privacidad del toot al que estás respondiendo", "settings.side_arm_reply_mode.keep": "Conservar opción de privacidad", "settings.side_arm_reply_mode.restrict": "Restringir la opción de privacidad a la misma del toot al que estás respondiendo", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", "settings.swipe_to_change_columns": "Permitir deslizar para cambiar columnas (Sólo en móvil)", "settings.tag_misleading_links": "Marcar enlaces engañosos", "settings.tag_misleading_links.hint": "Añadir una indicación visual indicando el destino de los enlace que no los mencionen explícitamente", "settings.wide_view": "Vista amplia (solo modo de escritorio)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", "status.collapse": "Colapsar", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Descolapsar", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "status.uncollapse": "Descolapsar" } diff --git a/app/javascript/flavours/glitch/locales/es-MX.json b/app/javascript/flavours/glitch/locales/es-MX.json index 2c6794fbf..652ed3ab4 100644 --- a/app/javascript/flavours/glitch/locales/es-MX.json +++ b/app/javascript/flavours/glitch/locales/es-MX.json @@ -1,15 +1,4 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", "advanced_options.icon_title": "Opciones avanzadas", "advanced_options.local-only.long": "No publicar a otras instancias", "advanced_options.local-only.short": "Local", @@ -17,87 +6,33 @@ "advanced_options.threaded_mode.long": "Al publicar abre automáticamente una respuesta", "advanced_options.threaded_mode.short": "Modo hilo", "advanced_options.threaded_mode.tooltip": "Modo hilo habilitado", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", "compose.attach": "Adjuntar...", "compose.attach.doodle": "Dibujar algo", "compose.attach.upload": "Subir un archivo", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", "confirmations.unfilter.author": "Publicado por", "confirmations.unfilter.confirm": "Mostrar", "confirmations.unfilter.edit_filter": "Editar filtro", "confirmations.unfilter.filters": "Coincidencia con {count, plural, one {filtro} other {filtros}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", "favourite_modal.combo": "Puedes presionar {combo} para omitir esto la próxima vez", "getting_started.onboarding": "Paseo inicial", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", "home.column_settings.show_direct": "Mostrar mensajes directos", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", "layout.auto": "Automático", "layout.desktop": "Escritorio", "layout.hint.auto": "Seleccionar un diseño automáticamente basado en \"Habilitar interface web avanzada\" y tamaño de pantalla", "layout.hint.desktop": "Utiliza el diseño multi-columna sin importar \"Habilitar interface web avanzada\" o tamaño de pantalla", "layout.hint.single": "Utiliza el diseño de una columna sin importar \"Habilitar interface web avanzada\" o tamaño de pantalla", - "layout.single": "Mobile", "media_gallery.sensitive": "Sensible", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", "navigation_bar.app_settings": "Ajustes de aplicación", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", "notification.markForDeletion": "Marcar para borrar", "notification_purge.btn_all": "Seleccionar\ntodo", "notification_purge.btn_apply": "Borrar\nselección", "notification_purge.btn_invert": "Invertir\nselección", "notification_purge.btn_none": "Seleccionar\nnada", - "notification_purge.start": "Enter notification cleaning mode", "notifications.marked_clear": "Limpiar notificaciones seleccionadas", "notifications.marked_clear_confirmation": "¿Deseas borrar permanentemente todas las notificaciones seleccionadas?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", "onboarding.page_one.welcome": "¡Bienvenidx a {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", "settings.always_show_spoilers_field": "Siempre mostrar el campo de advertencia de contenido", "settings.auto_collapse": "Colapsar automáticamente", "settings.auto_collapse_all": "Todo", @@ -115,22 +50,12 @@ "settings.content_warnings": "Content warnings", "settings.content_warnings.regexp": "Regexp (expresión regular)", "settings.content_warnings_filter": "No descolapsar estas advertencias de contenido:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", "settings.enable_collapsed": "Habilitar toots colapsados", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", "settings.enable_content_warnings_auto_unfold": "Descolapsar automáticamente advertencias de contenido", "settings.filters": "Filtros", - "settings.general": "General", "settings.hicolor_privacy_icons": "Íconos de privacidad más visibles", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", "settings.image_backgrounds": "Fondos de imágenes", "settings.image_backgrounds_media": "Vista previa de medios de toots colapsados", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", "settings.image_backgrounds_users": "Darle fondo de imagen a toots colapsados", "settings.inline_preview_cards": "Vista previa para enlaces externos", "settings.layout": "Diseño", @@ -145,10 +70,6 @@ "settings.notifications.tab_badge": "Marcador de notificaciones no leídas", "settings.notifications.tab_badge.hint": "Muestra un marcador de notificaciones sin leer en el ícono de notificaciones cuando dicha columna no está abierta", "settings.notifications_opts": "Opciones de notificaciones", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", "settings.preferences": "Preferences", "settings.prepend_cw_re": "Anteponer \"re: \" a las advertencias de contenido al responder", "settings.preselect_on_reply": "Preseleccionar nombres de usuarix al responder", @@ -157,7 +78,6 @@ "settings.rewrite_mentions_acct": "Reescribir con nombre de usuarix y dominio (para cuentas remotas)", "settings.rewrite_mentions_no": "No reescribir menciones", "settings.rewrite_mentions_username": "Reescribir con nombre de usuarix", - "settings.shared_settings_link": "user preferences", "settings.show_action_bar": "Mostrar botones de acción en toots colapsados", "settings.show_content_type_choice": "Mostrar selección de tipo de contenido al crear toots", "settings.show_reply_counter": "Mostrar un conteo estimado de respuestas", @@ -167,35 +87,10 @@ "settings.side_arm_reply_mode.copy": "Copiar opción de privacidad del toot al que estás respondiendo", "settings.side_arm_reply_mode.keep": "Conservar opción de privacidad", "settings.side_arm_reply_mode.restrict": "Restringir la opción de privacidad a la misma del toot al que estás respondiendo", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", "settings.swipe_to_change_columns": "Permitir deslizar para cambiar columnas (Sólo en móvil)", "settings.tag_misleading_links": "Marcar enlaces engañosos", "settings.tag_misleading_links.hint": "Añadir una indicación visual indicando el destino de los enlace que no los mencionen explícitamente", "settings.wide_view": "Vista amplia (solo modo de escritorio)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", "status.collapse": "Colapsar", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Descolapsar", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "status.uncollapse": "Descolapsar" } diff --git a/app/javascript/flavours/glitch/locales/es.json b/app/javascript/flavours/glitch/locales/es.json index d032c8d53..f0191dd64 100644 --- a/app/javascript/flavours/glitch/locales/es.json +++ b/app/javascript/flavours/glitch/locales/es.json @@ -1,15 +1,4 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", "advanced_options.icon_title": "Opciones avanzadas", "advanced_options.local-only.long": "No publicar a otras instancias", "advanced_options.local-only.short": "Local", @@ -17,87 +6,33 @@ "advanced_options.threaded_mode.long": "Al publicar abre automáticamente una respuesta", "advanced_options.threaded_mode.short": "Modo hilo", "advanced_options.threaded_mode.tooltip": "Modo hilo habilitado", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", "compose.attach": "Adjuntar...", "compose.attach.doodle": "Dibujar algo", "compose.attach.upload": "Subir un archivo", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", "confirmations.unfilter.author": "Publicado por", "confirmations.unfilter.confirm": "Mostrar", "confirmations.unfilter.edit_filter": "Editar filtro", "confirmations.unfilter.filters": "Coincidencia con {count, plural, one {filtro} other {filtros}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", "favourite_modal.combo": "Puedes presionar {combo} para omitir esto la próxima vez", "getting_started.onboarding": "Paseo inicial", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", "home.column_settings.show_direct": "Mostrar mensajes directos", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", "layout.auto": "Automático", "layout.desktop": "Escritorio", "layout.hint.auto": "Seleccionar un diseño automáticamente basado en \"Habilitar interface web avanzada\" y tamaño de pantalla", "layout.hint.desktop": "Utiliza el diseño multi-columna sin importar \"Habilitar interface web avanzada\" o tamaño de pantalla", "layout.hint.single": "Utiliza el diseño de una columna sin importar \"Habilitar interface web avanzada\" o tamaño de pantalla", - "layout.single": "Mobile", "media_gallery.sensitive": "Sensible", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", "navigation_bar.app_settings": "Ajustes de aplicación", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", "notification.markForDeletion": "Marcar para borrar", "notification_purge.btn_all": "Seleccionar\ntodo", "notification_purge.btn_apply": "Borrar\nselección", "notification_purge.btn_invert": "Invertir\nselección", "notification_purge.btn_none": "Seleccionar\nnada", - "notification_purge.start": "Enter notification cleaning mode", "notifications.marked_clear": "Limpiar notificaciones seleccionadas", "notifications.marked_clear_confirmation": "¿Deseas borrar permanentemente todas las notificaciones seleccionadas?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} es una \"instancia\" de Mastodon. Mastodon es una red de servidores independientes que se unen para crear una red social más grande. A estos servidores los llamamos instancias.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", "onboarding.page_one.welcome": "¡Bienvenidx a {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} usa Glitchsoc. Glitchsoc es una bifurcación {fork} amigable de {Mastodon}, y es compatible con cualquier instancia o aplicación de Mastodon. Glitchsoc es completamente gratuito y de código abierto. Puedes reportar errores, solicitar funciones o contribuir al código en {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", "settings.always_show_spoilers_field": "Siempre mostrar el campo de advertencia de contenido", "settings.auto_collapse": "Colapsar automáticamente", "settings.auto_collapse_all": "Todo", @@ -115,22 +50,12 @@ "settings.content_warnings": "Advertencias de contenido", "settings.content_warnings.regexp": "Regexp (expresión regular)", "settings.content_warnings_filter": "No descolapsar estas advertencias de contenido:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", "settings.enable_collapsed": "Habilitar toots colapsados", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", "settings.enable_content_warnings_auto_unfold": "Descolapsar automáticamente advertencias de contenido", "settings.filters": "Filtros", - "settings.general": "General", "settings.hicolor_privacy_icons": "Íconos de privacidad más visibles", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", "settings.image_backgrounds": "Fondos de imágenes", "settings.image_backgrounds_media": "Vista previa de medios de toots colapsados", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", "settings.image_backgrounds_users": "Darle fondo de imagen a toots colapsados", "settings.inline_preview_cards": "Vista previa para enlaces externos", "settings.layout": "Diseño", @@ -145,10 +70,6 @@ "settings.notifications.tab_badge": "Marcador de notificaciones no leídas", "settings.notifications.tab_badge.hint": "Muestra un marcador de notificaciones sin leer en el ícono de notificaciones cuando dicha columna no está abierta", "settings.notifications_opts": "Opciones de notificaciones", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", "settings.preferences": "Preferencias de usuarix", "settings.prepend_cw_re": "Anteponer \"re: \" a las advertencias de contenido al responder", "settings.preselect_on_reply": "Preseleccionar nombres de usuarix al responder", @@ -157,7 +78,6 @@ "settings.rewrite_mentions_acct": "Reescribir con nombre de usuarix y dominio (para cuentas remotas)", "settings.rewrite_mentions_no": "No reescribir menciones", "settings.rewrite_mentions_username": "Reescribir con nombre de usuarix", - "settings.shared_settings_link": "user preferences", "settings.show_action_bar": "Mostrar botones de acción en toots colapsados", "settings.show_content_type_choice": "Mostrar selección de tipo de contenido al crear toots", "settings.show_reply_counter": "Mostrar un conteo estimado de respuestas", @@ -167,35 +87,10 @@ "settings.side_arm_reply_mode.copy": "Copiar opción de privacidad del toot al que estás respondiendo", "settings.side_arm_reply_mode.keep": "Conservar opción de privacidad", "settings.side_arm_reply_mode.restrict": "Restringir la opción de privacidad a la misma del toot al que estás respondiendo", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", "settings.swipe_to_change_columns": "Permitir deslizar para cambiar columnas (Sólo en móvil)", "settings.tag_misleading_links": "Marcar enlaces engañosos", "settings.tag_misleading_links.hint": "Añadir una indicación visual indicando el destino de los enlace que no los mencionen explícitamente", "settings.wide_view": "Vista amplia (solo modo de escritorio)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", "status.collapse": "Colapsar", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Descolapsar", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "status.uncollapse": "Descolapsar" } diff --git a/app/javascript/flavours/glitch/locales/et.json b/app/javascript/flavours/glitch/locales/et.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/et.json +++ b/app/javascript/flavours/glitch/locales/et.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/eu.json b/app/javascript/flavours/glitch/locales/eu.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/eu.json +++ b/app/javascript/flavours/glitch/locales/eu.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/fa.json b/app/javascript/flavours/glitch/locales/fa.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/fa.json +++ b/app/javascript/flavours/glitch/locales/fa.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/fi.json b/app/javascript/flavours/glitch/locales/fi.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/fi.json +++ b/app/javascript/flavours/glitch/locales/fi.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/fo.json b/app/javascript/flavours/glitch/locales/fo.json index eb99fc64d..0967ef424 100644 --- a/app/javascript/flavours/glitch/locales/fo.json +++ b/app/javascript/flavours/glitch/locales/fo.json @@ -1,201 +1 @@ -{ - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", - "onboarding.page_one.federation": "{domain} is an 'instance' of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", - "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}, and is compatible with any Mastodon instance or app. Glitchsoc is entirely free and open-source. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", - "settings.content_warnings": "Content Warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "User preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." -} +{} diff --git a/app/javascript/flavours/glitch/locales/fr-QC.json b/app/javascript/flavours/glitch/locales/fr-QC.json index b53b36e97..e67fcfebf 100644 --- a/app/javascript/flavours/glitch/locales/fr-QC.json +++ b/app/javascript/flavours/glitch/locales/fr-QC.json @@ -1,201 +1,8 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.add_account_note": "Ajouter une note pour @{name}", "account.follows": "Abonnements", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/fr.json b/app/javascript/flavours/glitch/locales/fr.json index b53b36e97..e67fcfebf 100644 --- a/app/javascript/flavours/glitch/locales/fr.json +++ b/app/javascript/flavours/glitch/locales/fr.json @@ -1,201 +1,8 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", + "account.add_account_note": "Ajouter une note pour @{name}", "account.follows": "Abonnements", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/fy.json b/app/javascript/flavours/glitch/locales/fy.json index eb99fc64d..0967ef424 100644 --- a/app/javascript/flavours/glitch/locales/fy.json +++ b/app/javascript/flavours/glitch/locales/fy.json @@ -1,201 +1 @@ -{ - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", - "onboarding.page_one.federation": "{domain} is an 'instance' of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", - "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}, and is compatible with any Mastodon instance or app. Glitchsoc is entirely free and open-source. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", - "settings.content_warnings": "Content Warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "User preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." -} +{} diff --git a/app/javascript/flavours/glitch/locales/ga.json b/app/javascript/flavours/glitch/locales/ga.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/ga.json +++ b/app/javascript/flavours/glitch/locales/ga.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/gd.json b/app/javascript/flavours/glitch/locales/gd.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/gd.json +++ b/app/javascript/flavours/glitch/locales/gd.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/gl.json b/app/javascript/flavours/glitch/locales/gl.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/gl.json +++ b/app/javascript/flavours/glitch/locales/gl.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/he.json b/app/javascript/flavours/glitch/locales/he.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/he.json +++ b/app/javascript/flavours/glitch/locales/he.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/hi.json b/app/javascript/flavours/glitch/locales/hi.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/hi.json +++ b/app/javascript/flavours/glitch/locales/hi.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/hr.json b/app/javascript/flavours/glitch/locales/hr.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/hr.json +++ b/app/javascript/flavours/glitch/locales/hr.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/hu.json b/app/javascript/flavours/glitch/locales/hu.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/hu.json +++ b/app/javascript/flavours/glitch/locales/hu.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/hy.json b/app/javascript/flavours/glitch/locales/hy.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/hy.json +++ b/app/javascript/flavours/glitch/locales/hy.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/id.json b/app/javascript/flavours/glitch/locales/id.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/id.json +++ b/app/javascript/flavours/glitch/locales/id.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/ig.json b/app/javascript/flavours/glitch/locales/ig.json index eb99fc64d..0967ef424 100644 --- a/app/javascript/flavours/glitch/locales/ig.json +++ b/app/javascript/flavours/glitch/locales/ig.json @@ -1,201 +1 @@ -{ - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", - "onboarding.page_one.federation": "{domain} is an 'instance' of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", - "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}, and is compatible with any Mastodon instance or app. Glitchsoc is entirely free and open-source. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", - "settings.content_warnings": "Content Warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "User preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." -} +{} diff --git a/app/javascript/flavours/glitch/locales/io.json b/app/javascript/flavours/glitch/locales/io.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/io.json +++ b/app/javascript/flavours/glitch/locales/io.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/is.json b/app/javascript/flavours/glitch/locales/is.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/is.json +++ b/app/javascript/flavours/glitch/locales/is.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/it.json b/app/javascript/flavours/glitch/locales/it.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/it.json +++ b/app/javascript/flavours/glitch/locales/it.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/ja.json b/app/javascript/flavours/glitch/locales/ja.json index e942e3646..3f75177e1 100644 --- a/app/javascript/flavours/glitch/locales/ja.json +++ b/app/javascript/flavours/glitch/locales/ja.json @@ -1,9 +1,7 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", "account.add_account_note": "@{name}のメモを追加", "account.disclaimer_full": "このユーザー情報は不正確な可能性があります。", "account.follows": "フォロー", - "account.joined": "Joined {date}", "account.suspended_disclaimer_full": "このユーザーはモデレータにより停止されました。", "account.view_full_profile": "正確な情報を見る", "account_note.cancel": "キャンセル", @@ -18,26 +16,16 @@ "advanced_options.threaded_mode.short": "スレッドモード", "advanced_options.threaded_mode.tooltip": "スレッドモードを有効にする", "boost_modal.missing_description": "このトゥートには少なくとも1つの画像に説明が付与されていません", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", "community.column_settings.allow_local_only": "ローカル限定投稿を表示する", "compose.attach": "添付...", "compose.attach.doodle": "お絵描きをする", "compose.attach.upload": "ファイルをアップロード", - "compose.content-type.html": "HTML", "compose.content-type.markdown": "マークダウン", "compose.content-type.plain": "プレーンテキスト", "compose_form.poll.multiple_choices": "複数回答を許可", "compose_form.poll.single_choice": "単一回答を許可", "compose_form.spoiler": "本文は警告の後ろに隠す", "confirmation_modal.do_not_ask_again": "もう1度尋ねない", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", "confirmations.missing_media_description.confirm": "このまま投稿", "confirmations.missing_media_description.edit": "メディアを編集", "confirmations.missing_media_description.message": "少なくとも1つの画像に視覚障害者のための画像説明が付与されていません。すべての画像に対して説明を付与することを望みます。", @@ -46,58 +34,32 @@ "confirmations.unfilter.edit_filter": "フィルターを編集", "confirmations.unfilter.filters": "適用されたフィルター", "content-type.change": "コンテンツ形式を変更", - "direct.group_by_conversations": "Group by conversation", "endorsed_accounts_editor.endorsed_accounts": "紹介しているユーザー", "favourite_modal.combo": "次からは {combo} を押せば、これをスキップできます。", "getting_started.onboarding": "解説を表示", "home.column_settings.advanced": "高度", "home.column_settings.filter_regex": "正規表現でフィルター", "home.column_settings.show_direct": "DMを表示", - "home.settings": "Column settings", "keyboard_shortcuts.bookmark": "ブックマーク", "keyboard_shortcuts.secondary_toot": "セカンダリートゥートの公開範囲でトゥートする", "keyboard_shortcuts.toggle_collapse": "折りたたむ/折りたたみを解除", "layout.auto": "自動", "layout.desktop": "デスクトップ", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", "layout.single": "モバイル", - "media_gallery.sensitive": "Sensitive", "moved_to_warning": "このアカウント{moved_to_link}に引っ越したため、新しいフォロワーを受け入れていません。", "navigation_bar.app_settings": "アプリ設定", "navigation_bar.featured_users": "紹介しているアカウント", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", "navigation_bar.misc": "その他", "notification.markForDeletion": "選択", "notification_purge.btn_all": "すべて\n選択", "notification_purge.btn_apply": "選択したものを\n削除", "notification_purge.btn_invert": "選択を\n反転", "notification_purge.btn_none": "選択\n解除", - "notification_purge.start": "Enter notification cleaning mode", "notifications.marked_clear": "選択した通知を削除する", "notifications.marked_clear_confirmation": "削除した全ての通知を完全に削除してもよろしいですか?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain}はMastodonのインスタンスです。Mastodonとは、独立したサーバが連携して作るソーシャルネットワークです。これらのサーバーをインスタンスと呼びます。", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", "onboarding.page_one.welcome": "{domain}へようこそ!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain}はGlitchsocを使用しています。Glitchsocは{Mastodon}のフレンドリーな{fork}で、どんなMastodonアプリやインスタンスとも互換性があります。Glitchsocは完全に無料で、オープンソースです。{github}でバグ報告や機能要望あるいは貢獻をすることが可能です。", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", "settings.always_show_spoilers_field": "常にコンテンツワーニング設定を表示する(指定がない場合は通常投稿)", "settings.auto_collapse": "自動折りたたみ", "settings.auto_collapse_all": "すべて", @@ -115,14 +77,7 @@ "settings.content_warnings": "コンテンツワーニング", "settings.content_warnings.regexp": "正規表現", "settings.content_warnings_filter": "説明に指定した文字が含まれているものを自動で展開しないようにする", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", "settings.enable_collapsed": "トゥート折りたたみを有効にする", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", "settings.enable_content_warnings_auto_unfold": "コンテンツワーニング指定されている投稿を常に表示する", "settings.filters": "フィルター", "settings.general": "一般", @@ -130,7 +85,6 @@ "settings.hicolor_privacy_icons.hint": "公開範囲アイコンを明るく表示し見分けやすい色にします", "settings.image_backgrounds": "画像背景", "settings.image_backgrounds_media": "折りたまれたメディア付きトゥートをプレビュー", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", "settings.image_backgrounds_users": "折りたまれたトゥートの背景を変更する", "settings.inline_preview_cards": "外部リンクに埋め込みプレビューを有効にする", "settings.layout": "レイアウト", @@ -138,12 +92,9 @@ "settings.media": "メディア", "settings.media_fullwidth": "全幅メディアプレビュー", "settings.media_letterbox": "メディアをレターボックス式で表示", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", "settings.media_reveal_behind_cw": "既定で警告指定されているトゥートの閲覧注意メディアを表示する", "settings.notifications.favicon_badge": "通知アイコンに未読件数を表示する", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", "settings.notifications.tab_badge": "未読の通知があるとき、通知アイコンにマークを表示する", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", "settings.notifications_opts": "通知の設定", "settings.pop_in_left": "左", "settings.pop_in_player": "ポップインプレイヤーを有効化する", @@ -152,12 +103,10 @@ "settings.preferences": "ユーザー設定", "settings.prepend_cw_re": "返信するとき警告に \"re: \"を付加する", "settings.preselect_on_reply": "返信するときユーザー名を事前選択する", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", "settings.rewrite_mentions": "表示されたトゥートの返信先表示を書き換える", "settings.rewrite_mentions_acct": "ユーザー名とドメイン名(アカウントがリモートの場合)を表示するように書き換える", "settings.rewrite_mentions_no": "書き換えない", "settings.rewrite_mentions_username": "ユーザー名を表示するように書き換える", - "settings.shared_settings_link": "user preferences", "settings.show_action_bar": "アクションバーを表示", "settings.show_content_type_choice": "トゥートを書くときコンテンツ形式の選択ボタンを表示する", "settings.show_reply_counter": "投稿に対するリプライの数を表示する", @@ -167,35 +116,10 @@ "settings.side_arm_reply_mode.copy": "返信先の投稿範囲を利用する", "settings.side_arm_reply_mode.keep": "セカンダリートゥートボタンの設定を維持する", "settings.side_arm_reply_mode.restrict": "返信先の投稿範囲に制限する", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", "settings.swipe_to_change_columns": "スワイプでカラムを切り替え可能にする(モバイルのみ)", "settings.tag_misleading_links": "誤解を招くリンクにタグをつける", "settings.tag_misleading_links.hint": "明示的に言及していないすべてのリンクに、リンクターゲットホストを含む視覚的な表示を追加します", "settings.wide_view": "ワイドビュー(デスクトップ レイアウトのみ)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", "status.collapse": "折りたたむ", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "折りたたみを解除", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "status.uncollapse": "折りたたみを解除" } diff --git a/app/javascript/flavours/glitch/locales/ka.json b/app/javascript/flavours/glitch/locales/ka.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/ka.json +++ b/app/javascript/flavours/glitch/locales/ka.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/kab.json b/app/javascript/flavours/glitch/locales/kab.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/kab.json +++ b/app/javascript/flavours/glitch/locales/kab.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/kk.json b/app/javascript/flavours/glitch/locales/kk.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/kk.json +++ b/app/javascript/flavours/glitch/locales/kk.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/kn.json b/app/javascript/flavours/glitch/locales/kn.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/kn.json +++ b/app/javascript/flavours/glitch/locales/kn.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/ko.json b/app/javascript/flavours/glitch/locales/ko.json index ef560c1e1..c22dfb072 100644 --- a/app/javascript/flavours/glitch/locales/ko.json +++ b/app/javascript/flavours/glitch/locales/ko.json @@ -1,9 +1,7 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", "account.add_account_note": "@{name} 님에 대한 메모 추가", "account.disclaimer_full": "아래에 있는 정보들은 사용자의 프로필을 완벽하게 나타내지 못하고 있을 수도 있습니다.", "account.follows": "팔로우", - "account.joined": "Joined {date}", "account.suspended_disclaimer_full": "이 사용자는 중재자에 의해 정지되었습니다.", "account.view_full_profile": "전체 프로필 보기", "account_note.cancel": "취소", @@ -29,15 +27,12 @@ "compose.attach": "첨부…", "compose.attach.doodle": "뭔가 그려보세요", "compose.attach.upload": "파일 업로드", - "compose.content-type.html": "HTML", "compose.content-type.markdown": "마크다운", "compose.content-type.plain": "일반 텍스트", "compose_form.poll.multiple_choices": "여러 개 선택 가능", "compose_form.poll.single_choice": "하나만 선택 가능", "compose_form.spoiler": "경고 메시지로 숨기기", "confirmation_modal.do_not_ask_again": "다음부터 확인창을 띄우지 않기", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", "confirmations.missing_media_description.confirm": "그냥 보내기", "confirmations.missing_media_description.edit": "미디어 편집", "confirmations.missing_media_description.message": "하나 이상의 미디어에 대해 설명을 작성하지 않았습니다. 시각장애인을 위해 모든 미디어에 설명을 추가하는 것을 고려해주세요.", @@ -46,7 +41,6 @@ "confirmations.unfilter.edit_filter": "필터 편집", "confirmations.unfilter.filters": "적용된 {count, plural, one {필터} other {필터들}}", "content-type.change": "콘텐트 타입", - "direct.group_by_conversations": "Group by conversation", "endorsed_accounts_editor.endorsed_accounts": "추천하는 계정들", "favourite_modal.combo": "다음엔 {combo}를 눌러 건너뛸 수 있습니다", "getting_started.onboarding": "둘러보기", @@ -67,8 +61,6 @@ "moved_to_warning": "이 계정은 {moved_to_link}로 이동한 것으로 표시되었고, 새 팔로우를 받지 않는 것 같습니다.", "navigation_bar.app_settings": "앱 설정", "navigation_bar.featured_users": "추천된 계정들", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", "navigation_bar.misc": "다양한 옵션들", "notification.markForDeletion": "삭제하기 위해 표시", "notification_purge.btn_all": "전체선택", @@ -115,14 +107,8 @@ "settings.content_warnings": "열람주의", "settings.content_warnings.regexp": "정규표현식", "settings.content_warnings_filter": "자동으로 펼치지 않을 열람주의 문구:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", "settings.deprecated_setting": "이 설정은 마스토돈의 {settings_page_link}에서 관리됩니다", "settings.enable_collapsed": "접힌 글 활성화", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", "settings.enable_content_warnings_auto_unfold": "자동으로 열람주의 펼치기", "settings.filters": "필터", "settings.general": "일반", @@ -130,7 +116,6 @@ "settings.hicolor_privacy_icons.hint": "공개설정 아이콘들을 밝고 구분하기 쉬운 색으로 표시합니다", "settings.image_backgrounds": "이미지 배경", "settings.image_backgrounds_media": "접힌 글의 미디어 미리보기", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", "settings.image_backgrounds_users": "접힌 글에 이미지 배경 주기", "settings.inline_preview_cards": "외부 링크에 대한 미리보기 카드를 같이 표시", "settings.layout": "레이아웃:", diff --git a/app/javascript/flavours/glitch/locales/ku.json b/app/javascript/flavours/glitch/locales/ku.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/ku.json +++ b/app/javascript/flavours/glitch/locales/ku.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/kw.json b/app/javascript/flavours/glitch/locales/kw.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/kw.json +++ b/app/javascript/flavours/glitch/locales/kw.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/la.json b/app/javascript/flavours/glitch/locales/la.json index eb99fc64d..0967ef424 100644 --- a/app/javascript/flavours/glitch/locales/la.json +++ b/app/javascript/flavours/glitch/locales/la.json @@ -1,201 +1 @@ -{ - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", - "onboarding.page_one.federation": "{domain} is an 'instance' of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", - "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}, and is compatible with any Mastodon instance or app. Glitchsoc is entirely free and open-source. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", - "settings.content_warnings": "Content Warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "User preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." -} +{} diff --git a/app/javascript/flavours/glitch/locales/lt.json b/app/javascript/flavours/glitch/locales/lt.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/lt.json +++ b/app/javascript/flavours/glitch/locales/lt.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/lv.json b/app/javascript/flavours/glitch/locales/lv.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/lv.json +++ b/app/javascript/flavours/glitch/locales/lv.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/mk.json b/app/javascript/flavours/glitch/locales/mk.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/mk.json +++ b/app/javascript/flavours/glitch/locales/mk.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/ml.json b/app/javascript/flavours/glitch/locales/ml.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/ml.json +++ b/app/javascript/flavours/glitch/locales/ml.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/mr.json b/app/javascript/flavours/glitch/locales/mr.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/mr.json +++ b/app/javascript/flavours/glitch/locales/mr.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/ms.json b/app/javascript/flavours/glitch/locales/ms.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/ms.json +++ b/app/javascript/flavours/glitch/locales/ms.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/my.json b/app/javascript/flavours/glitch/locales/my.json index eb99fc64d..0967ef424 100644 --- a/app/javascript/flavours/glitch/locales/my.json +++ b/app/javascript/flavours/glitch/locales/my.json @@ -1,201 +1 @@ -{ - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", - "onboarding.page_one.federation": "{domain} is an 'instance' of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", - "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}, and is compatible with any Mastodon instance or app. Glitchsoc is entirely free and open-source. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", - "settings.content_warnings": "Content Warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "User preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." -} +{} diff --git a/app/javascript/flavours/glitch/locales/nl.json b/app/javascript/flavours/glitch/locales/nl.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/nl.json +++ b/app/javascript/flavours/glitch/locales/nl.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/nn.json b/app/javascript/flavours/glitch/locales/nn.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/nn.json +++ b/app/javascript/flavours/glitch/locales/nn.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/no.json b/app/javascript/flavours/glitch/locales/no.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/no.json +++ b/app/javascript/flavours/glitch/locales/no.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/oc.json b/app/javascript/flavours/glitch/locales/oc.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/oc.json +++ b/app/javascript/flavours/glitch/locales/oc.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/pa.json b/app/javascript/flavours/glitch/locales/pa.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/pa.json +++ b/app/javascript/flavours/glitch/locales/pa.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/pl.json b/app/javascript/flavours/glitch/locales/pl.json index 1851555c0..09acd098e 100644 --- a/app/javascript/flavours/glitch/locales/pl.json +++ b/app/javascript/flavours/glitch/locales/pl.json @@ -1,15 +1,4 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", "advanced_options.icon_title": "Ustawienia zaawansowane", "advanced_options.local-only.long": "Nie wysyłaj na inne instancje", "advanced_options.local-only.short": "Tylko lokalnie", @@ -17,59 +6,17 @@ "advanced_options.threaded_mode.long": "Przechodzi do tworzenia odpowiedzi po publikacji wpisu", "advanced_options.threaded_mode.short": "Tryb wątków", "advanced_options.threaded_mode.tooltip": "Włączono tryb wątków", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", "compose.attach": "Załącz coś", "compose.attach.doodle": "Narysuj coś", "compose.attach.upload": "Wyślij plik", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", "compose_form.spoiler": "Ukryj tekst za ostrzeżeniem", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", "favourite_modal.combo": "Możesz nacisnąć {combo}, aby pominąć to następnym razem", "getting_started.onboarding": "Rozejrzyj się", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", "home.column_settings.show_direct": "Pokaż wiadomości bezpośrednie", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", "layout.auto": "Automatyczny", "layout.desktop": "Desktopowy", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", "media_gallery.sensitive": "Zawartość wrażliwa", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", "navigation_bar.app_settings": "Ustawienia aplikacji", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", "notification.markForDeletion": "Oznacz do usunięcia", "notification_purge.btn_all": "Zaznacz\nwszystkie", "notification_purge.btn_apply": "Usuń\nzaznaczone", @@ -78,27 +25,9 @@ "notification_purge.start": "Przejdź do trybu usuwania powiadomień", "notifications.marked_clear": "Usuń zaznaczone powiadomienia", "notifications.marked_clear_confirmation": "Czy na pewno chcesz bezpowrtonie usunąć wszystkie powiadomienia?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} jest 'instancją' Mastodona. Mastodon to sieć działających niezależnie serwerów tworzących jedną sieć społecznościową. Te serwery nazywane są instancjami.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", "onboarding.page_one.welcome": "Witamy na {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} jest oparty na Glitchsoc. Glitchsoc jest {forkiem} {Mastodon}a kompatybilnym z każdym klientem i aplikacją Mastodona. Glitchsoc jest całkowicie wolnym i otwartoźródłowym oprogramowaniem. Możesz zgłaszać błędy i sugestie funkcji oraz współtworzyć projekt na {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", "settings.auto_collapse": "Automatyczne zwijanie", "settings.auto_collapse_all": "Wszystko", "settings.auto_collapse_lengthy": "Długie wpisy", @@ -108,94 +37,19 @@ "settings.auto_collapse_replies": "Odpowiedzi", "settings.close": "Zamknij", "settings.collapsed_statuses": "Zwijanie wpisów", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", "settings.enable_collapsed": "Włącz zwijanie wpisów", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", "settings.general": "Ogólne", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", "settings.image_backgrounds": "Obrazy w tle", "settings.image_backgrounds_media": "Wyświetlaj zawartość multimedialną zwiniętych wpisów", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", "settings.image_backgrounds_users": "Nadaj tło zwiniętym wpisom", - "settings.inline_preview_cards": "Inline preview cards for external links", "settings.layout": "Układ", - "settings.layout_opts": "Layout options", "settings.media": "Zawartość multimedialna", "settings.media_fullwidth": "Podgląd zawartości multimedialnej o pełnej szerokości", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", "settings.preferences": "Preferencje użytkownika", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", "settings.side_arm": "Drugi przycisk wysyłania", "settings.side_arm.none": "Żaden", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", "settings.wide_view": "Szeroki widok (tylko w trybie desktopowym)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", "status.collapse": "Zwiń", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Rozwiń", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "status.uncollapse": "Rozwiń" } diff --git a/app/javascript/flavours/glitch/locales/pt-BR.json b/app/javascript/flavours/glitch/locales/pt-BR.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/pt-BR.json +++ b/app/javascript/flavours/glitch/locales/pt-BR.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/pt-PT.json b/app/javascript/flavours/glitch/locales/pt-PT.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/pt-PT.json +++ b/app/javascript/flavours/glitch/locales/pt-PT.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/ro.json b/app/javascript/flavours/glitch/locales/ro.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/ro.json +++ b/app/javascript/flavours/glitch/locales/ro.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/ru.json b/app/javascript/flavours/glitch/locales/ru.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/ru.json +++ b/app/javascript/flavours/glitch/locales/ru.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/sa.json b/app/javascript/flavours/glitch/locales/sa.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/sa.json +++ b/app/javascript/flavours/glitch/locales/sa.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/sc.json b/app/javascript/flavours/glitch/locales/sc.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/sc.json +++ b/app/javascript/flavours/glitch/locales/sc.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/sco.json b/app/javascript/flavours/glitch/locales/sco.json index eb99fc64d..0967ef424 100644 --- a/app/javascript/flavours/glitch/locales/sco.json +++ b/app/javascript/flavours/glitch/locales/sco.json @@ -1,201 +1 @@ -{ - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", - "onboarding.page_one.federation": "{domain} is an 'instance' of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", - "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}, and is compatible with any Mastodon instance or app. Glitchsoc is entirely free and open-source. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", - "settings.content_warnings": "Content Warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "User preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." -} +{} diff --git a/app/javascript/flavours/glitch/locales/si.json b/app/javascript/flavours/glitch/locales/si.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/si.json +++ b/app/javascript/flavours/glitch/locales/si.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/sk.json b/app/javascript/flavours/glitch/locales/sk.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/sk.json +++ b/app/javascript/flavours/glitch/locales/sk.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/sl.json b/app/javascript/flavours/glitch/locales/sl.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/sl.json +++ b/app/javascript/flavours/glitch/locales/sl.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/sq.json b/app/javascript/flavours/glitch/locales/sq.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/sq.json +++ b/app/javascript/flavours/glitch/locales/sq.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/sr-Latn.json b/app/javascript/flavours/glitch/locales/sr-Latn.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/sr-Latn.json +++ b/app/javascript/flavours/glitch/locales/sr-Latn.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/sr.json b/app/javascript/flavours/glitch/locales/sr.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/sr.json +++ b/app/javascript/flavours/glitch/locales/sr.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/sv.json b/app/javascript/flavours/glitch/locales/sv.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/sv.json +++ b/app/javascript/flavours/glitch/locales/sv.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/ta.json b/app/javascript/flavours/glitch/locales/ta.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/ta.json +++ b/app/javascript/flavours/glitch/locales/ta.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/te.json b/app/javascript/flavours/glitch/locales/te.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/te.json +++ b/app/javascript/flavours/glitch/locales/te.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/th.json b/app/javascript/flavours/glitch/locales/th.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/th.json +++ b/app/javascript/flavours/glitch/locales/th.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/tr.json b/app/javascript/flavours/glitch/locales/tr.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/tr.json +++ b/app/javascript/flavours/glitch/locales/tr.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/tt.json b/app/javascript/flavours/glitch/locales/tt.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/tt.json +++ b/app/javascript/flavours/glitch/locales/tt.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/ug.json b/app/javascript/flavours/glitch/locales/ug.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/ug.json +++ b/app/javascript/flavours/glitch/locales/ug.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/uk.json b/app/javascript/flavours/glitch/locales/uk.json index faf9a17ac..b21584659 100644 --- a/app/javascript/flavours/glitch/locales/uk.json +++ b/app/javascript/flavours/glitch/locales/uk.json @@ -1,104 +1,27 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", "advanced_options.local-only.long": "Не дмухати це на інші сервери", "advanced_options.local-only.short": "Лише локальне", "advanced_options.local-only.tooltip": "Цей дмух лише локальний", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", "compose.attach": "Вкласти...", "compose.attach.doodle": "Помалювати", "compose.attach.upload": "Завантажити сюди файл", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", "favourite_modal.combo": "Ви можете натиснути {combo}, щоб пропустити це наступного разу", "getting_started.onboarding": "Шо тут", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", "home.column_settings.show_direct": "Показати прямі повідомлення", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", "layout.auto": "Автоматичний", "layout.desktop": "Настільний", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", "media_gallery.sensitive": "Чутливі", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", "navigation_bar.app_settings": "Налаштування програми", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", "notification.markForDeletion": "Позначити для видалення", "notification_purge.btn_all": "Вибрати\nвсе", "notification_purge.btn_apply": "Очистити\nвибір", "notification_purge.btn_invert": "Інвертувати\nвибір", "notification_purge.btn_none": "Вибрати\nнічого", - "notification_purge.start": "Enter notification cleaning mode", "notifications.marked_clear": "Очистити вибрані сповіщення", "notifications.marked_clear_confirmation": "Ви впевнені, що хочете незворотньо очистити всі вибрані сповіщення?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} є сервером of Mastodon. Mastodon — мережа незалежних серверів, які працюють разом великою соціяльною мережою. Сервери Mastodon також називають „інстансами“.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", "onboarding.page_one.welcome": "Ласкаво просимо до {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} використовує Glitchsoc. Glitchsoc — дружній {fork} {Mastodon}, сумісний з будь-яким сервером Mastodon або програмою для нього. Glitchsoc повністю вільний та відкритий. Повідомляти про баги, просити фічі, або працювати з кодом можна на {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", "settings.auto_collapse": "Автоматичне згортання", "settings.auto_collapse_all": "Все", "settings.auto_collapse_lengthy": "Довгі дмухи", @@ -108,94 +31,18 @@ "settings.auto_collapse_replies": "Відповіді", "settings.close": "Закрити", "settings.collapsed_statuses": "Згорнуті дмухи", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", "settings.enable_collapsed": "Увімкути згорнутання дмухів", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", "settings.general": "Основне", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", "settings.image_backgrounds": "Картинки на тлі", "settings.image_backgrounds_media": "Підглядати медіа зі схованих дмухів", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", "settings.image_backgrounds_users": "Давати схованим дмухам тло-картинку", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", "settings.media": "Медіа", "settings.media_fullwidth": "Показувати медіа повною шириною", "settings.media_letterbox": "Обрізати медіа", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", "settings.preferences": "Користувацькі налаштування", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", "settings.show_action_bar": "Показувати кнопки у згорнутих дмухах", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", "settings.wide_view": "Широкий вид (тільки в режимі для комп'ютерів)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", "status.collapse": "Згорнути", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Розгорнути", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "status.uncollapse": "Розгорнути" } diff --git a/app/javascript/flavours/glitch/locales/ur.json b/app/javascript/flavours/glitch/locales/ur.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/ur.json +++ b/app/javascript/flavours/glitch/locales/ur.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/vi.json b/app/javascript/flavours/glitch/locales/vi.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/vi.json +++ b/app/javascript/flavours/glitch/locales/vi.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/zh-CN.json b/app/javascript/flavours/glitch/locales/zh-CN.json index fe03213ae..0a28f4ab4 100644 --- a/app/javascript/flavours/glitch/locales/zh-CN.json +++ b/app/javascript/flavours/glitch/locales/zh-CN.json @@ -1,9 +1,7 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", "account.add_account_note": "为 @{name} 添加备注", "account.disclaimer_full": "以下信息可能无法完整代表你的个人资料。", "account.follows": "正在关注", - "account.joined": "Joined {date}", "account.suspended_disclaimer_full": "该用户已被封禁。", "account.view_full_profile": "查看完整资料", "account_note.cancel": "取消", @@ -29,15 +27,11 @@ "compose.attach": "附上...", "compose.attach.doodle": "画点什么", "compose.attach.upload": "上传文件", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", "compose.content-type.plain": "纯文本", "compose_form.poll.multiple_choices": "允许多选", "compose_form.poll.single_choice": "允许单选", "compose_form.spoiler": "隐藏为内容警告", "confirmation_modal.do_not_ask_again": "下次不显示确认窗口", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", "confirmations.missing_media_description.confirm": "确认", "confirmations.missing_media_description.edit": "编辑", "confirmations.missing_media_description.message": "你没有为一种或多种媒体撰写描述。请考虑为视障人士添加描述。", @@ -46,7 +40,6 @@ "confirmations.unfilter.edit_filter": "编辑过滤器", "confirmations.unfilter.filters": "应用 {count, plural, one {过滤器} other {过滤器}}", "content-type.change": "内容类型 ", - "direct.group_by_conversations": "Group by conversation", "endorsed_accounts_editor.endorsed_accounts": "推荐用户", "favourite_modal.combo": "下次你可以按 {combo} 跳过这个", "getting_started.onboarding": "参观一下", @@ -67,8 +60,6 @@ "moved_to_warning": "此帐户已被标记为移至 {moved_to_link},并且似乎没有收到新关注者。", "navigation_bar.app_settings": "应用选项", "navigation_bar.featured_users": "推荐用户", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", "navigation_bar.misc": "杂项", "notification.markForDeletion": "标记以删除", "notification_purge.btn_all": "全选", @@ -115,14 +106,7 @@ "settings.content_warnings": "内容警告", "settings.content_warnings.regexp": "正则表达式", "settings.content_warnings_filter": "不会自动展开的内容警告:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", "settings.enable_collapsed": "启用折叠嘟文", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", "settings.enable_content_warnings_auto_unfold": "自动展开内容警告", "settings.filters": "过滤器", "settings.general": "一般", @@ -130,7 +114,6 @@ "settings.hicolor_privacy_icons.hint": "以明亮且易于区分的颜色显示隐私图标", "settings.image_backgrounds": "图片背景", "settings.image_backgrounds_media": "预览折叠嘟文的媒体文件", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", "settings.image_backgrounds_users": "为折叠嘟文附加图片背景", "settings.inline_preview_cards": "外部链接的内嵌预览卡片", "settings.layout": "布局:", @@ -157,7 +140,6 @@ "settings.rewrite_mentions_acct": "重写为用户名和域名(当帐户为远程时)", "settings.rewrite_mentions_no": "不要重写", "settings.rewrite_mentions_username": "重写为用户名", - "settings.shared_settings_link": "user preferences", "settings.show_action_bar": "在折叠的嘟文中显示操作按钮", "settings.show_content_type_choice": "允许你在撰写嘟文时选择格式类型", "settings.show_reply_counter": "显示回复的大致数量", @@ -167,12 +149,6 @@ "settings.side_arm_reply_mode.copy": "复制被回复嘟文的隐私设置", "settings.side_arm_reply_mode.keep": "保留辅助发嘟按钮以设置隐私", "settings.side_arm_reply_mode.restrict": "将隐私设置限制为正在回复的那条嘟文", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", "settings.swipe_to_change_columns": "允许滑动以在列之间切换(仅限移动模式)", "settings.tag_misleading_links": "标记误导性链接", "settings.tag_misleading_links.hint": "将带有目标网页链接的视觉指示添加到每个未明确的链接", diff --git a/app/javascript/flavours/glitch/locales/zh-HK.json b/app/javascript/flavours/glitch/locales/zh-HK.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/zh-HK.json +++ b/app/javascript/flavours/glitch/locales/zh-HK.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/zh-TW.json b/app/javascript/flavours/glitch/locales/zh-TW.json index 807ed8207..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/zh-TW.json +++ b/app/javascript/flavours/glitch/locales/zh-TW.json @@ -1,201 +1,6 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", - "account.add_account_note": "Add note for @{name}", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", - "account.follows": "Follows", - "account.joined": "Joined {date}", - "account.suspended_disclaimer_full": "This user has been suspended by a moderator.", - "account.view_full_profile": "View full profile", - "account_note.cancel": "Cancel", - "account_note.edit": "Edit", - "account_note.glitch_placeholder": "No comment provided", - "account_note.save": "Save", - "advanced_options.icon_title": "Advanced options", - "advanced_options.local-only.long": "Do not post to other instances", - "advanced_options.local-only.short": "Local-only", - "advanced_options.local-only.tooltip": "This post is local-only", - "advanced_options.threaded_mode.long": "Automatically opens a reply on posting", - "advanced_options.threaded_mode.short": "Threaded mode", - "advanced_options.threaded_mode.tooltip": "Threaded mode enabled", - "boost_modal.missing_description": "This toot contains some media without description", - "column.favourited_by": "Favourited by", - "column.heading": "Misc", - "column.reblogged_by": "Boosted by", - "column.subheading": "Miscellaneous options", - "column_header.profile": "Profile", - "column_subheading.lists": "Lists", - "column_subheading.navigation": "Navigation", - "community.column_settings.allow_local_only": "Show local-only toots", - "compose.attach": "Attach...", - "compose.attach.doodle": "Draw something", - "compose.attach.upload": "Upload a file", - "compose.content-type.html": "HTML", - "compose.content-type.markdown": "Markdown", - "compose.content-type.plain": "Plain text", - "compose_form.poll.multiple_choices": "Allow multiple choices", - "compose_form.poll.single_choice": "Allow one choice", - "compose_form.spoiler": "Hide text behind warning", - "confirmation_modal.do_not_ask_again": "Do not ask for confirmation again", - "confirmations.deprecated_settings.confirm": "Use Mastodon preferences", - "confirmations.deprecated_settings.message": "Some of the glitch-soc device-specific {app_settings} you are using have been replaced by Mastodon {preferences} and will be overriden:", - "confirmations.missing_media_description.confirm": "Send anyway", - "confirmations.missing_media_description.edit": "Edit media", - "confirmations.missing_media_description.message": "At least one media attachment is lacking a description. Consider describing all media attachments for the visually impaired before sending your toot.", - "confirmations.unfilter.author": "Author", - "confirmations.unfilter.confirm": "Show", - "confirmations.unfilter.edit_filter": "Edit filter", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", - "content-type.change": "Content type", - "direct.group_by_conversations": "Group by conversation", - "endorsed_accounts_editor.endorsed_accounts": "Featured accounts", - "favourite_modal.combo": "You can press {combo} to skip this next time", - "getting_started.onboarding": "Show me around", - "home.column_settings.advanced": "Advanced", - "home.column_settings.filter_regex": "Filter out by regular expressions", - "home.column_settings.show_direct": "Show DMs", - "home.settings": "Column settings", - "keyboard_shortcuts.bookmark": "to bookmark", - "keyboard_shortcuts.secondary_toot": "to send toot using secondary privacy setting", - "keyboard_shortcuts.toggle_collapse": "to collapse/uncollapse toots", - "layout.auto": "Auto", - "layout.desktop": "Desktop", - "layout.hint.auto": "Automatically chose layout based on “Enable advanced web interface” setting and screen size.", - "layout.hint.desktop": "Use multiple-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.hint.single": "Use single-column layout regardless of the “Enable advanced web interface” setting or screen size.", - "layout.single": "Mobile", - "media_gallery.sensitive": "Sensitive", - "moved_to_warning": "This account is marked as moved to {moved_to_link}, and may thus not accept new follows.", - "navigation_bar.app_settings": "App settings", - "navigation_bar.featured_users": "Featured users", - "navigation_bar.info": "Extended information", - "navigation_bar.keyboard_shortcuts": "Keyboard shortcuts", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", - "notification_purge.btn_all": "Select\nall", - "notification_purge.btn_apply": "Clear\nselected", - "notification_purge.btn_invert": "Invert\nselection", - "notification_purge.btn_none": "Select\nnone", - "notification_purge.start": "Enter notification cleaning mode", - "notifications.marked_clear": "Clear selected notifications", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", - "onboarding.next": "Next", - "onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.", - "onboarding.page_four.home": "The home timeline shows posts from people you follow.", - "onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", - "onboarding.page_six.admin": "Your instance's admin is {admin}.", - "onboarding.page_six.almost_done": "Almost done...", - "onboarding.page_six.appetoot": "Bon Appetoot!", - "onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "onboarding.page_six.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", - "onboarding.page_six.various_app": "mobile apps", - "onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.", - "onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.", - "onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.", - "onboarding.skip": "Skip", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_lengthy": "Lengthy toots", - "settings.auto_collapse_media": "Toots with media", - "settings.auto_collapse_notifications": "Notifications", - "settings.auto_collapse_reblogs": "Boosts", - "settings.auto_collapse_replies": "Replies", - "settings.close": "Close", - "settings.collapsed_statuses": "Collapsed toots", - "settings.compose_box_opts": "Compose box", - "settings.confirm_before_clearing_draft": "Show confirmation dialog before overwriting the message being composed", - "settings.confirm_boost_missing_media_description": "Show confirmation dialog before boosting toots lacking media descriptions", - "settings.confirm_missing_media_description": "Show confirmation dialog before sending toots lacking media descriptions", "settings.content_warnings": "Content warnings", - "settings.content_warnings.regexp": "Regular expression", - "settings.content_warnings_filter": "Content warnings to not automatically unfold:", - "settings.content_warnings_media_outside": "Display media attachments outside content warnings", - "settings.content_warnings_media_outside_hint": "Reproduce upstream Mastodon behavior by having the Content Warning toggle not affect media attachments", - "settings.content_warnings_shared_state": "Show/hide content of all copies at once", - "settings.content_warnings_shared_state_hint": "Reproduce upstream Mastodon behavior by having the Content Warning button affect all copies of a post at once. This will prevent automatic collapsing of any copy of a toot with unfolded CW", - "settings.content_warnings_unfold_opts": "Auto-unfolding options", - "settings.deprecated_setting": "This setting is now controlled from Mastodon's {settings_page_link}", - "settings.enable_collapsed": "Enable collapsed toots", - "settings.enable_collapsed_hint": "Collapsed posts have parts of their contents hidden to take up less screen space. This is distinct from the Content Warning feature", - "settings.enable_content_warnings_auto_unfold": "Automatically unfold content-warnings", - "settings.filters": "Filters", - "settings.general": "General", - "settings.hicolor_privacy_icons": "High color privacy icons", - "settings.hicolor_privacy_icons.hint": "Display privacy icons in bright and easily distinguishable colors", - "settings.image_backgrounds": "Image backgrounds", - "settings.image_backgrounds_media": "Preview collapsed toot media", - "settings.image_backgrounds_media_hint": "If the post has any media attachment, use the first one as a background", - "settings.image_backgrounds_users": "Give collapsed toots an image background", - "settings.inline_preview_cards": "Inline preview cards for external links", - "settings.layout": "Layout:", - "settings.layout_opts": "Layout options", - "settings.media": "Media", - "settings.media_fullwidth": "Full-width media previews", - "settings.media_letterbox": "Letterbox media", - "settings.media_letterbox_hint": "Scale down and letterbox media to fill the image containers instead of stretching and cropping them", - "settings.media_reveal_behind_cw": "Reveal sensitive media behind a CW by default", - "settings.notifications.favicon_badge": "Unread notifications favicon badge", - "settings.notifications.favicon_badge.hint": "Add a badge for unread notifications to the favicon", - "settings.notifications.tab_badge": "Unread notifications badge", - "settings.notifications.tab_badge.hint": "Display a badge for unread notifications in the column icons when the notifications column isn't open", - "settings.notifications_opts": "Notifications options", - "settings.pop_in_left": "Left", - "settings.pop_in_player": "Enable pop-in player", - "settings.pop_in_position": "Pop-in player position:", - "settings.pop_in_right": "Right", - "settings.preferences": "Preferences", - "settings.prepend_cw_re": "Prepend “re: ” to content warnings when replying", - "settings.preselect_on_reply": "Pre-select usernames on reply", - "settings.preselect_on_reply_hint": "When replying to a conversation with multiple participants, pre-select usernames past the first", - "settings.rewrite_mentions": "Rewrite mentions in displayed statuses", - "settings.rewrite_mentions_acct": "Rewrite with username and domain (when the account is remote)", - "settings.rewrite_mentions_no": "Do not rewrite mentions", - "settings.rewrite_mentions_username": "Rewrite with username", - "settings.shared_settings_link": "user preferences", - "settings.show_action_bar": "Show action buttons in collapsed toots", - "settings.show_content_type_choice": "Show content-type choice when authoring toots", - "settings.show_reply_counter": "Display an estimate of the reply count", - "settings.side_arm": "Secondary toot button:", - "settings.side_arm.none": "None", - "settings.side_arm_reply_mode": "When replying to a toot, the secondary toot button should:", - "settings.side_arm_reply_mode.copy": "Copy privacy setting of the toot being replied to", - "settings.side_arm_reply_mode.keep": "Keep its set privacy", - "settings.side_arm_reply_mode.restrict": "Restrict privacy setting to that of the toot being replied to", - "settings.status_icons": "Toot icons", - "settings.status_icons_language": "Language indicator", - "settings.status_icons_local_only": "Local-only indicator", - "settings.status_icons_media": "Media and poll indicators", - "settings.status_icons_reply": "Reply indicator", - "settings.status_icons_visibility": "Toot privacy indicator", - "settings.swipe_to_change_columns": "Allow swiping to change columns (Mobile only)", - "settings.tag_misleading_links": "Tag misleading links", - "settings.tag_misleading_links.hint": "Add a visual indication with the link target host to every link not mentioning it explicitly", - "settings.wide_view": "Wide view (Desktop mode only)", - "settings.wide_view_hint": "Stretches columns to better fill the available space.", - "status.collapse": "Collapse", - "status.has_audio": "Features attached audio files", - "status.has_pictures": "Features attached pictures", - "status.has_preview_card": "Features an attached preview card", - "status.has_video": "Features attached videos", - "status.in_reply_to": "This toot is a reply", - "status.is_poll": "This toot is a poll", - "status.local_only": "Only visible from your instance", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", - "web_app_crash.change_your_settings": "Change your {settings}", - "web_app_crash.content": "You could try any of the following:", - "web_app_crash.debug_info": "Debug information", - "web_app_crash.disable_addons": "Disable browser add-ons or built-in translation tools", - "web_app_crash.issue_tracker": "issue tracker", - "web_app_crash.reload": "Reload", - "web_app_crash.reload_page": "{reload} the current page", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "settings", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "settings.preferences": "Preferences" } diff --git a/config/locales-glitch/af.yml b/config/locales-glitch/af.yml index 7eb443c97..252f9fd5a 100644 --- a/config/locales-glitch/af.yml +++ b/config/locales-glitch/af.yml @@ -1,38 +1 @@ ---- af: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/an.yml b/config/locales-glitch/an.yml index 7769a7b83..76cc0689b 100644 --- a/config/locales-glitch/an.yml +++ b/config/locales-glitch/an.yml @@ -1,38 +1 @@ ---- an: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/ar.yml b/config/locales-glitch/ar.yml index 24e703e5a..c257bc08a 100644 --- a/config/locales-glitch/ar.yml +++ b/config/locales-glitch/ar.yml @@ -1,38 +1 @@ ---- ar: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/ast.yml b/config/locales-glitch/ast.yml index 0e294ba8c..d762c9399 100644 --- a/config/locales-glitch/ast.yml +++ b/config/locales-glitch/ast.yml @@ -1,38 +1 @@ ---- ast: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/be.yml b/config/locales-glitch/be.yml index 53ee5ab09..91ccc2d7e 100644 --- a/config/locales-glitch/be.yml +++ b/config/locales-glitch/be.yml @@ -1,38 +1 @@ ---- be: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/bg.yml b/config/locales-glitch/bg.yml index de3435ef4..d0e375da9 100644 --- a/config/locales-glitch/bg.yml +++ b/config/locales-glitch/bg.yml @@ -1,38 +1 @@ ---- bg: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/bn.yml b/config/locales-glitch/bn.yml index 5f464049b..152c69829 100644 --- a/config/locales-glitch/bn.yml +++ b/config/locales-glitch/bn.yml @@ -1,38 +1 @@ ---- bn: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/br.yml b/config/locales-glitch/br.yml index 53a39fe02..c7677c850 100644 --- a/config/locales-glitch/br.yml +++ b/config/locales-glitch/br.yml @@ -1,38 +1 @@ ---- br: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/bs.yml b/config/locales-glitch/bs.yml index 1d8af181f..e9e174462 100644 --- a/config/locales-glitch/bs.yml +++ b/config/locales-glitch/bs.yml @@ -1,38 +1 @@ ---- bs: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/ca.yml b/config/locales-glitch/ca.yml index f3b3adb99..f0c487273 100644 --- a/config/locales-glitch/ca.yml +++ b/config/locales-glitch/ca.yml @@ -1,38 +1 @@ ---- ca: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/ckb.yml b/config/locales-glitch/ckb.yml index a9efcff27..cc251e86a 100644 --- a/config/locales-glitch/ckb.yml +++ b/config/locales-glitch/ckb.yml @@ -1,38 +1 @@ ---- ckb-IR: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/co.yml b/config/locales-glitch/co.yml index 880c7f133..5330938e0 100644 --- a/config/locales-glitch/co.yml +++ b/config/locales-glitch/co.yml @@ -1,38 +1 @@ ---- co: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/cy.yml b/config/locales-glitch/cy.yml index 63e5296fc..deefc9438 100644 --- a/config/locales-glitch/cy.yml +++ b/config/locales-glitch/cy.yml @@ -1,38 +1 @@ ---- cy: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/da.yml b/config/locales-glitch/da.yml index 325922fac..347c94d5e 100644 --- a/config/locales-glitch/da.yml +++ b/config/locales-glitch/da.yml @@ -1,38 +1 @@ ---- da: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/de.yml b/config/locales-glitch/de.yml index 99de7430c..346523bb6 100644 --- a/config/locales-glitch/de.yml +++ b/config/locales-glitch/de.yml @@ -1,38 +1 @@ ---- de: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/el.yml b/config/locales-glitch/el.yml index 517e9c663..419ec705c 100644 --- a/config/locales-glitch/el.yml +++ b/config/locales-glitch/el.yml @@ -1,38 +1 @@ ---- el: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/en-GB.yml b/config/locales-glitch/en-GB.yml index cec973752..ef03d1810 100644 --- a/config/locales-glitch/en-GB.yml +++ b/config/locales-glitch/en-GB.yml @@ -1,38 +1 @@ ---- en-GB: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/eo.yml b/config/locales-glitch/eo.yml index a97e7b134..759981404 100644 --- a/config/locales-glitch/eo.yml +++ b/config/locales-glitch/eo.yml @@ -1,38 +1 @@ ---- eo: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/es-AR.yml b/config/locales-glitch/es-AR.yml index eea52b7a6..fd38e165e 100644 --- a/config/locales-glitch/es-AR.yml +++ b/config/locales-glitch/es-AR.yml @@ -1,21 +1,10 @@ --- es-AR: admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin hide_followers_count: desc_html: No mostrar el conteo de seguidorxs en perfiles de usuarix title: Ocultar conteo de seguidorxs - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other outgoing_spoilers: desc_html: Cuando los toots federen, agrega esta etiqueta de contenido a los toots que no tengan. Es útil si tu servidor se especializa en contenido que otros servidores desearían tener con una advertencia de contenido. Los medios también se marcarán como sensibles. title: Advertencia de contenido para los toots salientes @@ -25,13 +14,6 @@ es-AR: show_replies_in_public_timelines: desc_html: Además de auto-respuestas públicas (hilos), mostrar respuestas públicas en las línea de tiempo local y pública. title: Mostrar respuestas en líneas de tiempo públicas - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification generic: use_this: Usar settings: diff --git a/config/locales-glitch/es-MX.yml b/config/locales-glitch/es-MX.yml index 6cec17c3b..48e24be76 100644 --- a/config/locales-glitch/es-MX.yml +++ b/config/locales-glitch/es-MX.yml @@ -1,21 +1,10 @@ --- es-MX: admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin hide_followers_count: desc_html: No mostrar el conteo de seguidorxs en perfiles de usuarix title: Ocultar conteo de seguidorxs - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other outgoing_spoilers: desc_html: Cuando los toots federen, agrega esta etiqueta de contenido a los toots que no tengan. Es útil si tu servidor se especializa en contenido que otros servidores desearían tener con una advertencia de contenido. Los medios también se marcarán como sensibles. title: Advertencia de contenido para los toots salientes @@ -25,13 +14,6 @@ es-MX: show_replies_in_public_timelines: desc_html: Además de auto-respuestas públicas (hilos), mostrar respuestas públicas en las línea de tiempo local y pública. title: Mostrar respuestas en líneas de tiempo públicas - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification generic: use_this: Usar settings: diff --git a/config/locales-glitch/es.yml b/config/locales-glitch/es.yml index 14af6097e..d842deb67 100644 --- a/config/locales-glitch/es.yml +++ b/config/locales-glitch/es.yml @@ -1,21 +1,10 @@ --- es: admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin hide_followers_count: desc_html: No mostrar el conteo de seguidorxs en perfiles de usuarix title: Ocultar conteo de seguidorxs - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other outgoing_spoilers: desc_html: Cuando los toots federen, agrega esta etiqueta de contenido a los toots que no tengan. Es útil si tu servidor se especializa en contenido que otros servidores desearían tener con una advertencia de contenido. Los medios también se marcarán como sensibles. title: Advertencia de contenido para los toots salientes @@ -25,13 +14,6 @@ es: show_replies_in_public_timelines: desc_html: Además de auto-respuestas públicas (hilos), mostrar respuestas públicas en las línea de tiempo local y pública. title: Mostrar respuestas en líneas de tiempo públicas - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification generic: use_this: Usar settings: diff --git a/config/locales-glitch/et.yml b/config/locales-glitch/et.yml index 75eb72264..e020c4ffc 100644 --- a/config/locales-glitch/et.yml +++ b/config/locales-glitch/et.yml @@ -1,38 +1 @@ ---- et: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/eu.yml b/config/locales-glitch/eu.yml index 956c5c2f7..566e176fc 100644 --- a/config/locales-glitch/eu.yml +++ b/config/locales-glitch/eu.yml @@ -1,38 +1 @@ ---- eu: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/fa.yml b/config/locales-glitch/fa.yml index 8067833b1..88215f82c 100644 --- a/config/locales-glitch/fa.yml +++ b/config/locales-glitch/fa.yml @@ -1,38 +1 @@ ---- fa: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/fi.yml b/config/locales-glitch/fi.yml index 87b61df09..23c538b19 100644 --- a/config/locales-glitch/fi.yml +++ b/config/locales-glitch/fi.yml @@ -1,38 +1 @@ ---- fi: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/fo.yml b/config/locales-glitch/fo.yml index 5b81be369..69f792cca 100644 --- a/config/locales-glitch/fo.yml +++ b/config/locales-glitch/fo.yml @@ -1,38 +1 @@ ---- fo: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/fr-QC.yml b/config/locales-glitch/fr-QC.yml index f9a8614d8..a1022434e 100644 --- a/config/locales-glitch/fr-QC.yml +++ b/config/locales-glitch/fr-QC.yml @@ -1,38 +1,11 @@ --- fr-QC: admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours + desc_html: Ajouter un avertissement de contenu à tous les messages lorsqu'ils sont fédérés s'ils n'en possèdent pas déjà. Cela peut être utile si votre serveur est spécialisé dans un type de contenu sur lequel les autres serveurs pourraient vouloir un Avertissement de Contenu. Les médias seront également marqués comme sensibles. + title: Avertissement de contenu pour les messages sortants + appearance: + localization: + glitch_guide_link: https://fr.crowdin.com/project/glitch-soc + glitch_guide_link_text: Et c'est pareil avec glitch-soc ! diff --git a/config/locales-glitch/fr.yml b/config/locales-glitch/fr.yml index e8e5085ba..3c5b41b9e 100644 --- a/config/locales-glitch/fr.yml +++ b/config/locales-glitch/fr.yml @@ -1,38 +1,11 @@ --- fr: admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours + desc_html: Ajouter un avertissement de contenu à tous les messages lorsqu'ils sont fédérés s'ils n'en possèdent pas déjà. Cela peut être utile si votre serveur est spécialisé dans un type de contenu sur lequel les autres serveurs pourraient vouloir un Avertissement de Contenu. Les médias seront également marqués comme sensibles. + title: Avertissement de contenu pour les messages sortants + appearance: + localization: + glitch_guide_link: https://fr.crowdin.com/project/glitch-soc + glitch_guide_link_text: Et c'est pareil avec glitch-soc ! diff --git a/config/locales-glitch/fy.yml b/config/locales-glitch/fy.yml index 6b8e225bc..c05849f20 100644 --- a/config/locales-glitch/fy.yml +++ b/config/locales-glitch/fy.yml @@ -1,38 +1 @@ ---- fy: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/ga.yml b/config/locales-glitch/ga.yml index aafc36d47..20a9da24e 100644 --- a/config/locales-glitch/ga.yml +++ b/config/locales-glitch/ga.yml @@ -1,38 +1 @@ ---- ga: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/gd.yml b/config/locales-glitch/gd.yml index d8873517c..1912f6c6a 100644 --- a/config/locales-glitch/gd.yml +++ b/config/locales-glitch/gd.yml @@ -1,38 +1 @@ ---- gd: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/gl.yml b/config/locales-glitch/gl.yml index 9fb5b77f7..8ec5fc81c 100644 --- a/config/locales-glitch/gl.yml +++ b/config/locales-glitch/gl.yml @@ -1,38 +1 @@ ---- gl: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/he.yml b/config/locales-glitch/he.yml index f7915d709..af6fa60a7 100644 --- a/config/locales-glitch/he.yml +++ b/config/locales-glitch/he.yml @@ -1,38 +1 @@ ---- he: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/hi.yml b/config/locales-glitch/hi.yml index aec5cdbda..d758a5b53 100644 --- a/config/locales-glitch/hi.yml +++ b/config/locales-glitch/hi.yml @@ -1,38 +1 @@ ---- hi: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/hr.yml b/config/locales-glitch/hr.yml index 5aa51d881..f67f33c7e 100644 --- a/config/locales-glitch/hr.yml +++ b/config/locales-glitch/hr.yml @@ -1,38 +1 @@ ---- hr: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/hu.yml b/config/locales-glitch/hu.yml index 71bd724cd..52314c50c 100644 --- a/config/locales-glitch/hu.yml +++ b/config/locales-glitch/hu.yml @@ -1,38 +1 @@ ---- hu: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/hy.yml b/config/locales-glitch/hy.yml index 44ad8aaad..c40654016 100644 --- a/config/locales-glitch/hy.yml +++ b/config/locales-glitch/hy.yml @@ -1,38 +1 @@ ---- hy: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/id.yml b/config/locales-glitch/id.yml index 2b4649463..8446cbad9 100644 --- a/config/locales-glitch/id.yml +++ b/config/locales-glitch/id.yml @@ -1,38 +1 @@ ---- id: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/ig.yml b/config/locales-glitch/ig.yml index a773d3075..7c264f0d7 100644 --- a/config/locales-glitch/ig.yml +++ b/config/locales-glitch/ig.yml @@ -1,38 +1 @@ ---- ig: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/io.yml b/config/locales-glitch/io.yml index 781f8a80e..c63dc0e8d 100644 --- a/config/locales-glitch/io.yml +++ b/config/locales-glitch/io.yml @@ -1,38 +1 @@ ---- io: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/is.yml b/config/locales-glitch/is.yml index 0cbf67e0e..337c106df 100644 --- a/config/locales-glitch/is.yml +++ b/config/locales-glitch/is.yml @@ -1,38 +1 @@ ---- is: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/it.yml b/config/locales-glitch/it.yml index 4e2bf74b9..85830635a 100644 --- a/config/locales-glitch/it.yml +++ b/config/locales-glitch/it.yml @@ -1,38 +1 @@ ---- it: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/ja.yml b/config/locales-glitch/ja.yml index 61bf4644b..54ebfaeca 100644 --- a/config/locales-glitch/ja.yml +++ b/config/locales-glitch/ja.yml @@ -1,21 +1,10 @@ --- ja: admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin hide_followers_count: desc_html: プロフィールページのフォロワー数を見られないようにします title: フォロワー数を隠す - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other outgoing_spoilers: desc_html: トゥートが連合される際、閲覧注意としてマークされていないトゥートにこの警告が追加されます。これはあなたのインスタンスが他のインスタンスに警告をして欲しいとされる投稿に特化している場合に便利です。 メディアは閲覧注意にマークされます。 title: 発信するトゥートへの警告 @@ -25,13 +14,6 @@ ja: show_replies_in_public_timelines: desc_html: 自分への公開投稿の返信に加えて、すべての公開投稿の返信をローカルタイムラインと連合タイムラインに表示します。 title: 公開タイムラインに返信を表示 - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification generic: use_this: これを使う settings: diff --git a/config/locales-glitch/ka.yml b/config/locales-glitch/ka.yml index eca5173ba..57a95cb04 100644 --- a/config/locales-glitch/ka.yml +++ b/config/locales-glitch/ka.yml @@ -1,38 +1 @@ ---- ka: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/kab.yml b/config/locales-glitch/kab.yml index 5831340c5..2109c04b3 100644 --- a/config/locales-glitch/kab.yml +++ b/config/locales-glitch/kab.yml @@ -1,38 +1 @@ ---- kab: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/kk.yml b/config/locales-glitch/kk.yml index addad540d..1dcc9b127 100644 --- a/config/locales-glitch/kk.yml +++ b/config/locales-glitch/kk.yml @@ -1,38 +1 @@ ---- kk: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/kn.yml b/config/locales-glitch/kn.yml index 18a70afeb..d094088d8 100644 --- a/config/locales-glitch/kn.yml +++ b/config/locales-glitch/kn.yml @@ -1,38 +1 @@ ---- kn: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/ko.yml b/config/locales-glitch/ko.yml index f69193411..bc9c4e86b 100644 --- a/config/locales-glitch/ko.yml +++ b/config/locales-glitch/ko.yml @@ -8,17 +8,9 @@ ko: captcha_enabled: desc_html: 이것은 hCaptcha의 외부 스크립트에 의존합니다, 이것은 개인정보 보호에 위협을 가할 수도 있습니다. 추가적으로, 이것은 몇몇 사람들(특히나 장애인들)에게 가입 절차의 접근성을 심각하게 떨어트릴 수 있습니다. 이러한 이유로, 대체제로 승인 전용이나 초대제를 통한 가입을 고려해보세요.
한정된 사용만 가능한 초대장을 통한 가입자들은 CAPTCHA를 풀지 않아도 됩니다 title: 새로운 사용자가 계정 확인을 위해서는 CAPTCHA를 풀어야 하도록 합니다 - flavour_and_skin: - title: Flavour and skin hide_followers_count: desc_html: 사용자 프로필에 팔로워 수를 표시하지 않습니다 title: 팔로워 수 숨기기 - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots show_reblogs_in_public_timelines: desc_html: 공개글의 공개적인 부스트를 로컬과 공개 타임라인에 표시합니다. title: 부스트를 공개 타임라인에 표시 diff --git a/config/locales-glitch/ku.yml b/config/locales-glitch/ku.yml index 6b3e35be5..aa87618e4 100644 --- a/config/locales-glitch/ku.yml +++ b/config/locales-glitch/ku.yml @@ -1,38 +1 @@ ---- kmr-TR: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/kw.yml b/config/locales-glitch/kw.yml index ed35d87ba..b2cfc12ff 100644 --- a/config/locales-glitch/kw.yml +++ b/config/locales-glitch/kw.yml @@ -1,38 +1 @@ ---- kw: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/la.yml b/config/locales-glitch/la.yml index 937c35285..3a7ba0d44 100644 --- a/config/locales-glitch/la.yml +++ b/config/locales-glitch/la.yml @@ -1,38 +1 @@ ---- la: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/lt.yml b/config/locales-glitch/lt.yml index 7497b5717..6c5cb837a 100644 --- a/config/locales-glitch/lt.yml +++ b/config/locales-glitch/lt.yml @@ -1,38 +1 @@ ---- lt: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/lv.yml b/config/locales-glitch/lv.yml index 0804c52b7..1be0eabc0 100644 --- a/config/locales-glitch/lv.yml +++ b/config/locales-glitch/lv.yml @@ -1,38 +1 @@ ---- lv: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/mk.yml b/config/locales-glitch/mk.yml index daed4eb50..8b9144a98 100644 --- a/config/locales-glitch/mk.yml +++ b/config/locales-glitch/mk.yml @@ -1,38 +1 @@ ---- mk: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/ml.yml b/config/locales-glitch/ml.yml index 6b5a0186c..6931a683d 100644 --- a/config/locales-glitch/ml.yml +++ b/config/locales-glitch/ml.yml @@ -1,38 +1 @@ ---- ml: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/mr.yml b/config/locales-glitch/mr.yml index 2ec3c1b63..fe1639c6a 100644 --- a/config/locales-glitch/mr.yml +++ b/config/locales-glitch/mr.yml @@ -1,38 +1 @@ ---- mr: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/ms.yml b/config/locales-glitch/ms.yml index 200944d6d..2925688a0 100644 --- a/config/locales-glitch/ms.yml +++ b/config/locales-glitch/ms.yml @@ -1,38 +1 @@ ---- ms: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/my.yml b/config/locales-glitch/my.yml index d7f7931be..5e1fc6bee 100644 --- a/config/locales-glitch/my.yml +++ b/config/locales-glitch/my.yml @@ -1,38 +1 @@ ---- my: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/nl.yml b/config/locales-glitch/nl.yml index 96e900323..f009eadee 100644 --- a/config/locales-glitch/nl.yml +++ b/config/locales-glitch/nl.yml @@ -1,38 +1 @@ ---- nl: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/nn.yml b/config/locales-glitch/nn.yml index f33c14c00..777f4e600 100644 --- a/config/locales-glitch/nn.yml +++ b/config/locales-glitch/nn.yml @@ -1,38 +1 @@ ---- nn: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/no.yml b/config/locales-glitch/no.yml index 1ee226ed5..d2a4697e5 100644 --- a/config/locales-glitch/no.yml +++ b/config/locales-glitch/no.yml @@ -1,38 +1 @@ ---- -"no": - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours +no: diff --git a/config/locales-glitch/oc.yml b/config/locales-glitch/oc.yml index cbdcb29fe..325b34889 100644 --- a/config/locales-glitch/oc.yml +++ b/config/locales-glitch/oc.yml @@ -1,38 +1 @@ ---- oc: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/pa.yml b/config/locales-glitch/pa.yml index 6c8d1484d..bb8a6c834 100644 --- a/config/locales-glitch/pa.yml +++ b/config/locales-glitch/pa.yml @@ -1,38 +1 @@ ---- pa: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/pl.yml b/config/locales-glitch/pl.yml index 9a714abcd..3fcdedcf3 100644 --- a/config/locales-glitch/pl.yml +++ b/config/locales-glitch/pl.yml @@ -1,37 +1,5 @@ --- pl: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification generic: use_this: Użyj tego settings: diff --git a/config/locales-glitch/pt-BR.yml b/config/locales-glitch/pt-BR.yml index 5439dc2da..9cbe1f038 100644 --- a/config/locales-glitch/pt-BR.yml +++ b/config/locales-glitch/pt-BR.yml @@ -1,38 +1 @@ ---- pt: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/pt-PT.yml b/config/locales-glitch/pt-PT.yml index 5439dc2da..9cbe1f038 100644 --- a/config/locales-glitch/pt-PT.yml +++ b/config/locales-glitch/pt-PT.yml @@ -1,38 +1 @@ ---- pt: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/ro.yml b/config/locales-glitch/ro.yml index bd12d75b6..79dbaa871 100644 --- a/config/locales-glitch/ro.yml +++ b/config/locales-glitch/ro.yml @@ -1,38 +1 @@ ---- ro: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/ru.yml b/config/locales-glitch/ru.yml index 6817f80d4..ddc9d1e32 100644 --- a/config/locales-glitch/ru.yml +++ b/config/locales-glitch/ru.yml @@ -1,38 +1 @@ ---- ru: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/sa.yml b/config/locales-glitch/sa.yml index cd6df912c..07ea4372a 100644 --- a/config/locales-glitch/sa.yml +++ b/config/locales-glitch/sa.yml @@ -1,38 +1 @@ ---- sa: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/sc.yml b/config/locales-glitch/sc.yml index 50f28be12..91bd6d92f 100644 --- a/config/locales-glitch/sc.yml +++ b/config/locales-glitch/sc.yml @@ -1,38 +1 @@ ---- sc: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/sco.yml b/config/locales-glitch/sco.yml index 2a9d10165..8165e00a1 100644 --- a/config/locales-glitch/sco.yml +++ b/config/locales-glitch/sco.yml @@ -1,38 +1 @@ ---- sco: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/si.yml b/config/locales-glitch/si.yml index 6376cc5b3..b0b50956e 100644 --- a/config/locales-glitch/si.yml +++ b/config/locales-glitch/si.yml @@ -1,38 +1 @@ ---- si: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/simple_form.af.yml b/config/locales-glitch/simple_form.af.yml index c7b7ae1d9..252f9fd5a 100644 --- a/config/locales-glitch/simple_form.af.yml +++ b/config/locales-glitch/simple_form.af.yml @@ -1,27 +1 @@ ---- af: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.an.yml b/config/locales-glitch/simple_form.an.yml index c7789ac69..76cc0689b 100644 --- a/config/locales-glitch/simple_form.an.yml +++ b/config/locales-glitch/simple_form.an.yml @@ -1,27 +1 @@ ---- an: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.ar.yml b/config/locales-glitch/simple_form.ar.yml index 07615007b..c257bc08a 100644 --- a/config/locales-glitch/simple_form.ar.yml +++ b/config/locales-glitch/simple_form.ar.yml @@ -1,27 +1 @@ ---- ar: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.ast.yml b/config/locales-glitch/simple_form.ast.yml index f2f431b14..d762c9399 100644 --- a/config/locales-glitch/simple_form.ast.yml +++ b/config/locales-glitch/simple_form.ast.yml @@ -1,27 +1 @@ ---- ast: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.be.yml b/config/locales-glitch/simple_form.be.yml index 3d724a6c7..91ccc2d7e 100644 --- a/config/locales-glitch/simple_form.be.yml +++ b/config/locales-glitch/simple_form.be.yml @@ -1,27 +1 @@ ---- be: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.bg.yml b/config/locales-glitch/simple_form.bg.yml index 220088494..d0e375da9 100644 --- a/config/locales-glitch/simple_form.bg.yml +++ b/config/locales-glitch/simple_form.bg.yml @@ -1,27 +1 @@ ---- bg: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.bn.yml b/config/locales-glitch/simple_form.bn.yml index 9eea9e55e..152c69829 100644 --- a/config/locales-glitch/simple_form.bn.yml +++ b/config/locales-glitch/simple_form.bn.yml @@ -1,27 +1 @@ ---- bn: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.br.yml b/config/locales-glitch/simple_form.br.yml index 699d30d9c..c7677c850 100644 --- a/config/locales-glitch/simple_form.br.yml +++ b/config/locales-glitch/simple_form.br.yml @@ -1,27 +1 @@ ---- br: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.bs.yml b/config/locales-glitch/simple_form.bs.yml index d7a52e676..e9e174462 100644 --- a/config/locales-glitch/simple_form.bs.yml +++ b/config/locales-glitch/simple_form.bs.yml @@ -1,27 +1 @@ ---- bs: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.ca.yml b/config/locales-glitch/simple_form.ca.yml index df44a1344..f0c487273 100644 --- a/config/locales-glitch/simple_form.ca.yml +++ b/config/locales-glitch/simple_form.ca.yml @@ -1,27 +1 @@ ---- ca: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.ckb.yml b/config/locales-glitch/simple_form.ckb.yml index 9a11a5b18..cc251e86a 100644 --- a/config/locales-glitch/simple_form.ckb.yml +++ b/config/locales-glitch/simple_form.ckb.yml @@ -1,27 +1 @@ ---- ckb-IR: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.co.yml b/config/locales-glitch/simple_form.co.yml index 7a43e5eb8..5330938e0 100644 --- a/config/locales-glitch/simple_form.co.yml +++ b/config/locales-glitch/simple_form.co.yml @@ -1,27 +1 @@ ---- co: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.cs.yml b/config/locales-glitch/simple_form.cs.yml index 8797c03eb..a0823d699 100644 --- a/config/locales-glitch/simple_form.cs.yml +++ b/config/locales-glitch/simple_form.cs.yml @@ -1,7 +1,6 @@ --- cs: simple_form: - glitch_only: glitch-soc hints: defaults: fields: Na svém profilu můžete mít zobrazeno několik položek (max. %{count}) jako tabulku @@ -14,8 +13,6 @@ cs: labels: defaults: setting_default_content_type: Výchozí formát příspěvků - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown setting_default_content_type_plain: Prostý text setting_favourite_modal: Před oblíbením příspěvku zobrazit potvrzovací dialog (pouze pro rozhraní Glitch) setting_hide_followers_count: Skrýt počet vašich sledujících diff --git a/config/locales-glitch/simple_form.cy.yml b/config/locales-glitch/simple_form.cy.yml index 9473e20db..deefc9438 100644 --- a/config/locales-glitch/simple_form.cy.yml +++ b/config/locales-glitch/simple_form.cy.yml @@ -1,27 +1 @@ ---- cy: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.da.yml b/config/locales-glitch/simple_form.da.yml index f3fc4da29..347c94d5e 100644 --- a/config/locales-glitch/simple_form.da.yml +++ b/config/locales-glitch/simple_form.da.yml @@ -1,27 +1 @@ ---- da: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.de.yml b/config/locales-glitch/simple_form.de.yml index 092e935d7..346523bb6 100644 --- a/config/locales-glitch/simple_form.de.yml +++ b/config/locales-glitch/simple_form.de.yml @@ -1,27 +1 @@ ---- de: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.el.yml b/config/locales-glitch/simple_form.el.yml index 6f9480061..419ec705c 100644 --- a/config/locales-glitch/simple_form.el.yml +++ b/config/locales-glitch/simple_form.el.yml @@ -1,27 +1 @@ ---- el: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.en-GB.yml b/config/locales-glitch/simple_form.en-GB.yml index a75014981..ef03d1810 100644 --- a/config/locales-glitch/simple_form.en-GB.yml +++ b/config/locales-glitch/simple_form.en-GB.yml @@ -1,27 +1 @@ ---- en-GB: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.eo.yml b/config/locales-glitch/simple_form.eo.yml index 435933211..759981404 100644 --- a/config/locales-glitch/simple_form.eo.yml +++ b/config/locales-glitch/simple_form.eo.yml @@ -1,27 +1 @@ ---- eo: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.es-AR.yml b/config/locales-glitch/simple_form.es-AR.yml index 1ea796823..affb4eae3 100644 --- a/config/locales-glitch/simple_form.es-AR.yml +++ b/config/locales-glitch/simple_form.es-AR.yml @@ -1,27 +1,18 @@ --- es-AR: simple_form: - glitch_only: glitch-soc hints: defaults: - fields: You can have up to %{count} items displayed as a table on your profile setting_default_content_type_html: Al escribir toots, asume que estás escritos en HTML, a menos que se especifique lo contrario setting_default_content_type_markdown: Al escribir toots, asume que estás usando Markdown para dar formato de texto enriquecido, a menos que se especifique lo contrario setting_default_content_type_plain: Al escribir toots, asume que estás usando texto sin formato, a menos que se especifique lo contrario (predeterminado de Mastodon) setting_default_language: El idioma de tus toots se puede detectar automáticamente, pero no siempre es correcto - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. setting_skin: Cambia el diseño de la edición seleccionada de Mastodon labels: defaults: setting_default_content_type: Formato predeterminado de tus toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown setting_default_content_type_plain: Sin formato setting_favourite_modal: Mostrar diálogo de confirmación antes de marcar como favorito (sólo aplica a la edición Glich) setting_hide_followers_count: Ocultar tu conteo de seguidorxs setting_skin: Diseño setting_system_emoji_font: Usar la fuente predeterminada del sistema para emojis (sólo aplica a la edición Glitch) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.es-MX.yml b/config/locales-glitch/simple_form.es-MX.yml index 891073656..561ca3b28 100644 --- a/config/locales-glitch/simple_form.es-MX.yml +++ b/config/locales-glitch/simple_form.es-MX.yml @@ -1,27 +1,18 @@ --- es-MX: simple_form: - glitch_only: glitch-soc hints: defaults: - fields: You can have up to %{count} items displayed as a table on your profile setting_default_content_type_html: Al escribir toots, asume que estás escritos en HTML, a menos que se especifique lo contrario setting_default_content_type_markdown: Al escribir toots, asume que estás usando Markdown para dar formato de texto enriquecido, a menos que se especifique lo contrario setting_default_content_type_plain: Al escribir toots, asume que estás usando texto sin formato, a menos que se especifique lo contrario (predeterminado de Mastodon) setting_default_language: El idioma de tus toots se puede detectar automáticamente, pero no siempre es correcto - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. setting_skin: Cambia el diseño de la edición seleccionada de Mastodon labels: defaults: setting_default_content_type: Formato predeterminado de tus toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown setting_default_content_type_plain: Sin formato setting_favourite_modal: Mostrar diálogo de confirmación antes de marcar como favorito (sólo aplica a la edición Glich) setting_hide_followers_count: Ocultar tu conteo de seguidorxs setting_skin: Diseño setting_system_emoji_font: Usar la fuente predeterminada del sistema para emojis (sólo aplica a la edición Glitch) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.es.yml b/config/locales-glitch/simple_form.es.yml index 96ed4c1ec..22277d30d 100644 --- a/config/locales-glitch/simple_form.es.yml +++ b/config/locales-glitch/simple_form.es.yml @@ -1,27 +1,18 @@ --- es: simple_form: - glitch_only: glitch-soc hints: defaults: - fields: You can have up to %{count} items displayed as a table on your profile setting_default_content_type_html: Al escribir toots, asume que estás escritos en HTML, a menos que se especifique lo contrario setting_default_content_type_markdown: Al escribir toots, asume que estás usando Markdown para dar formato de texto enriquecido, a menos que se especifique lo contrario setting_default_content_type_plain: Al escribir toots, asume que estás usando texto sin formato, a menos que se especifique lo contrario (predeterminado de Mastodon) setting_default_language: El idioma de tus toots se puede detectar automáticamente, pero no siempre es correcto - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. setting_skin: Cambia el diseño de la edición seleccionada de Mastodon labels: defaults: setting_default_content_type: Formato predeterminado de tus toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown setting_default_content_type_plain: Sin formato setting_favourite_modal: Mostrar diálogo de confirmación antes de marcar como favorito (sólo aplica a la edición Glich) setting_hide_followers_count: Ocultar tu conteo de seguidorxs setting_skin: Diseño setting_system_emoji_font: Usar la fuente predeterminada del sistema para emojis (sólo aplica a la edición Glitch) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.et.yml b/config/locales-glitch/simple_form.et.yml index 090ab6cb5..e020c4ffc 100644 --- a/config/locales-glitch/simple_form.et.yml +++ b/config/locales-glitch/simple_form.et.yml @@ -1,27 +1 @@ ---- et: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.eu.yml b/config/locales-glitch/simple_form.eu.yml index e0085473e..566e176fc 100644 --- a/config/locales-glitch/simple_form.eu.yml +++ b/config/locales-glitch/simple_form.eu.yml @@ -1,27 +1 @@ ---- eu: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.fa.yml b/config/locales-glitch/simple_form.fa.yml index dabbee1a3..88215f82c 100644 --- a/config/locales-glitch/simple_form.fa.yml +++ b/config/locales-glitch/simple_form.fa.yml @@ -1,27 +1 @@ ---- fa: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.fi.yml b/config/locales-glitch/simple_form.fi.yml index dbc8ce044..23c538b19 100644 --- a/config/locales-glitch/simple_form.fi.yml +++ b/config/locales-glitch/simple_form.fi.yml @@ -1,27 +1 @@ ---- fi: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.fo.yml b/config/locales-glitch/simple_form.fo.yml index 4b59c9c6c..69f792cca 100644 --- a/config/locales-glitch/simple_form.fo.yml +++ b/config/locales-glitch/simple_form.fo.yml @@ -1,27 +1 @@ ---- fo: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.fr-QC.yml b/config/locales-glitch/simple_form.fr-QC.yml index 20b3f6146..bc7f5746e 100644 --- a/config/locales-glitch/simple_form.fr-QC.yml +++ b/config/locales-glitch/simple_form.fr-QC.yml @@ -1,27 +1 @@ ---- fr-QC: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.fr.yml b/config/locales-glitch/simple_form.fr.yml index 0a0685c44..1831d4398 100644 --- a/config/locales-glitch/simple_form.fr.yml +++ b/config/locales-glitch/simple_form.fr.yml @@ -1,27 +1 @@ ---- fr: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.fy.yml b/config/locales-glitch/simple_form.fy.yml index 61e87e931..c05849f20 100644 --- a/config/locales-glitch/simple_form.fy.yml +++ b/config/locales-glitch/simple_form.fy.yml @@ -1,27 +1 @@ ---- fy: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.ga.yml b/config/locales-glitch/simple_form.ga.yml index 917abe778..20a9da24e 100644 --- a/config/locales-glitch/simple_form.ga.yml +++ b/config/locales-glitch/simple_form.ga.yml @@ -1,27 +1 @@ ---- ga: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.gd.yml b/config/locales-glitch/simple_form.gd.yml index 7b569a689..1912f6c6a 100644 --- a/config/locales-glitch/simple_form.gd.yml +++ b/config/locales-glitch/simple_form.gd.yml @@ -1,27 +1 @@ ---- gd: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.gl.yml b/config/locales-glitch/simple_form.gl.yml index 7aa480b4c..8ec5fc81c 100644 --- a/config/locales-glitch/simple_form.gl.yml +++ b/config/locales-glitch/simple_form.gl.yml @@ -1,27 +1 @@ ---- gl: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.he.yml b/config/locales-glitch/simple_form.he.yml index 85e0d2e02..af6fa60a7 100644 --- a/config/locales-glitch/simple_form.he.yml +++ b/config/locales-glitch/simple_form.he.yml @@ -1,27 +1 @@ ---- he: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.hi.yml b/config/locales-glitch/simple_form.hi.yml index fd1e19ca3..d758a5b53 100644 --- a/config/locales-glitch/simple_form.hi.yml +++ b/config/locales-glitch/simple_form.hi.yml @@ -1,27 +1 @@ ---- hi: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.hr.yml b/config/locales-glitch/simple_form.hr.yml index 3ddc7d77b..f67f33c7e 100644 --- a/config/locales-glitch/simple_form.hr.yml +++ b/config/locales-glitch/simple_form.hr.yml @@ -1,27 +1 @@ ---- hr: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.hu.yml b/config/locales-glitch/simple_form.hu.yml index 7d77afcb4..52314c50c 100644 --- a/config/locales-glitch/simple_form.hu.yml +++ b/config/locales-glitch/simple_form.hu.yml @@ -1,27 +1 @@ ---- hu: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.hy.yml b/config/locales-glitch/simple_form.hy.yml index 24b990d7b..c40654016 100644 --- a/config/locales-glitch/simple_form.hy.yml +++ b/config/locales-glitch/simple_form.hy.yml @@ -1,27 +1 @@ ---- hy: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.id.yml b/config/locales-glitch/simple_form.id.yml index 686392aee..8446cbad9 100644 --- a/config/locales-glitch/simple_form.id.yml +++ b/config/locales-glitch/simple_form.id.yml @@ -1,27 +1 @@ ---- id: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.ig.yml b/config/locales-glitch/simple_form.ig.yml index f85eea7a3..7c264f0d7 100644 --- a/config/locales-glitch/simple_form.ig.yml +++ b/config/locales-glitch/simple_form.ig.yml @@ -1,27 +1 @@ ---- ig: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.io.yml b/config/locales-glitch/simple_form.io.yml index 92f7fe4a9..c63dc0e8d 100644 --- a/config/locales-glitch/simple_form.io.yml +++ b/config/locales-glitch/simple_form.io.yml @@ -1,27 +1 @@ ---- io: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.is.yml b/config/locales-glitch/simple_form.is.yml index f7acc0869..337c106df 100644 --- a/config/locales-glitch/simple_form.is.yml +++ b/config/locales-glitch/simple_form.is.yml @@ -1,27 +1 @@ ---- is: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.it.yml b/config/locales-glitch/simple_form.it.yml index 325b7d1bb..85830635a 100644 --- a/config/locales-glitch/simple_form.it.yml +++ b/config/locales-glitch/simple_form.it.yml @@ -1,27 +1 @@ ---- it: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.ja.yml b/config/locales-glitch/simple_form.ja.yml index 7bc7eb13f..558d9da9c 100644 --- a/config/locales-glitch/simple_form.ja.yml +++ b/config/locales-glitch/simple_form.ja.yml @@ -1,27 +1,19 @@ --- ja: simple_form: - glitch_only: glitch-soc hints: defaults: - fields: You can have up to %{count} items displayed as a table on your profile setting_default_content_type_html: トゥートを作成するとき特に指定がない限り生のHTMLで書かれているとします setting_default_content_type_markdown: トゥートを作成するとき特に指定がない限りリッチテキスト形式のマークダウンで書かれているとします setting_default_content_type_plain: トゥートを作成するとき特に指定がない限りプレーンテキストで書かれているとします(Mastodon既定の動作) setting_default_language: あなたのトゥートの言語を自動検出しますが必ずしも正確ではありません - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. setting_skin: 選択したMastodonフレーバーに変更します labels: defaults: setting_default_content_type: 既定のトゥート形式 - setting_default_content_type_html: HTML setting_default_content_type_markdown: マークダウン setting_default_content_type_plain: プレーンテキスト setting_favourite_modal: お気に入りをする前に確認ダイアログを表示する setting_hide_followers_count: フォロワー数を隠す setting_skin: スキン setting_system_emoji_font: 絵文字にシステム既定のフォントを使用する(Glitch Edition フレーバーのみに適用されます) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.ka.yml b/config/locales-glitch/simple_form.ka.yml index 30d2d137c..57a95cb04 100644 --- a/config/locales-glitch/simple_form.ka.yml +++ b/config/locales-glitch/simple_form.ka.yml @@ -1,27 +1 @@ ---- ka: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.kab.yml b/config/locales-glitch/simple_form.kab.yml index 3c68f188a..2109c04b3 100644 --- a/config/locales-glitch/simple_form.kab.yml +++ b/config/locales-glitch/simple_form.kab.yml @@ -1,27 +1 @@ ---- kab: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.kk.yml b/config/locales-glitch/simple_form.kk.yml index 0ad2cbbed..1dcc9b127 100644 --- a/config/locales-glitch/simple_form.kk.yml +++ b/config/locales-glitch/simple_form.kk.yml @@ -1,27 +1 @@ ---- kk: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.kn.yml b/config/locales-glitch/simple_form.kn.yml index 00305eccf..d094088d8 100644 --- a/config/locales-glitch/simple_form.kn.yml +++ b/config/locales-glitch/simple_form.kn.yml @@ -1,27 +1 @@ ---- kn: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.ko.yml b/config/locales-glitch/simple_form.ko.yml index b7cbb91b0..b7d675aa5 100644 --- a/config/locales-glitch/simple_form.ko.yml +++ b/config/locales-glitch/simple_form.ko.yml @@ -1,20 +1,16 @@ --- ko: simple_form: - glitch_only: glitch-soc hints: defaults: - fields: You can have up to %{count} items displayed as a table on your profile setting_default_content_type_html: 게시물을 작성할 때, 형식을 지정하지 않았다면, 생 HTML이라고 가정합니다 setting_default_content_type_markdown: 게시물을 작성할 때, 형식을 지정하지 않았다면, 마크다운이라고 가정합니다 setting_default_content_type_plain: 게시물을 작성할 때, 형식을 지정하지 않았다면, 일반적인 텍스트라고 가정합니다. (마스토돈의 기본 동작) setting_default_language: 작성하는 게시물의 언어는 자동으로 설정될 수 있습니다, 하지만 언제나 정확하지는 않습니다 - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. setting_skin: 선택한 마스토돈 풍미의 스킨을 바꿉니다 labels: defaults: setting_default_content_type: 게시물의 기본 포맷 - setting_default_content_type_html: HTML setting_default_content_type_markdown: 마크다운 setting_default_content_type_plain: 일반 텍스트 setting_favourite_modal: 관심글을 지정할 때 확인 창을 띄웁니다(글리치 풍미에만 적용됨) diff --git a/config/locales-glitch/simple_form.ku.yml b/config/locales-glitch/simple_form.ku.yml index 19886fd16..aa87618e4 100644 --- a/config/locales-glitch/simple_form.ku.yml +++ b/config/locales-glitch/simple_form.ku.yml @@ -1,27 +1 @@ ---- kmr-TR: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.kw.yml b/config/locales-glitch/simple_form.kw.yml index 2dc7ebe34..b2cfc12ff 100644 --- a/config/locales-glitch/simple_form.kw.yml +++ b/config/locales-glitch/simple_form.kw.yml @@ -1,27 +1 @@ ---- kw: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.la.yml b/config/locales-glitch/simple_form.la.yml index 534001565..3a7ba0d44 100644 --- a/config/locales-glitch/simple_form.la.yml +++ b/config/locales-glitch/simple_form.la.yml @@ -1,27 +1 @@ ---- la: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.lt.yml b/config/locales-glitch/simple_form.lt.yml index d5febc901..6c5cb837a 100644 --- a/config/locales-glitch/simple_form.lt.yml +++ b/config/locales-glitch/simple_form.lt.yml @@ -1,27 +1 @@ ---- lt: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.lv.yml b/config/locales-glitch/simple_form.lv.yml index 9a30494f9..1be0eabc0 100644 --- a/config/locales-glitch/simple_form.lv.yml +++ b/config/locales-glitch/simple_form.lv.yml @@ -1,27 +1 @@ ---- lv: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.mk.yml b/config/locales-glitch/simple_form.mk.yml index 6f2d2421f..8b9144a98 100644 --- a/config/locales-glitch/simple_form.mk.yml +++ b/config/locales-glitch/simple_form.mk.yml @@ -1,27 +1 @@ ---- mk: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.ml.yml b/config/locales-glitch/simple_form.ml.yml index 3c0d7a70a..6931a683d 100644 --- a/config/locales-glitch/simple_form.ml.yml +++ b/config/locales-glitch/simple_form.ml.yml @@ -1,27 +1 @@ ---- ml: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.mr.yml b/config/locales-glitch/simple_form.mr.yml index eb7089757..fe1639c6a 100644 --- a/config/locales-glitch/simple_form.mr.yml +++ b/config/locales-glitch/simple_form.mr.yml @@ -1,27 +1 @@ ---- mr: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.ms.yml b/config/locales-glitch/simple_form.ms.yml index 31ddcd1f9..2925688a0 100644 --- a/config/locales-glitch/simple_form.ms.yml +++ b/config/locales-glitch/simple_form.ms.yml @@ -1,27 +1 @@ ---- ms: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.my.yml b/config/locales-glitch/simple_form.my.yml index a0a67ff66..5e1fc6bee 100644 --- a/config/locales-glitch/simple_form.my.yml +++ b/config/locales-glitch/simple_form.my.yml @@ -1,27 +1 @@ ---- my: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.nl.yml b/config/locales-glitch/simple_form.nl.yml index 1e04b6c20..f009eadee 100644 --- a/config/locales-glitch/simple_form.nl.yml +++ b/config/locales-glitch/simple_form.nl.yml @@ -1,27 +1 @@ ---- nl: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.nn.yml b/config/locales-glitch/simple_form.nn.yml index 06408dcf8..777f4e600 100644 --- a/config/locales-glitch/simple_form.nn.yml +++ b/config/locales-glitch/simple_form.nn.yml @@ -1,27 +1 @@ ---- nn: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.no.yml b/config/locales-glitch/simple_form.no.yml index 649e27b9e..d2a4697e5 100644 --- a/config/locales-glitch/simple_form.no.yml +++ b/config/locales-glitch/simple_form.no.yml @@ -1,27 +1 @@ ---- -"no": - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review +no: diff --git a/config/locales-glitch/simple_form.oc.yml b/config/locales-glitch/simple_form.oc.yml index f555e6fca..325b34889 100644 --- a/config/locales-glitch/simple_form.oc.yml +++ b/config/locales-glitch/simple_form.oc.yml @@ -1,27 +1 @@ ---- oc: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.pa.yml b/config/locales-glitch/simple_form.pa.yml index 9eee21ec9..bb8a6c834 100644 --- a/config/locales-glitch/simple_form.pa.yml +++ b/config/locales-glitch/simple_form.pa.yml @@ -1,27 +1 @@ ---- pa: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.pl.yml b/config/locales-glitch/simple_form.pl.yml index e328a3445..264494c2d 100644 --- a/config/locales-glitch/simple_form.pl.yml +++ b/config/locales-glitch/simple_form.pl.yml @@ -1,27 +1,10 @@ --- pl: simple_form: - glitch_only: glitch-soc hints: defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. setting_skin: Zmienia wygląd używanej odmiany Mastodona labels: defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text setting_favourite_modal: Pytaj o potwierdzenie przed dodaniem do ulubionych - setting_hide_followers_count: Hide your followers count setting_skin: Motyw - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.pt-BR.yml b/config/locales-glitch/simple_form.pt-BR.yml index cac0cddce..9cbe1f038 100644 --- a/config/locales-glitch/simple_form.pt-BR.yml +++ b/config/locales-glitch/simple_form.pt-BR.yml @@ -1,27 +1 @@ ---- pt: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.pt-PT.yml b/config/locales-glitch/simple_form.pt-PT.yml index cac0cddce..9cbe1f038 100644 --- a/config/locales-glitch/simple_form.pt-PT.yml +++ b/config/locales-glitch/simple_form.pt-PT.yml @@ -1,27 +1 @@ ---- pt: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.ro.yml b/config/locales-glitch/simple_form.ro.yml index 41f9fc96d..79dbaa871 100644 --- a/config/locales-glitch/simple_form.ro.yml +++ b/config/locales-glitch/simple_form.ro.yml @@ -1,27 +1 @@ ---- ro: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.ru.yml b/config/locales-glitch/simple_form.ru.yml index cb21b98b5..ddc9d1e32 100644 --- a/config/locales-glitch/simple_form.ru.yml +++ b/config/locales-glitch/simple_form.ru.yml @@ -1,27 +1 @@ ---- ru: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.sa.yml b/config/locales-glitch/simple_form.sa.yml index a97b0bccf..07ea4372a 100644 --- a/config/locales-glitch/simple_form.sa.yml +++ b/config/locales-glitch/simple_form.sa.yml @@ -1,27 +1 @@ ---- sa: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.sc.yml b/config/locales-glitch/simple_form.sc.yml index aa1cb749e..91bd6d92f 100644 --- a/config/locales-glitch/simple_form.sc.yml +++ b/config/locales-glitch/simple_form.sc.yml @@ -1,27 +1 @@ ---- sc: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.sco.yml b/config/locales-glitch/simple_form.sco.yml index 3aba873c4..8165e00a1 100644 --- a/config/locales-glitch/simple_form.sco.yml +++ b/config/locales-glitch/simple_form.sco.yml @@ -1,27 +1 @@ ---- sco: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.si.yml b/config/locales-glitch/simple_form.si.yml index 858abd71f..b0b50956e 100644 --- a/config/locales-glitch/simple_form.si.yml +++ b/config/locales-glitch/simple_form.si.yml @@ -1,27 +1 @@ ---- si: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.sk.yml b/config/locales-glitch/simple_form.sk.yml index 391b314f4..f634a0282 100644 --- a/config/locales-glitch/simple_form.sk.yml +++ b/config/locales-glitch/simple_form.sk.yml @@ -1,27 +1 @@ ---- sk: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.sl.yml b/config/locales-glitch/simple_form.sl.yml index 83ea32917..26c7ce2e3 100644 --- a/config/locales-glitch/simple_form.sl.yml +++ b/config/locales-glitch/simple_form.sl.yml @@ -1,27 +1 @@ ---- sl: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.sq.yml b/config/locales-glitch/simple_form.sq.yml index 819de27a1..44ddadc95 100644 --- a/config/locales-glitch/simple_form.sq.yml +++ b/config/locales-glitch/simple_form.sq.yml @@ -1,27 +1 @@ ---- sq: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.sr-Latn.yml b/config/locales-glitch/simple_form.sr-Latn.yml index 0cc7666c8..9e26af819 100644 --- a/config/locales-glitch/simple_form.sr-Latn.yml +++ b/config/locales-glitch/simple_form.sr-Latn.yml @@ -1,27 +1 @@ ---- sr: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.sr.yml b/config/locales-glitch/simple_form.sr.yml index 0cc7666c8..9e26af819 100644 --- a/config/locales-glitch/simple_form.sr.yml +++ b/config/locales-glitch/simple_form.sr.yml @@ -1,27 +1 @@ ---- sr: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.sv.yml b/config/locales-glitch/simple_form.sv.yml index 02fc1418c..7e73a972a 100644 --- a/config/locales-glitch/simple_form.sv.yml +++ b/config/locales-glitch/simple_form.sv.yml @@ -1,27 +1 @@ ---- sv: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.ta.yml b/config/locales-glitch/simple_form.ta.yml index 06ddc7fb8..4320953ce 100644 --- a/config/locales-glitch/simple_form.ta.yml +++ b/config/locales-glitch/simple_form.ta.yml @@ -1,27 +1 @@ ---- ta: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.te.yml b/config/locales-glitch/simple_form.te.yml index 45d3a5693..34c54f18f 100644 --- a/config/locales-glitch/simple_form.te.yml +++ b/config/locales-glitch/simple_form.te.yml @@ -1,27 +1 @@ ---- te: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.th.yml b/config/locales-glitch/simple_form.th.yml index b88200c9a..a4431912a 100644 --- a/config/locales-glitch/simple_form.th.yml +++ b/config/locales-glitch/simple_form.th.yml @@ -1,27 +1 @@ ---- th: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.tr.yml b/config/locales-glitch/simple_form.tr.yml index 9f17e4cd4..077d41667 100644 --- a/config/locales-glitch/simple_form.tr.yml +++ b/config/locales-glitch/simple_form.tr.yml @@ -1,27 +1 @@ ---- tr: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.tt.yml b/config/locales-glitch/simple_form.tt.yml index 4a3faf510..5eab4abff 100644 --- a/config/locales-glitch/simple_form.tt.yml +++ b/config/locales-glitch/simple_form.tt.yml @@ -1,27 +1 @@ ---- tt: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.ug.yml b/config/locales-glitch/simple_form.ug.yml index 447959c10..289acf241 100644 --- a/config/locales-glitch/simple_form.ug.yml +++ b/config/locales-glitch/simple_form.ug.yml @@ -1,27 +1 @@ ---- ug: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.uk.yml b/config/locales-glitch/simple_form.uk.yml index 855332537..c256c3246 100644 --- a/config/locales-glitch/simple_form.uk.yml +++ b/config/locales-glitch/simple_form.uk.yml @@ -1,27 +1 @@ ---- uk: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.ur.yml b/config/locales-glitch/simple_form.ur.yml index d5bff2d0f..2cace5883 100644 --- a/config/locales-glitch/simple_form.ur.yml +++ b/config/locales-glitch/simple_form.ur.yml @@ -1,27 +1 @@ ---- ur: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.vi.yml b/config/locales-glitch/simple_form.vi.yml index f2a45d50b..326506f0b 100644 --- a/config/locales-glitch/simple_form.vi.yml +++ b/config/locales-glitch/simple_form.vi.yml @@ -1,27 +1 @@ ---- vi: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.zh-CN.yml b/config/locales-glitch/simple_form.zh-CN.yml index f4c865d07..63b9e9222 100644 --- a/config/locales-glitch/simple_form.zh-CN.yml +++ b/config/locales-glitch/simple_form.zh-CN.yml @@ -1,27 +1,18 @@ --- zh-CN: simple_form: - glitch_only: glitch-soc hints: defaults: - fields: You can have up to %{count} items displayed as a table on your profile setting_default_content_type_html: 在撰写嘟文时,除非另有指定,假定它们使用原始 HTML 语言撰写 setting_default_content_type_markdown: 在撰写嘟文时,除非另有指定,假定它们使用 Markdown 进行富文本格式化 setting_default_content_type_plain: 在撰写嘟文时,除非另有指定,假定它们是没有特殊格式的纯文本(默认的 Mastodon 行为) setting_default_language: 你的嘟文语言可以自动检测,但不一定准确 - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. setting_skin: 更换为所选择的 Mastodon 风味 labels: defaults: setting_default_content_type: 嘟文的默认格式 - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown setting_default_content_type_plain: 纯文本 setting_favourite_modal: 在喜欢嘟文前询问我 (仅限于 Glitch 风味) setting_hide_followers_count: 隐藏你的关注者人数 setting_skin: 皮肤 setting_system_emoji_font: 表情符号使用系统默认字体 (仅限于 Glitch 风味) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.zh-HK.yml b/config/locales-glitch/simple_form.zh-HK.yml index b1151106c..35a3adbaf 100644 --- a/config/locales-glitch/simple_form.zh-HK.yml +++ b/config/locales-glitch/simple_form.zh-HK.yml @@ -1,27 +1 @@ ---- zh: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/simple_form.zh-TW.yml b/config/locales-glitch/simple_form.zh-TW.yml index ce84b7ee6..cb82c0526 100644 --- a/config/locales-glitch/simple_form.zh-TW.yml +++ b/config/locales-glitch/simple_form.zh-TW.yml @@ -1,27 +1 @@ ---- zh-TW: - simple_form: - glitch_only: glitch-soc - hints: - defaults: - fields: You can have up to %{count} items displayed as a table on your profile - setting_default_content_type_html: When writing toots, assume they are written in raw HTML, unless specified otherwise - setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise - setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior) - setting_default_language: The language of your toots can be detected automatically, but it's not always accurate - setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count. - setting_skin: Reskins the selected Mastodon flavour - labels: - defaults: - setting_default_content_type: Default format for toots - setting_default_content_type_html: HTML - setting_default_content_type_markdown: Markdown - setting_default_content_type_plain: Plain text - setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only) - setting_hide_followers_count: Hide your followers count - setting_skin: Skin - setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only) - notification_emails: - trending_link: New trending link requires review - trending_status: New trending post requires review - trending_tag: New trending tag requires review diff --git a/config/locales-glitch/sk.yml b/config/locales-glitch/sk.yml index 1b5151372..f634a0282 100644 --- a/config/locales-glitch/sk.yml +++ b/config/locales-glitch/sk.yml @@ -1,38 +1 @@ ---- sk: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/sl.yml b/config/locales-glitch/sl.yml index 20f43c42c..26c7ce2e3 100644 --- a/config/locales-glitch/sl.yml +++ b/config/locales-glitch/sl.yml @@ -1,38 +1 @@ ---- sl: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/sq.yml b/config/locales-glitch/sq.yml index a361906bc..44ddadc95 100644 --- a/config/locales-glitch/sq.yml +++ b/config/locales-glitch/sq.yml @@ -1,38 +1 @@ ---- sq: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/sr-Latn.yml b/config/locales-glitch/sr-Latn.yml index edcd89a19..9e26af819 100644 --- a/config/locales-glitch/sr-Latn.yml +++ b/config/locales-glitch/sr-Latn.yml @@ -1,38 +1 @@ ---- sr: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/sr.yml b/config/locales-glitch/sr.yml index edcd89a19..9e26af819 100644 --- a/config/locales-glitch/sr.yml +++ b/config/locales-glitch/sr.yml @@ -1,38 +1 @@ ---- sr: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/sv.yml b/config/locales-glitch/sv.yml index 31d646dca..7e73a972a 100644 --- a/config/locales-glitch/sv.yml +++ b/config/locales-glitch/sv.yml @@ -1,38 +1 @@ ---- sv: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/ta.yml b/config/locales-glitch/ta.yml index 668c46ba8..4320953ce 100644 --- a/config/locales-glitch/ta.yml +++ b/config/locales-glitch/ta.yml @@ -1,38 +1 @@ ---- ta: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/te.yml b/config/locales-glitch/te.yml index 95c11971f..34c54f18f 100644 --- a/config/locales-glitch/te.yml +++ b/config/locales-glitch/te.yml @@ -1,38 +1 @@ ---- te: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/th.yml b/config/locales-glitch/th.yml index bbf30457d..a4431912a 100644 --- a/config/locales-glitch/th.yml +++ b/config/locales-glitch/th.yml @@ -1,38 +1 @@ ---- th: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/tr.yml b/config/locales-glitch/tr.yml index c374d1e13..077d41667 100644 --- a/config/locales-glitch/tr.yml +++ b/config/locales-glitch/tr.yml @@ -1,38 +1 @@ ---- tr: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/tt.yml b/config/locales-glitch/tt.yml index 119e25272..5eab4abff 100644 --- a/config/locales-glitch/tt.yml +++ b/config/locales-glitch/tt.yml @@ -1,38 +1 @@ ---- tt: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/ug.yml b/config/locales-glitch/ug.yml index 4157effb9..289acf241 100644 --- a/config/locales-glitch/ug.yml +++ b/config/locales-glitch/ug.yml @@ -1,38 +1 @@ ---- ug: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/uk.yml b/config/locales-glitch/uk.yml index e28ccbc9e..c256c3246 100644 --- a/config/locales-glitch/uk.yml +++ b/config/locales-glitch/uk.yml @@ -1,38 +1 @@ ---- uk: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/ur.yml b/config/locales-glitch/ur.yml index 465898cdb..2cace5883 100644 --- a/config/locales-glitch/ur.yml +++ b/config/locales-glitch/ur.yml @@ -1,38 +1 @@ ---- ur: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/vi.yml b/config/locales-glitch/vi.yml index d8c383798..326506f0b 100644 --- a/config/locales-glitch/vi.yml +++ b/config/locales-glitch/vi.yml @@ -1,38 +1 @@ ---- vi: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/zh-CN.yml b/config/locales-glitch/zh-CN.yml index ff16d1743..40a09c1c9 100644 --- a/config/locales-glitch/zh-CN.yml +++ b/config/locales-glitch/zh-CN.yml @@ -1,21 +1,10 @@ --- zh-CN: admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin hide_followers_count: desc_html: 不要在用户资料中显示关注者人数 title: 隐藏关注者人数 - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other outgoing_spoilers: desc_html: 在联邦化嘟文的时候,将这个内容警告添加到没有内容警告的嘟文中。如果你的服务器专用于其他服务器可能希望有内容警告的内容,它会很有用。媒体也将被标记为敏感。 title: 对外嘟文的内容警告 @@ -25,13 +14,6 @@ zh-CN: show_replies_in_public_timelines: desc_html: 除了公开的自我回复(线程模式),在本地和跨站时间轴中显示公开回复。 title: 在公共时间轴中显示回复 - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification generic: use_this: 使用这个 settings: diff --git a/config/locales-glitch/zh-HK.yml b/config/locales-glitch/zh-HK.yml index 237a521fc..35a3adbaf 100644 --- a/config/locales-glitch/zh-HK.yml +++ b/config/locales-glitch/zh-HK.yml @@ -1,38 +1 @@ ---- zh: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours diff --git a/config/locales-glitch/zh-TW.yml b/config/locales-glitch/zh-TW.yml index 17c1f65ec..cb82c0526 100644 --- a/config/locales-glitch/zh-TW.yml +++ b/config/locales-glitch/zh-TW.yml @@ -1,38 +1 @@ ---- zh-TW: - admin: - custom_emojis: - batch_copy_error: 'An error occurred when copying some of the selected emoji: %{message}' - batch_error: 'An error occurred: %{message}' - settings: - captcha_enabled: - desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, this can make the registration process significantly less accessible to some (especially disabled) people. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
Users that have been invited through a limited-use invite will not need to solve a CAPTCHA - title: Require new users to solve a CAPTCHA to confirm their account - flavour_and_skin: - title: Flavour and skin - hide_followers_count: - desc_html: Do not show followers count on user profiles - title: Hide followers count - other: - preamble: Various glitch-soc settings not fitting in other categories. - title: Other - outgoing_spoilers: - desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. - title: Content warning for outgoing toots - show_reblogs_in_public_timelines: - desc_html: Show public boosts of public toots in local and public timelines. - title: Show boosts in public timelines - show_replies_in_public_timelines: - desc_html: In addition to public self-replies (threads), show public replies in local and public timelines. - title: Show replies in public timelines - trending_status_cw: - desc_html: When trending posts are enabled, allow posts with Content Warnings to be eligible. Changes to this setting are not retroactive. - title: Allow posts with Content Warnings to trend - auth: - captcha_confirmation: - hint_html: Just one more step! To confirm your account, this server requires you to solve a CAPTCHA. You can contact the server administrator if you have questions or need assistance with confirming your account. - title: User verification - generic: - use_this: Use this - settings: - flavours: Flavours -- cgit From dbc3890489f5b0ddf7072782cb19884450f38d03 Mon Sep 17 00:00:00 2001 From: Claire Date: Thu, 22 Dec 2022 07:50:34 +0100 Subject: New Crowdin updates (#2035) * New translations en.json (Russian) [ci skip] * New translations en.json (Slovak) [ci skip] * New translations en.json (Slovenian) [ci skip] * New translations en.json (Albanian) [ci skip] * New translations en.json (Serbian (Cyrillic)) [ci skip] * New translations en.json (Swedish) [ci skip] * New translations en.json (Turkish) [ci skip] * New translations en.json (Ukrainian) [ci skip] * New translations en.json (Chinese Simplified) [ci skip] * New translations en.json (Chinese Traditional) [ci skip] * New translations en.json (Urdu (Pakistan)) [ci skip] * New translations en.json (Vietnamese) [ci skip] * New translations en.json (Galician) [ci skip] * New translations en.json (Icelandic) [ci skip] * New translations en.json (Portuguese, Brazilian) [ci skip] * New translations en.json (Indonesian) [ci skip] * New translations en.json (Persian) [ci skip] * New translations en.json (Tamil) [ci skip] * New translations en.json (Spanish, Argentina) [ci skip] * New translations en.json (Spanish, Mexico) [ci skip] * New translations en.json (Bengali) [ci skip] * New translations en.json (Marathi) [ci skip] * New translations en.json (Thai) [ci skip] * New translations en.json (Croatian) [ci skip] * New translations en.json (Norwegian Nynorsk) [ci skip] * New translations en.json (Kazakh) [ci skip] * New translations en.json (Estonian) [ci skip] * New translations en.json (Latvian) [ci skip] * New translations en.json (Hindi) [ci skip] * New translations en.json (Malay) [ci skip] * New translations en.json (Telugu) [ci skip] * New translations en.json (English, United Kingdom) [ci skip] * New translations en.json (Burmese) [ci skip] * New translations en.json (Welsh) [ci skip] * New translations en.json (Faroese) [ci skip] * New translations en.json (Esperanto) [ci skip] * New translations en.json (Uyghur) [ci skip] * New translations en.json (Chinese Traditional, Hong Kong) [ci skip] * New translations en.json (Tatar) [ci skip] * New translations en.json (Malayalam) [ci skip] * New translations en.json (Breton) [ci skip] * New translations en.json (Latin) [ci skip] * New translations en.json (Bosnian) [ci skip] * New translations en.json (French, Quebec) [ci skip] * New translations en.json (Sinhala) [ci skip] * New translations en.json (Cornish) [ci skip] * New translations en.json (Kannada) [ci skip] * New translations en.json (Scottish Gaelic) [ci skip] * New translations en.json (Asturian) [ci skip] * New translations en.json (Aragonese) [ci skip] * New translations en.json (Occitan) [ci skip] * New translations en.json (Serbian (Latin)) [ci skip] * New translations en.json (Kurmanji (Kurdish)) [ci skip] * New translations en.json (Sorani (Kurdish)) [ci skip] * New translations en.json (Scots) [ci skip] * New translations en.json (Igbo) [ci skip] * New translations en.json (Corsican) [ci skip] * New translations en.json (Sardinian) [ci skip] * New translations en.json (Sanskrit) [ci skip] * New translations en.json (Kabyle) [ci skip] * New translations en.json (Ido) [ci skip] * New translations en.yml (Romanian) [ci skip] * New translations en.yml (French) [ci skip] * New translations en.yml (Spanish) [ci skip] * New translations en.yml (Afrikaans) [ci skip] * New translations en.yml (Arabic) [ci skip] * New translations en.yml (Belarusian) [ci skip] * New translations en.yml (Bulgarian) [ci skip] * New translations en.yml (Catalan) [ci skip] * New translations en.yml (Czech) [ci skip] * New translations en.yml (Danish) [ci skip] * New translations en.yml (German) [ci skip] * New translations en.yml (Greek) [ci skip] * New translations en.yml (Frisian) [ci skip] * New translations en.yml (Basque) [ci skip] * New translations en.yml (Finnish) [ci skip] * New translations en.yml (Irish) [ci skip] * New translations en.yml (Hebrew) [ci skip] * New translations en.yml (Hungarian) [ci skip] * New translations en.yml (Armenian) [ci skip] * New translations en.yml (Italian) [ci skip] * New translations en.yml (Japanese) [ci skip] * New translations en.yml (Georgian) [ci skip] * New translations en.yml (Korean) [ci skip] * New translations en.yml (Lithuanian) [ci skip] * New translations en.yml (Macedonian) [ci skip] * New translations en.yml (Dutch) [ci skip] * New translations en.yml (Norwegian) [ci skip] * New translations en.yml (Punjabi) [ci skip] * New translations en.yml (Polish) [ci skip] * New translations en.yml (Portuguese) [ci skip] * New translations en.yml (Russian) [ci skip] * New translations en.yml (Slovak) [ci skip] * New translations en.yml (Slovenian) [ci skip] * New translations en.yml (Albanian) [ci skip] * New translations en.yml (Serbian (Cyrillic)) [ci skip] * New translations en.yml (Swedish) [ci skip] * New translations en.yml (Turkish) [ci skip] * New translations en.yml (Ukrainian) [ci skip] * New translations en.yml (Chinese Simplified) [ci skip] * New translations en.yml (Chinese Traditional) [ci skip] * New translations en.yml (Urdu (Pakistan)) [ci skip] * New translations en.yml (Vietnamese) [ci skip] * New translations en.yml (Galician) [ci skip] * New translations en.yml (Icelandic) [ci skip] * New translations en.yml (Portuguese, Brazilian) [ci skip] * New translations en.yml (Indonesian) [ci skip] * New translations en.yml (Persian) [ci skip] * New translations en.yml (Tamil) [ci skip] * New translations en.yml (Spanish, Argentina) [ci skip] * New translations en.yml (Spanish, Mexico) [ci skip] * New translations en.yml (Bengali) [ci skip] * New translations en.yml (Marathi) [ci skip] * New translations en.yml (Thai) [ci skip] * New translations en.yml (Croatian) [ci skip] * New translations en.yml (Norwegian Nynorsk) [ci skip] * New translations en.yml (Kazakh) [ci skip] * New translations en.yml (Estonian) [ci skip] * New translations en.yml (Latvian) [ci skip] * New translations en.yml (Hindi) [ci skip] * New translations en.yml (Malay) [ci skip] * New translations en.yml (Telugu) [ci skip] * New translations en.yml (English, United Kingdom) [ci skip] * New translations en.yml (Burmese) [ci skip] * New translations en.yml (Welsh) [ci skip] * New translations en.yml (Faroese) [ci skip] * New translations en.yml (Esperanto) [ci skip] * New translations en.yml (Uyghur) [ci skip] * New translations en.yml (Chinese Traditional, Hong Kong) [ci skip] * New translations en.yml (Tatar) [ci skip] * New translations en.yml (Malayalam) [ci skip] * New translations en.yml (Breton) [ci skip] * New translations en.yml (Latin) [ci skip] * New translations en.yml (Bosnian) [ci skip] * New translations en.yml (French, Quebec) [ci skip] * New translations en.yml (Sinhala) [ci skip] * New translations en.yml (Cornish) [ci skip] * New translations en.yml (Kannada) [ci skip] * New translations en.yml (Scottish Gaelic) [ci skip] * New translations en.yml (Asturian) [ci skip] * New translations en.yml (Aragonese) [ci skip] * New translations en.yml (Occitan) [ci skip] * New translations en.yml (Serbian (Latin)) [ci skip] * New translations en.yml (Kurmanji (Kurdish)) [ci skip] * New translations en.yml (Sorani (Kurdish)) [ci skip] * New translations en.yml (Scots) [ci skip] * New translations en.yml (Igbo) [ci skip] * New translations en.yml (Corsican) [ci skip] * New translations en.yml (Sardinian) [ci skip] * New translations en.yml (Sanskrit) [ci skip] * New translations en.yml (Kabyle) [ci skip] * New translations en.yml (Ido) [ci skip] * New translations simple_form.en.yml (Romanian) [ci skip] * New translations simple_form.en.yml (French) [ci skip] * New translations simple_form.en.yml (Spanish) [ci skip] * New translations simple_form.en.yml (Afrikaans) [ci skip] * New translations simple_form.en.yml (Arabic) [ci skip] * New translations simple_form.en.yml (Belarusian) [ci skip] * New translations simple_form.en.yml (Bulgarian) [ci skip] * New translations simple_form.en.yml (Catalan) [ci skip] * New translations simple_form.en.yml (Czech) [ci skip] * New translations simple_form.en.yml (Danish) [ci skip] * New translations simple_form.en.yml (German) [ci skip] * New translations simple_form.en.yml (Greek) [ci skip] * New translations simple_form.en.yml (Frisian) [ci skip] * New translations simple_form.en.yml (Basque) [ci skip] * New translations simple_form.en.yml (Finnish) [ci skip] * New translations simple_form.en.yml (Irish) [ci skip] * New translations simple_form.en.yml (Hebrew) [ci skip] * New translations simple_form.en.yml (Hungarian) [ci skip] * New translations simple_form.en.yml (Armenian) [ci skip] * New translations simple_form.en.yml (Italian) [ci skip] * New translations simple_form.en.yml (Japanese) [ci skip] * New translations simple_form.en.yml (Georgian) [ci skip] * New translations simple_form.en.yml (Korean) [ci skip] * New translations simple_form.en.yml (Lithuanian) [ci skip] * New translations simple_form.en.yml (Macedonian) [ci skip] * New translations simple_form.en.yml (Dutch) [ci skip] * New translations simple_form.en.yml (Norwegian) [ci skip] * New translations simple_form.en.yml (Punjabi) [ci skip] * New translations simple_form.en.yml (Polish) [ci skip] * New translations simple_form.en.yml (Portuguese) [ci skip] * New translations simple_form.en.yml (Russian) [ci skip] * New translations simple_form.en.yml (Slovak) [ci skip] * New translations simple_form.en.yml (Slovenian) [ci skip] * New translations simple_form.en.yml (Albanian) [ci skip] * New translations simple_form.en.yml (Serbian (Cyrillic)) [ci skip] * New translations simple_form.en.yml (Swedish) [ci skip] * New translations simple_form.en.yml (Turkish) [ci skip] * New translations simple_form.en.yml (Ukrainian) [ci skip] * New translations simple_form.en.yml (Chinese Simplified) [ci skip] * New translations simple_form.en.yml (Chinese Traditional) [ci skip] * New translations simple_form.en.yml (Urdu (Pakistan)) [ci skip] * New translations simple_form.en.yml (Vietnamese) [ci skip] * New translations simple_form.en.yml (Galician) [ci skip] * New translations simple_form.en.yml (Icelandic) [ci skip] * New translations simple_form.en.yml (Portuguese, Brazilian) [ci skip] * New translations simple_form.en.yml (Indonesian) [ci skip] * New translations simple_form.en.yml (Persian) [ci skip] * New translations simple_form.en.yml (Tamil) [ci skip] * New translations simple_form.en.yml (Spanish, Argentina) [ci skip] * New translations simple_form.en.yml (Spanish, Mexico) [ci skip] * New translations simple_form.en.yml (Bengali) [ci skip] * New translations simple_form.en.yml (Marathi) [ci skip] * New translations simple_form.en.yml (Thai) [ci skip] * New translations simple_form.en.yml (Croatian) [ci skip] * New translations simple_form.en.yml (Norwegian Nynorsk) [ci skip] * New translations simple_form.en.yml (Kazakh) [ci skip] * New translations simple_form.en.yml (Estonian) [ci skip] * New translations simple_form.en.yml (Latvian) [ci skip] * New translations simple_form.en.yml (Hindi) [ci skip] * New translations simple_form.en.yml (Malay) [ci skip] * New translations simple_form.en.yml (Telugu) [ci skip] * New translations simple_form.en.yml (English, United Kingdom) [ci skip] * New translations simple_form.en.yml (Burmese) [ci skip] * New translations simple_form.en.yml (Welsh) [ci skip] * New translations simple_form.en.yml (Faroese) [ci skip] * New translations simple_form.en.yml (Esperanto) [ci skip] * New translations simple_form.en.yml (Uyghur) [ci skip] * New translations simple_form.en.yml (Chinese Traditional, Hong Kong) [ci skip] * New translations simple_form.en.yml (Tatar) [ci skip] * New translations simple_form.en.yml (Malayalam) [ci skip] * New translations simple_form.en.yml (Breton) [ci skip] * New translations simple_form.en.yml (Latin) [ci skip] * New translations simple_form.en.yml (Bosnian) [ci skip] * New translations simple_form.en.yml (French, Quebec) [ci skip] * New translations simple_form.en.yml (Sinhala) [ci skip] * New translations simple_form.en.yml (Cornish) [ci skip] * New translations simple_form.en.yml (Kannada) [ci skip] * New translations simple_form.en.yml (Scottish Gaelic) [ci skip] * New translations simple_form.en.yml (Asturian) [ci skip] * New translations simple_form.en.yml (Aragonese) [ci skip] * New translations simple_form.en.yml (Occitan) [ci skip] * New translations simple_form.en.yml (Serbian (Latin)) [ci skip] * New translations simple_form.en.yml (Kurmanji (Kurdish)) [ci skip] * New translations simple_form.en.yml (Sorani (Kurdish)) [ci skip] * New translations simple_form.en.yml (Scots) [ci skip] * New translations simple_form.en.yml (Igbo) [ci skip] * New translations simple_form.en.yml (Corsican) [ci skip] * New translations simple_form.en.yml (Sardinian) [ci skip] * New translations simple_form.en.yml (Sanskrit) [ci skip] * New translations simple_form.en.yml (Kabyle) [ci skip] * New translations simple_form.en.yml (Ido) [ci skip] * New translations en.json (Afrikaans) [ci skip] * New translations en.json (German) [ci skip] * New translations en.json (German) [ci skip] * New translations en.json (Korean) [ci skip] * New translations en.yml (Korean) [ci skip] * New translations simple_form.en.yml (Korean) [ci skip] --- app/javascript/flavours/glitch/locales/af.json | 7 +- app/javascript/flavours/glitch/locales/de.json | 108 +++++++++++++++++++++++++ app/javascript/flavours/glitch/locales/ko.json | 14 ++++ config/locales-glitch/ko.yml | 12 +++ config/locales-glitch/simple_form.ko.yml | 3 + 5 files changed, 138 insertions(+), 6 deletions(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/locales/af.json b/app/javascript/flavours/glitch/locales/af.json index 4d243f94c..9e26dfeeb 100644 --- a/app/javascript/flavours/glitch/locales/af.json +++ b/app/javascript/flavours/glitch/locales/af.json @@ -1,6 +1 @@ -{ - "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", - "settings.content_warnings": "Content warnings", - "settings.preferences": "Preferences" -} +{} \ No newline at end of file diff --git a/app/javascript/flavours/glitch/locales/de.json b/app/javascript/flavours/glitch/locales/de.json index 4d243f94c..d4939cc20 100644 --- a/app/javascript/flavours/glitch/locales/de.json +++ b/app/javascript/flavours/glitch/locales/de.json @@ -1,6 +1,114 @@ { + "about.fork_disclaimer": "Glitch-soc ist freie, quelloffene Software geforkt von Mastodon.", + "account.add_account_note": "Notiz für @{name} hinzufügen", + "account.disclaimer_full": "Die folgenden Informationen könnten das Profil des Nutzers unvollständig wiedergeben.", + "account.follows": "Folgt", + "account.joined": "Beigetreten am {date}", + "account.suspended_disclaimer_full": "Dieser Nutzer wurde durch einen Moderator gesperrt.", + "account.view_full_profile": "Vollständiges Profil anzeigen", + "account_note.cancel": "Abbrechen", + "account_note.edit": "Bearbeiten", + "account_note.glitch_placeholder": "Kein Kommentar angegeben", + "account_note.save": "Speichern", + "advanced_options.icon_title": "Erweiterte Optionen", + "advanced_options.local-only.long": "Nicht auf anderen Instanzen posten", + "advanced_options.local-only.short": "Nur lokal", + "advanced_options.local-only.tooltip": "Dieser Post ist nur lokal", + "advanced_options.threaded_mode.long": "Öffnet automatisch eine Antwort beim Schreiben", + "advanced_options.threaded_mode.short": "Thread-Modus", + "advanced_options.threaded_mode.tooltip": "Thread-Modus aktiviert", + "boost_modal.missing_description": "Dieser Toot enthält Medien ohne Beschreibung", + "column.favourited_by": "Favorisiert von", + "column.heading": "Sonstiges", + "column.reblogged_by": "Geteilt von", + "column.subheading": "Sonstige Optionen", + "column_header.profile": "Profil", + "column_subheading.lists": "Listen", + "column_subheading.navigation": "Navigation", + "community.column_settings.allow_local_only": "Nur-lokale Toots anzeigen", + "compose.attach": "Anhängen...", + "compose.attach.doodle": "Etwas zeichnen", + "compose.attach.upload": "Eine Datei hochladen", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Unformatierter Text", + "compose_form.poll.multiple_choices": "Mehrfachauswahl erlauben", + "compose_form.poll.single_choice": "Eine Auswahl erlauben", + "compose_form.spoiler": "Text hinter Warnung verbergen", + "confirmation_modal.do_not_ask_again": "Nicht erneut nach Bestätigung fragen", + "confirmations.deprecated_settings.confirm": "Mastodon-Einstellungen verwenden", + "confirmations.deprecated_settings.message": "Einige der von dir verwendeten, glitch-soc-spezifischen {app_settings} wurden durch Mastodon {preferences} ersetzt und werden überschrieben:", + "confirmations.missing_media_description.confirm": "Trotzdem absenden", + "confirmations.missing_media_description.edit": "Anhänge bearbeiten", + "confirmations.missing_media_description.message": "Mindestens einem Anhang fehlt eine Beschreibung. Denke darüber nach, alle Anhänge für Sehbeeinträchtigte zu beschreiben, bevor du den Toot absendest.", + "confirmations.unfilter.author": "Urheber", + "confirmations.unfilter.confirm": "Anzeigen", + "confirmations.unfilter.edit_filter": "Filter bearbeiten", + "confirmations.unfilter.filters": "Passende{count, plural, one {r} other {}} Filter", + "content-type.change": "Inhaltstyp", + "direct.group_by_conversations": "Nach Unterhaltung gruppieren", + "endorsed_accounts_editor.endorsed_accounts": "Empfohlene Konten", + "favourite_modal.combo": "Mit {combo} wird dieses Fenster beim nächsten Mal nicht mehr angezeigt", + "getting_started.onboarding": "Führe mich herum", + "home.column_settings.advanced": "Erweitert", + "home.column_settings.filter_regex": "Mit regulären Ausdrücken herausfiltern", + "home.column_settings.show_direct": "Direktnachrichten anzeigen", + "home.settings": "Spalteneinstellungen", + "keyboard_shortcuts.bookmark": "zu Lesezeichen hinzufügen", + "keyboard_shortcuts.secondary_toot": "Toot mit sekundärer Privatsphäreeinstellung absenden", + "keyboard_shortcuts.toggle_collapse": "Toots ein-/ausklappen", + "layout.auto": "Automatisch", + "layout.desktop": "Desktop", + "layout.hint.auto": "Automatisch das Layout anhand der Einstellung \"Erweitertes Webinterface verwenden\" und Bildschirmgröße auswählen.", + "layout.hint.desktop": "Das mehrspaltige Layout verwenden, unabhängig von der Einstellung \"Erweitertes Webinterface verwenden\".", + "layout.hint.single": "Das einspaltige Layout verwenden, unabhängig von der Einstellung \"Erweitertes Webinterface verwenden\".", + "layout.single": "Mobil", + "media_gallery.sensitive": "Empfindlich", + "moved_to_warning": "Dieses Konto ist als verschoben zu {moved_to_link} markiert und akzeptiert daher keine neuen Follower.", + "navigation_bar.app_settings": "App-Einstellungen", + "navigation_bar.featured_users": "Empfohlene Nutzer", + "navigation_bar.info": "Erweiterte Informationen", + "navigation_bar.keyboard_shortcuts": "Tastaturkürzel", + "navigation_bar.misc": "Sonstiges", + "notification.markForDeletion": "Zum Entfernen auswählen", + "notification_purge.btn_all": "Alle\nauswählen", + "notification_purge.btn_apply": "Ausgewählte\nlöschen", + "notification_purge.btn_invert": "Auswahl\numkehren", + "notification_purge.btn_none": "Auswahl\naufheben", + "notification_purge.start": "Benachrichtigung-Aufräumen-Modus starten", + "notifications.marked_clear": "Ausgewählte Benachrichtigungen löschen", + "notifications.marked_clear_confirmation": "Möchtest du wirklich alle auswählten Benachrichtigungen für immer entfernen?", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "settings.auto_collapse_lengthy": "Lange Toots", + "settings.auto_collapse_media": "Toots mit Anhängen", + "settings.auto_collapse_notifications": "Benachrichtigungen", + "settings.auto_collapse_reblogs": "Geteilte Toots", + "settings.auto_collapse_replies": "Antworten", + "settings.close": "Schließen", + "settings.collapsed_statuses": "Eingeklappte Toots", + "settings.compose_box_opts": "Verfassen-Box", + "settings.confirm_before_clearing_draft": "Zeige einen Bestätigungsdialog, bevor der derzeitige Entwurf verworfen wird", + "settings.confirm_boost_missing_media_description": "Zeige einen Bestätigungsdialog, bevor Toots mit Anhängen ohne Beschreibung geteilt werden", + "settings.confirm_missing_media_description": "Zeige einen Bestätigungsdialog, bevor Toots mit Anhängen ohne Beschreibung abgesendet werden", "settings.content_warnings": "Content warnings", + "settings.content_warnings.regexp": "Regulärer Ausdruck", + "settings.content_warnings_filter": "Inhaltswarnungen, die nicht ausgeklappt werden sollen:", + "settings.content_warnings_media_outside": "Medienanhänge außerhalb von Inhaltswarnungen anzeigen", + "settings.content_warnings_media_outside_hint": "Das ursprüngliche Verhalten von Mastodon wiederherstellen, in welchem Inhaltswarnungen keine Auswirkungen auf Anhänge haben", + "settings.content_warnings_shared_state": "Inhalt aller Kopien auf einmal ein-/ausblenden", + "settings.content_warnings_shared_state_hint": "Das ursprüngliche Verhalten von Mastodon wiederhertstellen, in welchem der Inhaltswarnungs-Knopf alle Kopien eines Posts auf einmal ein-/ausklappt. Das wird das automatische Einklappen jedweder Kopie eines Toots mit ausgeklappter Inhaltswarnung", + "settings.content_warnings_unfold_opts": "Optionen zum automatischen Ausklappen", + "settings.deprecated_setting": "Diese Einstellung wird nun von Mastodons {settings_page_link} gesteuert", + "settings.enable_collapsed": "Eingeklappte Toots aktivieren", + "settings.enable_collapsed_hint": "Eingeklappte Posts haben einen Teil ihres Inhalts verborgen, um weniger Platz am Bildschirm einzunehmen. Das ist zusätzlich zur Inhaltswarnfunktion", + "settings.enable_content_warnings_auto_unfold": "Inhaltswarnungen automatisch ausklappen", + "settings.filters": "Filter", + "settings.general": "Allgemein", + "settings.hicolor_privacy_icons": "Eingefärbte Privatsphäre-Symbole", + "settings.hicolor_privacy_icons.hint": "Zeige Privatsphäre-Symbole in hellen und leicht zu unterscheidenden Farben", + "settings.image_backgrounds": "Bildhintergründe", + "settings.image_backgrounds_media": "Vorschau eingeklappter Toot-Anhänge", + "settings.image_backgrounds_media_hint": "Wenn der Post Anhänge hat, wird der erste als Hintergrund verwendet", "settings.preferences": "Preferences" } diff --git a/app/javascript/flavours/glitch/locales/ko.json b/app/javascript/flavours/glitch/locales/ko.json index c22dfb072..de54ff5a6 100644 --- a/app/javascript/flavours/glitch/locales/ko.json +++ b/app/javascript/flavours/glitch/locales/ko.json @@ -1,7 +1,9 @@ { + "about.fork_disclaimer": "글리치는 마스토돈에서 포크한 자유 오픈소스 소프트웨어입니다.", "account.add_account_note": "@{name} 님에 대한 메모 추가", "account.disclaimer_full": "아래에 있는 정보들은 사용자의 프로필을 완벽하게 나타내지 못하고 있을 수도 있습니다.", "account.follows": "팔로우", + "account.joined": "{date}에 가입함", "account.suspended_disclaimer_full": "이 사용자는 중재자에 의해 정지되었습니다.", "account.view_full_profile": "전체 프로필 보기", "account_note.cancel": "취소", @@ -33,6 +35,8 @@ "compose_form.poll.single_choice": "하나만 선택 가능", "compose_form.spoiler": "경고 메시지로 숨기기", "confirmation_modal.do_not_ask_again": "다음부터 확인창을 띄우지 않기", + "confirmations.deprecated_settings.confirm": "마스토돈 설정 사용", + "confirmations.deprecated_settings.message": "사용하던 몇몇 기기별 글리치 {app_settings}은 마스토돈 {preferences}으로 대체되었습니다:", "confirmations.missing_media_description.confirm": "그냥 보내기", "confirmations.missing_media_description.edit": "미디어 편집", "confirmations.missing_media_description.message": "하나 이상의 미디어에 대해 설명을 작성하지 않았습니다. 시각장애인을 위해 모든 미디어에 설명을 추가하는 것을 고려해주세요.", @@ -41,6 +45,7 @@ "confirmations.unfilter.edit_filter": "필터 편집", "confirmations.unfilter.filters": "적용된 {count, plural, one {필터} other {필터들}}", "content-type.change": "콘텐트 타입", + "direct.group_by_conversations": "대화별로 묶기", "endorsed_accounts_editor.endorsed_accounts": "추천하는 계정들", "favourite_modal.combo": "다음엔 {combo}를 눌러 건너뛸 수 있습니다", "getting_started.onboarding": "둘러보기", @@ -61,6 +66,8 @@ "moved_to_warning": "이 계정은 {moved_to_link}로 이동한 것으로 표시되었고, 새 팔로우를 받지 않는 것 같습니다.", "navigation_bar.app_settings": "앱 설정", "navigation_bar.featured_users": "추천된 계정들", + "navigation_bar.info": "추가 정보", + "navigation_bar.keyboard_shortcuts": "키보드 단축기", "navigation_bar.misc": "다양한 옵션들", "notification.markForDeletion": "삭제하기 위해 표시", "notification_purge.btn_all": "전체선택", @@ -107,8 +114,14 @@ "settings.content_warnings": "열람주의", "settings.content_warnings.regexp": "정규표현식", "settings.content_warnings_filter": "자동으로 펼치지 않을 열람주의 문구:", + "settings.content_warnings_media_outside": "미디어 첨부를 열람주의 바깥에 보이기", + "settings.content_warnings_media_outside_hint": "마스토돈 원본처럼 열람주의 토글이 미디어 첨부에는 영향을 미치지 않게 합니다", + "settings.content_warnings_shared_state": "동일한 글의 열람주의를 한번에 열고 닫기", + "settings.content_warnings_shared_state_hint": "마스토돈 원본처럼 열람주의 버튼이 동일한 모든 글에 대해 영향을 미치게 합니다. 펼쳐진 열람주의 글이 자동으로 다시 접히는 것을 방지합니다", + "settings.content_warnings_unfold_opts": "자동 펼치기 옵션", "settings.deprecated_setting": "이 설정은 마스토돈의 {settings_page_link}에서 관리됩니다", "settings.enable_collapsed": "접힌 글 활성화", + "settings.enable_collapsed_hint": "접힌 게시물을 콘텐츠의 일부분을 가려서 공간을 적게 차지합니다. 열람주의 기능과는 다릅니다", "settings.enable_content_warnings_auto_unfold": "자동으로 열람주의 펼치기", "settings.filters": "필터", "settings.general": "일반", @@ -116,6 +129,7 @@ "settings.hicolor_privacy_icons.hint": "공개설정 아이콘들을 밝고 구분하기 쉬운 색으로 표시합니다", "settings.image_backgrounds": "이미지 배경", "settings.image_backgrounds_media": "접힌 글의 미디어 미리보기", + "settings.image_backgrounds_media_hint": "게시물이 미디어 첨부를 포함한다면, 첫번째를 배경으로 사용합니다", "settings.image_backgrounds_users": "접힌 글에 이미지 배경 주기", "settings.inline_preview_cards": "외부 링크에 대한 미리보기 카드를 같이 표시", "settings.layout": "레이아웃:", diff --git a/config/locales-glitch/ko.yml b/config/locales-glitch/ko.yml index bc9c4e86b..dd8da3792 100644 --- a/config/locales-glitch/ko.yml +++ b/config/locales-glitch/ko.yml @@ -8,9 +8,17 @@ ko: captcha_enabled: desc_html: 이것은 hCaptcha의 외부 스크립트에 의존합니다, 이것은 개인정보 보호에 위협을 가할 수도 있습니다. 추가적으로, 이것은 몇몇 사람들(특히나 장애인들)에게 가입 절차의 접근성을 심각하게 떨어트릴 수 있습니다. 이러한 이유로, 대체제로 승인 전용이나 초대제를 통한 가입을 고려해보세요.
한정된 사용만 가능한 초대장을 통한 가입자들은 CAPTCHA를 풀지 않아도 됩니다 title: 새로운 사용자가 계정 확인을 위해서는 CAPTCHA를 풀어야 하도록 합니다 + flavour_and_skin: + title: 풍미와 스킨 hide_followers_count: desc_html: 사용자 프로필에 팔로워 수를 표시하지 않습니다 title: 팔로워 수 숨기기 + other: + preamble: 다른 곳에 맞지 않는 다양한 글리치 전용 설정들. + title: 기타 + outgoing_spoilers: + desc_html: 툿을 연합할 때 열람주의가 없다면 여기 적힌 열람주의를 추가합니다. 다른 서버에서 열람주의를 설정하기를 요하는 주제에 특화된 서버라면 유용합니다. 미디어 또한 민감함으로 설정됩니다. + title: 나가는 툿에 대한 열람주의 show_reblogs_in_public_timelines: desc_html: 공개글의 공개적인 부스트를 로컬과 공개 타임라인에 표시합니다. title: 부스트를 공개 타임라인에 표시 @@ -20,6 +28,10 @@ ko: trending_status_cw: desc_html: 유행하는 게시물이 활성화 되었을 때, 열람주의가 설정된 글도 허용합니다. 이 설정의 변경은 소급 적용되지 않습니다. title: 열람주의를 가진 글이 유행에 오를 수 있도록 허용 + appearance: + localization: + glitch_guide_link: https://crowdin.com/project/glitch-soc + glitch_guide_link_text: 글리치도 마찬가지입니다! auth: captcha_confirmation: hint_html: 한가지 단계가 남았습니다! 계정을 확인하기 위해서는, CAPTCHA를 풀어야 합니다. 질문이 있거나 계정 확인 과정에서 도움을 받고 싶은 경우 서버의 관리자에게 연락해서 해결할 수 있습니다. diff --git a/config/locales-glitch/simple_form.ko.yml b/config/locales-glitch/simple_form.ko.yml index b7d675aa5..95e5b9782 100644 --- a/config/locales-glitch/simple_form.ko.yml +++ b/config/locales-glitch/simple_form.ko.yml @@ -1,12 +1,15 @@ --- ko: simple_form: + glitch_only: 글리치 hints: defaults: + fields: 최대 %{count}개의 항목을 프로필에 표 형태로 표시할 수 있습니다 setting_default_content_type_html: 게시물을 작성할 때, 형식을 지정하지 않았다면, 생 HTML이라고 가정합니다 setting_default_content_type_markdown: 게시물을 작성할 때, 형식을 지정하지 않았다면, 마크다운이라고 가정합니다 setting_default_content_type_plain: 게시물을 작성할 때, 형식을 지정하지 않았다면, 일반적인 텍스트라고 가정합니다. (마스토돈의 기본 동작) setting_default_language: 작성하는 게시물의 언어는 자동으로 설정될 수 있습니다, 하지만 언제나 정확하지는 않습니다 + setting_hide_followers_count: 나를 포함해서 모든 사람들에게서 내 팔로워 수를 숨깁니다. 몇몇 앱에서는 팔로워 수가 음수로 표시될 수 있습니다. setting_skin: 선택한 마스토돈 풍미의 스킨을 바꿉니다 labels: defaults: -- cgit From 8b8ca8d71b2e4af1e30be20b78bdc504cff6ae5a Mon Sep 17 00:00:00 2001 From: Claire Date: Thu, 22 Dec 2022 07:54:50 +0100 Subject: New Crowdin updates (#2036) * New translations en.json (Afrikaans) [ci skip] * New translations en.json (Korean) [ci skip] * New translations simple_form.en.yml (Korean) [ci skip] --- app/javascript/flavours/glitch/locales/af.json | 2 +- app/javascript/flavours/glitch/locales/ko.json | 1 + config/locales-glitch/simple_form.ko.yml | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/locales/af.json b/app/javascript/flavours/glitch/locales/af.json index 9e26dfeeb..0967ef424 100644 --- a/app/javascript/flavours/glitch/locales/af.json +++ b/app/javascript/flavours/glitch/locales/af.json @@ -1 +1 @@ -{} \ No newline at end of file +{} diff --git a/app/javascript/flavours/glitch/locales/ko.json b/app/javascript/flavours/glitch/locales/ko.json index de54ff5a6..f523a3ea3 100644 --- a/app/javascript/flavours/glitch/locales/ko.json +++ b/app/javascript/flavours/glitch/locales/ko.json @@ -29,6 +29,7 @@ "compose.attach": "첨부…", "compose.attach.doodle": "뭔가 그려보세요", "compose.attach.upload": "파일 업로드", + "compose.content-type.html": "HTML", "compose.content-type.markdown": "마크다운", "compose.content-type.plain": "일반 텍스트", "compose_form.poll.multiple_choices": "여러 개 선택 가능", diff --git a/config/locales-glitch/simple_form.ko.yml b/config/locales-glitch/simple_form.ko.yml index 95e5b9782..0390b7043 100644 --- a/config/locales-glitch/simple_form.ko.yml +++ b/config/locales-glitch/simple_form.ko.yml @@ -14,6 +14,7 @@ ko: labels: defaults: setting_default_content_type: 게시물의 기본 포맷 + setting_default_content_type_html: HTML setting_default_content_type_markdown: 마크다운 setting_default_content_type_plain: 일반 텍스트 setting_favourite_modal: 관심글을 지정할 때 확인 창을 띄웁니다(글리치 풍미에만 적용됨) -- cgit From f79ab85a6ab5f3026bae305f868996cd96ab7c65 Mon Sep 17 00:00:00 2001 From: Claire Date: Thu, 22 Dec 2022 13:51:16 +0100 Subject: New Crowdin updates (#2037) * New translations en.json (German) [ci skip] * New translations en.json (French) [ci skip] * New translations en.yml (French) [ci skip] * New translations simple_form.en.yml (French) [ci skip] --- app/javascript/flavours/glitch/locales/de.json | 8 ++++--- app/javascript/flavours/glitch/locales/fr.json | 32 +++++++++++++++++++++++++- config/locales-glitch/fr.yml | 31 +++++++++++++++++++++++++ config/locales-glitch/simple_form.fr.yml | 10 ++++++++ 4 files changed, 77 insertions(+), 4 deletions(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/locales/de.json b/app/javascript/flavours/glitch/locales/de.json index d4939cc20..3dd59a43e 100644 --- a/app/javascript/flavours/glitch/locales/de.json +++ b/app/javascript/flavours/glitch/locales/de.json @@ -72,12 +72,14 @@ "navigation_bar.misc": "Sonstiges", "notification.markForDeletion": "Zum Entfernen auswählen", "notification_purge.btn_all": "Alle\nauswählen", - "notification_purge.btn_apply": "Ausgewählte\nlöschen", + "notification_purge.btn_apply": "Ausgewählte\nentfernen", "notification_purge.btn_invert": "Auswahl\numkehren", "notification_purge.btn_none": "Auswahl\naufheben", - "notification_purge.start": "Benachrichtigung-Aufräumen-Modus starten", - "notifications.marked_clear": "Ausgewählte Benachrichtigungen löschen", + "notification_purge.start": "Benachrichtigungen-Aufräumen-Modus starten", + "notifications.marked_clear": "Ausgewählte Benachrichtigungen entfernen", "notifications.marked_clear_confirmation": "Möchtest du wirklich alle auswählten Benachrichtigungen für immer entfernen?", + "onboarding.done": "Fertig", + "onboarding.next": "Weiter", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", "settings.auto_collapse_lengthy": "Lange Toots", diff --git a/app/javascript/flavours/glitch/locales/fr.json b/app/javascript/flavours/glitch/locales/fr.json index e67fcfebf..4bda676a0 100644 --- a/app/javascript/flavours/glitch/locales/fr.json +++ b/app/javascript/flavours/glitch/locales/fr.json @@ -1,8 +1,38 @@ { "account.add_account_note": "Ajouter une note pour @{name}", "account.follows": "Abonnements", + "column_header.profile": "Profil", + "column_subheading.lists": "Listes", + "column_subheading.navigation": "Navigation", + "compose.attach": "Joindre…", + "compose.attach.doodle": "Dessiner quelque chose", + "compose.attach.upload": "Téléverser un fichier", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Text brut", + "compose_form.poll.multiple_choices": "Choix multiples", + "compose_form.poll.single_choice": "Choix unique", + "confirmations.missing_media_description.confirm": "Envoyer quand même", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_six.admin": "Votre admin d’instance est {admin}.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.various_app": "applications mobiles", + "settings.auto_collapse_reblogs": "Boosts", + "settings.auto_collapse_replies": "Réponses", + "settings.close": "Fermer", "settings.content_warnings": "Content warnings", - "settings.preferences": "Preferences" + "settings.content_warnings.regexp": "Expression rationnelle", + "settings.filters": "Filtres", + "settings.general": "Général", + "settings.notifications_opts": "Options des notifications", + "settings.pop_in_left": "Gauche", + "settings.pop_in_right": "Droite", + "settings.preferences": "Preferences", + "settings.side_arm.none": "Aucun", + "settings.status_icons_language": "Indicateur de langue", + "settings.status_icons_media": "Indicateur de médias et sondage", + "settings.status_icons_reply": "Indicateur de réponses", + "status.sensitive_toggle": "Cliquer pour voir", + "web_app_crash.debug_info": "Informations de débogage", + "web_app_crash.settings": "paramètres" } diff --git a/config/locales-glitch/fr.yml b/config/locales-glitch/fr.yml index 3c5b41b9e..44e032e66 100644 --- a/config/locales-glitch/fr.yml +++ b/config/locales-glitch/fr.yml @@ -1,11 +1,42 @@ --- fr: admin: + custom_emojis: + batch_copy_error: 'Une erreur est survenue lors de la copie de certains des émojis sélectionnés : %{message}' + batch_error: 'Une erreur est survenue : %{message}' settings: + captcha_enabled: + desc_html: Ceci se base sur des scripts externes venant de hCaptcha, ce qui peut engendrer des soucis de sécurité et de confidentialité. De plus, cela peut rendre l'inscription beaucoup moins accessible pour certaines personnes (comme les personnes handicapées). Pour ces raisons, veuillez préférer des mesures alternatives telles que l'inscription sur acceptation ou invitation.
Les utilisateurs qui ont été invités via une invitation à usage limité n'auront pas à résoudre un CAPTCHA + title: Obliger les nouveaux utilisateurs à résoudre un CAPTCHA pour vérifier leur compte + flavour_and_skin: + title: Apparence et thèmes + hide_followers_count: + desc_html: Ne pas afficher le nombre d'abonné·e·s sur les profils des utilisateurs + title: Cacher le nombre d'abonné·e·s + other: + preamble: Divers autres paramètres de glitch-soc. + title: Autres outgoing_spoilers: desc_html: Ajouter un avertissement de contenu à tous les messages lorsqu'ils sont fédérés s'ils n'en possèdent pas déjà. Cela peut être utile si votre serveur est spécialisé dans un type de contenu sur lequel les autres serveurs pourraient vouloir un Avertissement de Contenu. Les médias seront également marqués comme sensibles. title: Avertissement de contenu pour les messages sortants + show_reblogs_in_public_timelines: + desc_html: Afficher les partages publics de posts publics dans le fil local et global. + title: Afficher les partages dans les fils publics + show_replies_in_public_timelines: + desc_html: En plus des réponses à soi-même (threads), afficher les réponses publiques dans le fil local et global. + title: Afficher les réponses dans les fils publics + trending_status_cw: + desc_html: Quand les posts en tendance sont activés, permettre aux posts avec des avertissements de contenu (CW) d'être éligibles. Les changements effectués sur ce paramètre ne sont pas rétroactifs. + title: Autoriser les posts avec des avertissements de contenu à être en tendances appearance: localization: glitch_guide_link: https://fr.crowdin.com/project/glitch-soc glitch_guide_link_text: Et c'est pareil avec glitch-soc ! + auth: + captcha_confirmation: + hint_html: Plus qu'une étape ! Pour vérifier votre compte sur ce serveur, vous devez résoudre un CAPTCHA. Vous pouvez Date: Fri, 23 Dec 2022 10:15:47 +0100 Subject: New Crowdin updates (#2043) * New translations en.json (German) [ci skip] * New translations en.yml (German) [ci skip] * New translations simple_form.en.yml (German) [ci skip] * New translations en.json (German) [ci skip] * New translations en.yml (German) [ci skip] --- app/javascript/flavours/glitch/locales/de.json | 91 +++++++++++++++++++++++++- config/locales-glitch/de.yml | 41 ++++++++++++ config/locales-glitch/simple_form.de.yml | 26 ++++++++ 3 files changed, 155 insertions(+), 3 deletions(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/locales/de.json b/app/javascript/flavours/glitch/locales/de.json index 1c592e927..76bd518fb 100644 --- a/app/javascript/flavours/glitch/locales/de.json +++ b/app/javascript/flavours/glitch/locales/de.json @@ -80,8 +80,27 @@ "notifications.marked_clear_confirmation": "Möchtest du wirklich alle auswählten Benachrichtigungen für immer entfernen?", "onboarding.done": "Fertig", "onboarding.next": "Weiter", - "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", - "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_five.public_timelines": "Die lokale Timeline zeigt öffentliche Posts von allen auf {domain}. Die föderierte Timeline zeigt öffentliche Posts von allen, denen Leute auf {domain} folgen. Das sind die öffentlichen Timelines, eine tolle Möglichkeit, neue Leute zu entdecken.", + "onboarding.page_four.home": "Die Startseite zeigt Posts von Leuten an, denen du folgst.", + "onboarding.page_four.notifications": "Die Benachrichtigungs-Spalte zeigt an, wenn jemand mit dir interagiert.", + "onboarding.page_one.federation": "{domain} ist eine \"Instanz\" von Mastodon. Mastodon ist ein Netzwerk aus unabhängigen Servern, die zusammen ein größeres soziales Netzwerk bilden. Diese Server nennen wir Instanzen.", + "onboarding.page_one.handle": "Du bist auf {domain}, also ist dein vollständiger Nutzername {handle}", + "onboarding.page_one.welcome": "Willkommen auf {domain}!", + "onboarding.page_six.admin": "Dein Instanz-Admin ist {admin}.", + "onboarding.page_six.almost_done": "Fast geschafft...", + "onboarding.page_six.appetoot": "Bon Appetoot!", + "onboarding.page_six.apps_available": "Es gibt {apps} für iOS, Android und andere Plattformen.", + "onboarding.page_six.github": "{domain} läuft auf glitch-soc. glitch-soc ist ein freundlicher {fork} von {Mastodon}, und ist mit jeder Mastodon-App oder -Instanz kompatibel. glitch-soc ist komplett frei und quelloffen. Auf {github} kannst du Fehler melden, Features anfragen oder Code beitragen.", + "onboarding.page_six.guidelines": "Community-Richtlinien", + "onboarding.page_six.read_guidelines": "Bitte lies {domain}'s {guidelines}!", + "onboarding.page_six.various_app": "mobile Apps", + "onboarding.page_three.profile": "Bearbeite dein Profil, um deinen Avatar, \"Über mich\" und den Anzeigenamen zu ändern. Dort findest du auch andere Einstellungen.", + "onboarding.page_three.search": "Benutze die Suchleiste, um Leute zu finden und Hashtags anzusehen, wie etwa {illustration} und {introductions}. Um nach einer Person zu suchen, die nicht auf dieser Instanz ist, benutze deren vollständigen Nutzername.", + "onboarding.page_two.compose": "Schreibe Posts in der Verfassen-Spalte. Mit den Symbolen unten kannst du Bilder hochladen, Privatsphäre-Einstellungen ändern, und Inhaltswarnungen hinzufügen.", + "onboarding.skip": "Überspringen", + "settings.always_show_spoilers_field": "Das Inhaltswarnungs-Feld immer aktivieren", + "settings.auto_collapse": "Automatisches Einklappen", + "settings.auto_collapse_all": "Alles", "settings.auto_collapse_lengthy": "Lange Toots", "settings.auto_collapse_media": "Toots mit Anhängen", "settings.auto_collapse_notifications": "Benachrichtigungen", @@ -111,5 +130,71 @@ "settings.image_backgrounds": "Bildhintergründe", "settings.image_backgrounds_media": "Vorschau eingeklappter Toot-Anhänge", "settings.image_backgrounds_media_hint": "Wenn der Post Anhänge hat, wird der erste als Hintergrund verwendet", - "settings.preferences": "Preferences" + "settings.image_backgrounds_users": "Eingeklappten Toots einen Bild-Hintergrund geben", + "settings.inline_preview_cards": "Eingebettete Vorschaukarten für externe Links", + "settings.layout": "Layout:", + "settings.layout_opts": "Layout-Optionen", + "settings.media": "Medien", + "settings.media_fullwidth": "Medienvorschau in voller Breite", + "settings.media_letterbox": "Mediengröße anpassen", + "settings.media_letterbox_hint": "Medien runterskalieren und einpassen um die Bildbehälter zu füllen anstatt zu strecken und zuzuschneiden", + "settings.media_reveal_behind_cw": "Empfindliche Medien hinter Inhaltswarnungen standardmäßig anzeigen", + "settings.notifications.favicon_badge": "Favicon-Badge für ungelesene Benachrichtigungen", + "settings.notifications.favicon_badge.hint": "Ein Badge für ungelesene Benachrichtigungen zum Favicon hinzufügen", + "settings.notifications.tab_badge": "Badge für ungelesene Benachrichtigungen", + "settings.notifications.tab_badge.hint": "Ein Badge für ungelesene Benachrichtigungen in den Spaltensymbolen anzeigen, wenn die Benachrichtigungen nicht offen sind", + "settings.notifications_opts": "Benachrichtigungsoptionen", + "settings.pop_in_left": "Links", + "settings.pop_in_player": "Pop-In-Player aktivieren", + "settings.pop_in_position": "Position des Pop-In-Players:", + "settings.pop_in_right": "Rechts", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "\"re: \" beim Antworten an Inhaltswarnung voranstellen", + "settings.preselect_on_reply": "Nutzernamen bei Antwort vorauswählen", + "settings.preselect_on_reply_hint": "Beim Antworten auf eine Konversation alle Nutzernamen auswählen, die nach dem ersten kommen", + "settings.rewrite_mentions": "Erwähnungen in angezeigten Status umschreiben", + "settings.rewrite_mentions_acct": "Mit Nutzernamen und Domain umschreiben (wenn das Konto auf einer anderen Instanz ist)", + "settings.rewrite_mentions_no": "Erwähnungen nicht umschreiben", + "settings.rewrite_mentions_username": "Mit Nutzername umschreiben", + "settings.shared_settings_link": "Nutzereinstellungen", + "settings.show_action_bar": "Aktions-Knöpfe in eingeklappten Toots anzeigen", + "settings.show_content_type_choice": "Auswahl für die Inhaltsart beim Verfassen von Toots anzeigen", + "settings.show_reply_counter": "Schätzung der Antwortanzahl anzeigen", + "settings.side_arm": "Sekundärer Toot-Knopf:", + "settings.side_arm.none": "Nichts", + "settings.side_arm_reply_mode": "Beim Antworten auf einen Toot sollte der sekundäre Toot-Knopf:", + "settings.side_arm_reply_mode.copy": "Privatsphäre-Einstellung des zu beantwortenden Toot verwenden", + "settings.side_arm_reply_mode.keep": "Die eingestellte Privatsphäre beibehalten", + "settings.side_arm_reply_mode.restrict": "Privatsphäre-Einstellung auf die des zu beantwortenden Toot beschränken", + "settings.status_icons": "Toot-Symbole", + "settings.status_icons_language": "Sprach-Indikator", + "settings.status_icons_local_only": "\"nur Lokal\"-Indikator", + "settings.status_icons_media": "Medien- und Umfragen-Indikatoren", + "settings.status_icons_reply": "Antwort-Indikator", + "settings.status_icons_visibility": "Toot-Privatsphäre-Indikator", + "settings.swipe_to_change_columns": "Das Wechseln der Spalte durch Wischen erlauben (nur für die mobile Ansicht)", + "settings.tag_misleading_links": "Irreführende Links markieren", + "settings.tag_misleading_links.hint": "Füge eine visuelle Indikation mit dem Ziel-Host des Links zu jedem Link hinzu, bei dem dieser nicht explizit genannt wird", + "settings.wide_view": "Breite Ansicht (nur für den Desktop-Modus)", + "settings.wide_view_hint": "Verbreitert Spalten, um den verfügbaren Platz besser zu füllen.", + "status.collapse": "Einklappen", + "status.has_audio": "Hat angehängte Audiodateien", + "status.has_pictures": "Hat angehängte Bilder", + "status.has_preview_card": "Hat eine Vorschaukarte", + "status.has_video": "Hat angehängte Videos", + "status.in_reply_to": "Dieser Toot ist eine Antwort", + "status.is_poll": "Dieser Toot ist eine Umfrage", + "status.local_only": "Nur auf deiner Instanz sichtbar", + "status.sensitive_toggle": "Zum Anzeigen klicken", + "status.uncollapse": "Ausklappen", + "web_app_crash.change_your_settings": "Deine {settings} ändern", + "web_app_crash.content": "Du kannst eines der Folgenden ausprobieren:", + "web_app_crash.debug_info": "Debug-Informationen", + "web_app_crash.disable_addons": "Browser-Add-ons oder eingebaute Übersetzungswerkzeuge deaktivieren", + "web_app_crash.issue_tracker": "Issue-Tracker", + "web_app_crash.reload": "neu laden", + "web_app_crash.reload_page": "Die Seite {reload}", + "web_app_crash.report_issue": "Einen Fehler im {issuetracker} melden", + "web_app_crash.settings": "Einstellungen", + "web_app_crash.title": "Es tut uns leid, aber mit der Mastodon-App ist etwas schiefgelaufen." } diff --git a/config/locales-glitch/de.yml b/config/locales-glitch/de.yml index 346523bb6..a2ea8248c 100644 --- a/config/locales-glitch/de.yml +++ b/config/locales-glitch/de.yml @@ -1 +1,42 @@ +--- de: + admin: + custom_emojis: + batch_copy_error: 'Fehler ist beim Kopieren einiger der ausgewählten Emoji aufgetreten: %{message}' + batch_error: 'Ein Fehler ist aufgetreten: %{message}' + settings: + captcha_enabled: + desc_html: Dies beruht auf externen Skripts von hCaptcha, was Sicherheits- und Datenschutz-Bedenken auslösen kann. Zusätzlich kann das den Registrierungsprozess für manche (besonders behinderte) Leute signifikant weniger zugänglich machen. Aus diesen Gründen, bitte ziehe alternative Maßnahmen, wie Zulassungs- oder Einladungs-basierte Registrierung, in Erwägung.
Nutzer, die durch eine Einladung mit eingeschränkter Verwendungsanzahl eingeladen wurden, werden kein CAPTCHA lösen müssen + title: Neue Benutzer sollen ein CAPTCHA lösen müssen, um ihr Konto zu bestätigen + flavour_and_skin: + title: Variante und Skin + hide_followers_count: + desc_html: Follower nicht auf Nutzerprofilen anzeigen + title: Anzahl der Follower verbergen + other: + preamble: Verschiedene glitch-soc-Einstellungen, die nicht in andere Kategorien passen. + title: Sonstiges + outgoing_spoilers: + desc_html: Füge diese Inhaltswarnung bei föderierten Toots hinzu, wenn sie noch keine haben. Nützlich, wenn dein Server auf bestimmte Inhalte spezialisiert ist, die andere Server hinter einer Inhaltswarnung haben wollen. Medien werden auch als empfindlich markiert werden. + title: Inhaltswarnung für ausgehende Toots + show_reblogs_in_public_timelines: + desc_html: Zeige öffentlich geteilte Toots in lokalen und öffentlichen Timelines. + title: Zeige geteilte Toots in öffentlichen Timelines + show_replies_in_public_timelines: + desc_html: Neben öffentlichen Selbst-Antworten (Threads), öffentliche Antworten in lokalen und öffentlichen Timelines anzeigen. + title: Antworten in öffentlichen Timelines anzeigen + trending_status_cw: + desc_html: Erlaube Posts mit Inhaltswarnungen zu trenden, wenn angesagte Beiträge aktiviert sind. Änderungen an dieser Einstellung sind nicht rückwirkend. + title: Erlaube Posts mit Inhaltswarnungen zu trenden + appearance: + localization: + glitch_guide_link: https://crowdin.com/project/glitch-soc + glitch_guide_link_text: Und auch für glitch-soc! + auth: + captcha_confirmation: + hint_html: Nur noch ein weiterer Schritt! Um dein Konto zu bestätigen, erfordert dieser Server das Lösen eines CAPTCHA von dir. Bei Fragen oder Problemen mit der Bestätigung kannst du
den Server-Administrator kontaktieren. + title: Benutzer-Verifizierung + generic: + use_this: Benutze das + settings: + flavours: Varianten diff --git a/config/locales-glitch/simple_form.de.yml b/config/locales-glitch/simple_form.de.yml index 346523bb6..0d92038c5 100644 --- a/config/locales-glitch/simple_form.de.yml +++ b/config/locales-glitch/simple_form.de.yml @@ -1 +1,27 @@ +--- de: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: Du kannst bis zu %{count} Elemente auf deinem Profil anzeigen lassen, die als Tabelle dargestellt werden + setting_default_content_type_html: Beim Schreiben von Toots annehmen, dass sie in rohem HTML geschrieben sind, sofern nicht anders angegeben + setting_default_content_type_markdown: Beim Schreiben von Toots annehmen, dass sie in Markdown für Rich-Text-Formatierung geschrieben sind, sofern nicht anders angegeben + setting_default_content_type_plain: Beim Schreiben von Toots annehmen, dass sie in Klartext ohne spezielle Formatierung geschrieben sind, sofern nicht anders angegeben (standardmäßiges Mastodon-Verhalten) + setting_default_language: Die Sprache deiner Toots kann automatisch erkannt werden, aber sie ist nicht immer korrekt + setting_hide_followers_count: Verberge deine Follower-Anzahl vor allen, einschließlich dir. Manche Anwendungen könnten eine negative Follower-Anzahl anzeigen. + setting_skin: Verändert die ausgewählte Mastodon-Variante + labels: + defaults: + setting_default_content_type: Standardformat für Toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Unformatierter Text + setting_favourite_modal: Bestätigungsdialog vor dem Favorisieren anzeigen (gilt nur für Glitch-Variante) + setting_hide_followers_count: Anzahl der Follower verbergen + setting_skin: Skin + setting_system_emoji_font: Systemschriftart für Emojis verwenden (nur für Glitch-Variante) + notification_emails: + trending_link: Neuer angesagter Link muss überprüft werden + trending_status: Neuer angesagter Post muss überprüft werden + trending_tag: Neuer angesagter Tag muss überprüft werden -- cgit From 4b51d1386b61030334684bd33d8a8c7231c3bf2f Mon Sep 17 00:00:00 2001 From: Plastikmensch Date: Fri, 23 Dec 2022 12:35:03 +0100 Subject: Realign timestamps (#2044) Add missing display and overflow properties. Fixes misaligned timestamps and missing overflow in search. Signed-off-by: Plastikmensch Signed-off-by: Plastikmensch --- app/javascript/flavours/glitch/styles/components/status.scss | 2 ++ 1 file changed, 2 insertions(+) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/styles/components/status.scss b/app/javascript/flavours/glitch/styles/components/status.scss index 0f23c7d4d..0d3e7f665 100644 --- a/app/javascript/flavours/glitch/styles/components/status.scss +++ b/app/javascript/flavours/glitch/styles/components/status.scss @@ -593,6 +593,8 @@ .status__action-bar-timestamp { flex-grow: 1; text-align: end; + display: flex; + overflow: hidden; } .detailed-status__action-bar-dropdown { -- cgit From 08837f730d406fae7848f00146d05b7bcdb03254 Mon Sep 17 00:00:00 2001 From: Plastikmensch Date: Fri, 23 Dec 2022 18:59:20 +0100 Subject: Use wrapper div as a spacer (#2046) Keeps the alignment of timestamps, while also reducing clickable size Signed-off-by: Plastikmensch Signed-off-by: Plastikmensch --- app/javascript/flavours/glitch/components/status_action_bar.js | 9 ++++----- app/javascript/flavours/glitch/styles/components/status.scss | 6 +----- 2 files changed, 5 insertions(+), 10 deletions(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/components/status_action_bar.js b/app/javascript/flavours/glitch/components/status_action_bar.js index 3a18dff21..5d3a6eb46 100644 --- a/app/javascript/flavours/glitch/components/status_action_bar.js +++ b/app/javascript/flavours/glitch/components/status_action_bar.js @@ -328,11 +328,10 @@ class StatusActionBar extends ImmutablePureComponent { />
- + ); } diff --git a/app/javascript/flavours/glitch/styles/components/status.scss b/app/javascript/flavours/glitch/styles/components/status.scss index 0d3e7f665..bb5bbc0ac 100644 --- a/app/javascript/flavours/glitch/styles/components/status.scss +++ b/app/javascript/flavours/glitch/styles/components/status.scss @@ -444,7 +444,6 @@ .status__relative-time { display: inline-block; - flex-grow: 1; color: $dark-text-color; font-size: 14px; text-align: right; @@ -590,11 +589,8 @@ width: 23.15px; } -.status__action-bar-timestamp { +.status__action-bar-spacer { flex-grow: 1; - text-align: end; - display: flex; - overflow: hidden; } .detailed-status__action-bar-dropdown { -- cgit From cbfeb105a8408bebd81bb697d58a5635f3024105 Mon Sep 17 00:00:00 2001 From: Claire Date: Fri, 23 Dec 2022 23:27:03 +0100 Subject: New Crowdin updates (#2045) * New translations en.json (German) [ci skip] * New translations en.json (German) [ci skip] * New translations en.json (Hindi) [ci skip] * New translations en.json (Hindi) [ci skip] --- app/javascript/flavours/glitch/locales/de.json | 6 +++--- app/javascript/flavours/glitch/locales/hi.json | 12 ++++++++++++ 2 files changed, 15 insertions(+), 3 deletions(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/locales/de.json b/app/javascript/flavours/glitch/locales/de.json index 76bd518fb..c5e3cdb35 100644 --- a/app/javascript/flavours/glitch/locales/de.json +++ b/app/javascript/flavours/glitch/locales/de.json @@ -92,7 +92,7 @@ "onboarding.page_six.apps_available": "Es gibt {apps} für iOS, Android und andere Plattformen.", "onboarding.page_six.github": "{domain} läuft auf glitch-soc. glitch-soc ist ein freundlicher {fork} von {Mastodon}, und ist mit jeder Mastodon-App oder -Instanz kompatibel. glitch-soc ist komplett frei und quelloffen. Auf {github} kannst du Fehler melden, Features anfragen oder Code beitragen.", "onboarding.page_six.guidelines": "Community-Richtlinien", - "onboarding.page_six.read_guidelines": "Bitte lies {domain}'s {guidelines}!", + "onboarding.page_six.read_guidelines": "Bitte lies die {guidelines} von {domain}!", "onboarding.page_six.various_app": "mobile Apps", "onboarding.page_three.profile": "Bearbeite dein Profil, um deinen Avatar, \"Über mich\" und den Anzeigenamen zu ändern. Dort findest du auch andere Einstellungen.", "onboarding.page_three.search": "Benutze die Suchleiste, um Leute zu finden und Hashtags anzusehen, wie etwa {illustration} und {introductions}. Um nach einer Person zu suchen, die nicht auf dieser Instanz ist, benutze deren vollständigen Nutzername.", @@ -122,7 +122,7 @@ "settings.content_warnings_unfold_opts": "Optionen zum automatischen Ausklappen", "settings.deprecated_setting": "Diese Einstellung wird nun von Mastodons {settings_page_link} gesteuert", "settings.enable_collapsed": "Eingeklappte Toots aktivieren", - "settings.enable_collapsed_hint": "Eingeklappte Posts haben einen Teil ihres Inhalts verborgen, um weniger Platz am Bildschirm einzunehmen. Das ist zusätzlich zur Inhaltswarnfunktion", + "settings.enable_collapsed_hint": "Eingeklappte Posts haben einen Teil ihres Inhalts verborgen, um weniger Platz am Bildschirm einzunehmen. Das passiert unabhängig von der Inhaltswarnfunktion", "settings.enable_content_warnings_auto_unfold": "Inhaltswarnungen automatisch ausklappen", "settings.general": "Allgemein", "settings.hicolor_privacy_icons": "Eingefärbte Privatsphäre-Symbole", @@ -188,7 +188,7 @@ "status.sensitive_toggle": "Zum Anzeigen klicken", "status.uncollapse": "Ausklappen", "web_app_crash.change_your_settings": "Deine {settings} ändern", - "web_app_crash.content": "Du kannst eines der Folgenden ausprobieren:", + "web_app_crash.content": "Du kannst folgende Dinge ausprobieren:", "web_app_crash.debug_info": "Debug-Informationen", "web_app_crash.disable_addons": "Browser-Add-ons oder eingebaute Übersetzungswerkzeuge deaktivieren", "web_app_crash.issue_tracker": "Issue-Tracker", diff --git a/app/javascript/flavours/glitch/locales/hi.json b/app/javascript/flavours/glitch/locales/hi.json index 4d243f94c..f6eb75f84 100644 --- a/app/javascript/flavours/glitch/locales/hi.json +++ b/app/javascript/flavours/glitch/locales/hi.json @@ -1,4 +1,16 @@ { + "about.fork_disclaimer": "ग्लिच-सोक एक मुफ्त और ओपन सोर्स सॉफ़्टवेर है जो मैस्टोडॉन से फोर्क किया गया है", + "account.add_account_note": "@{name} के लिए कोई नोट लिखें", + "account.follows": "फ़ॉलोज़", + "account.joined": "ज़ोईन करने की {date}", + "account.suspended_disclaimer_full": "यह यूज़र एक मॉडरेटर द्वारा सस्पेंड कर दिया गया है", + "account.view_full_profile": "पूरी प्रोफ़ाइल देखें", + "account_note.cancel": "कैन्सल", + "account_note.edit": "एडिट या सम्पादन करें", + "account_note.glitch_placeholder": "कोई कॉमेंट नहीं दिया गया है", + "account_note.save": "सेव", + "advanced_options.icon_title": "एडवांस्ड ऑप्शन्स", + "advanced_options.local-only.long": "दूसरे इंस्टेंसों में पोस्ट ना करें", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", "settings.content_warnings": "Content warnings", -- cgit From 498cde7dc6bc45c8ffbfa65efe86a8c9993a07c4 Mon Sep 17 00:00:00 2001 From: Claire Date: Fri, 30 Dec 2022 18:31:26 +0100 Subject: New Crowdin updates (#2048) * New translations en.json (Portuguese, Brazilian) [ci skip] * New translations en.json (Portuguese, Brazilian) [ci skip] * New translations en.json (Portuguese, Brazilian) [ci skip] * New translations en.yml (Portuguese, Brazilian) [ci skip] * New translations en.json (Portuguese, Brazilian) [ci skip] * New translations en.json (Portuguese, Brazilian) [ci skip] * New translations en.yml (Portuguese, Brazilian) [ci skip] * New translations en.json (Portuguese, Brazilian) [ci skip] * New translations en.yml (Portuguese, Brazilian) [ci skip] * New translations simple_form.en.yml (Portuguese, Brazilian) [ci skip] * New translations en.yml (Portuguese, Brazilian) [ci skip] * New translations simple_form.en.yml (Portuguese, Brazilian) [ci skip] * New translations en.json (Esperanto) [ci skip] * New translations en.json (Esperanto) [ci skip] --- app/javascript/flavours/glitch/locales/eo.json | 48 +++++- app/javascript/flavours/glitch/locales/pt-BR.json | 196 +++++++++++++++++++++- config/locales-glitch/pt-BR.yml | 41 +++++ config/locales-glitch/simple_form.pt-BR.yml | 26 +++ 4 files changed, 309 insertions(+), 2 deletions(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/locales/eo.json b/app/javascript/flavours/glitch/locales/eo.json index 4d243f94c..87fe6c657 100644 --- a/app/javascript/flavours/glitch/locales/eo.json +++ b/app/javascript/flavours/glitch/locales/eo.json @@ -1,6 +1,52 @@ { + "account.add_account_note": "Aldoni noton por @{name}", + "account_note.cancel": "Nuligi", + "account_note.edit": "Redakti", + "account_note.save": "Konservi", + "column.reblogged_by": "Diskonigita de", + "column.subheading": "Diversaj agordoj", + "column_header.profile": "Profilo", + "column_subheading.lists": "Listoj", + "compose.attach": "Aldoni…", + "compose.attach.doodle": "Desegni ion", + "compose.attach.upload": "Alŝuti dosieron", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "confirmations.unfilter.author": "Aŭtoro", + "confirmations.unfilter.confirm": "Montri", + "confirmations.unfilter.edit_filter": "Redakti filtrilon", + "navigation_bar.keyboard_shortcuts": "Fulmoklavoj", + "notification_purge.btn_all": "Selekti ĉiujn", + "notification_purge.btn_apply": "Forigi selektajn", + "notification_purge.btn_invert": "Inverti selekton", + "notification_purge.btn_none": "Elekti neniun", + "notifications.marked_clear": "Forigi selektajn sciigojn", + "onboarding.next": "Sekva", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_six.almost_done": "Preskaŭ finita…", + "onboarding.page_six.apps_available": "Estas {apps} disponeblaj por iOS, Android kaj aliaj sistemoj.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.various_app": "poŝtelefonaj aplikaĵoj", + "settings.auto_collapse_all": "Ĉiuj", + "settings.auto_collapse_lengthy": "Longaj afiŝoj", + "settings.auto_collapse_media": "Afiŝoj kun aŭdovidaĵoj", + "settings.auto_collapse_notifications": "Sciigoj", + "settings.auto_collapse_reblogs": "Diskonigoj", + "settings.auto_collapse_replies": "Respondoj", + "settings.close": "Fermi", "settings.content_warnings": "Content warnings", - "settings.preferences": "Preferences" + "settings.content_warnings.regexp": "Regula esprimo", + "settings.preferences": "Preferences", + "settings.shared_settings_link": "preferoj de uzanto", + "settings.side_arm": "Duaranga butono por afiŝi:", + "settings.side_arm.none": "Neniu", + "settings.status_icons": "Ikonoj sur la afiŝoj", + "settings.status_icons_language": "Indikilo de lingvo", + "settings.status_icons_media": "Indikilo de aŭdovidaĵojn kaj balotenketo", + "settings.status_icons_reply": "Indikilo de respondoj", + "settings.status_icons_visibility": "Indikilo de privateco de afiŝo", + "web_app_crash.change_your_settings": "Ŝanĝi viajn {settings}", + "web_app_crash.reload": "Reŝarĝi", + "web_app_crash.reload_page": "{reload} la nunan paĝon", + "web_app_crash.settings": "agordojn" } diff --git a/app/javascript/flavours/glitch/locales/pt-BR.json b/app/javascript/flavours/glitch/locales/pt-BR.json index 4d243f94c..0bc0d2bea 100644 --- a/app/javascript/flavours/glitch/locales/pt-BR.json +++ b/app/javascript/flavours/glitch/locales/pt-BR.json @@ -1,6 +1,200 @@ { + "about.fork_disclaimer": "O Glitch-soc é um software gratuito de código aberto bifurcado a partir do Mastodon.", + "account.add_account_note": "Adicionar nota para @{name}", + "account.disclaimer_full": "As informações abaixo podem refletir o perfil do usuário de forma incompleta.", + "account.follows": "Seguidores", + "account.joined": "Entrou em {date}", + "account.suspended_disclaimer_full": "Este usuário foi suspenso por um moderador.", + "account.view_full_profile": "Ver o perfil completo", + "account_note.cancel": "Cancelar", + "account_note.edit": "Editar", + "account_note.glitch_placeholder": "Nenhum comentário fornecido", + "account_note.save": "Salvar", + "advanced_options.icon_title": "Opções avançadas", + "advanced_options.local-only.long": "Não publicar em outras instâncias", + "advanced_options.local-only.short": "Apenas localmente", + "advanced_options.local-only.tooltip": "Este post é somente local", + "advanced_options.threaded_mode.long": "Abrir automaticamente uma resposta ao postar", + "advanced_options.threaded_mode.short": "Modo de discussão", + "advanced_options.threaded_mode.tooltip": "Modo de discussão ativado", + "boost_modal.missing_description": "Este toot contém algumas mídias sem descrição", + "column.favourited_by": "Favoritado por", + "column.heading": "Diversos", + "column.reblogged_by": "Inpulsionado por", + "column.subheading": "Opções diversas", + "column_header.profile": "Perfil", + "column_subheading.lists": "Listas", + "column_subheading.navigation": "Navegação", + "community.column_settings.allow_local_only": "Mostrar os toots apenas locais", + "compose.attach": "Anexar...", + "compose.attach.doodle": "Desenhe algo", + "compose.attach.upload": "Enviar um arquivo", + "compose.content-type.html": "HTML", + "compose.content-type.markdown": "Markdown", + "compose.content-type.plain": "Texto sem formatação", + "compose_form.poll.multiple_choices": "Permitir múltipla escolha", + "compose_form.poll.single_choice": "Permitir uma escolha", + "compose_form.spoiler": "Ocultar texto atrás do aviso", + "confirmation_modal.do_not_ask_again": "Não pedir confirmação novamente", + "confirmations.deprecated_settings.confirm": "Usar preferências do Mastodon", + "confirmations.deprecated_settings.message": "Alguns dos {app_settings} específicos do dispositivo que você está usando foram substituídos por Mastodon {preferences} e serão substituídos:", + "confirmations.missing_media_description.confirm": "Enviar mesmo assim", + "confirmations.missing_media_description.edit": "Editar mídia", + "confirmations.missing_media_description.message": "Pelo menos um anexo de mídia não tem uma descrição. Considere descrever todos os anexos de mídia para deficientes visuais antes de enviar seu toot.", + "confirmations.unfilter.author": "Autor", + "confirmations.unfilter.confirm": "Exibir", + "confirmations.unfilter.edit_filter": "Editar filtro", + "confirmations.unfilter.filters": "Correspondência de {count, plural, one {filtro} other {filtros}}", + "content-type.change": "Tipo de conteúdo", + "direct.group_by_conversations": "Agrupar por conversa", + "endorsed_accounts_editor.endorsed_accounts": "Contas em destaque", + "favourite_modal.combo": "Você pode pressionar {combo} para pular isso da próxima vez", + "getting_started.onboarding": "Mostre-me ao redor", + "home.column_settings.advanced": "Avançado", + "home.column_settings.filter_regex": "Filtrar com uma expressão regular", + "home.column_settings.show_direct": "Mostrar DMs", + "home.settings": "Configurações da coluna", + "keyboard_shortcuts.bookmark": "para marcar", + "keyboard_shortcuts.secondary_toot": "para enviar toot usando a configuração de privacidade secundária", + "keyboard_shortcuts.toggle_collapse": "para recolher/mostrar toots", + "layout.auto": "Automático", + "layout.desktop": "Área de trabalho", + "layout.hint.auto": "Escolher automaticamente o layout baseado na configuração \"Habilitar interface web avançada\" e o tamanho da tela.", + "layout.hint.desktop": "Use o layout de várias colunas independentemente da configuração \"Habilitar interface web avançada\" ou do tamanho da tela.", + "layout.hint.single": "Use o layout de uma coluna independentemente da configuração \"Habilitar interface web avançada\" ou do tamanho da tela.", + "layout.single": "Celular", + "media_gallery.sensitive": "Sensível", + "moved_to_warning": "Esta conta foi como movida para {moved_to_link} e, portanto, pode não aceitar novos seguidores.", + "navigation_bar.app_settings": "Configurações do aplicativo", + "navigation_bar.featured_users": "Usuários em destaque", + "navigation_bar.info": "Informação estendida", + "navigation_bar.keyboard_shortcuts": "Atalhos de teclado", + "navigation_bar.misc": "Diversos", + "notification.markForDeletion": "Marcar para exclusão", + "notification_purge.btn_all": "Selecionar\ntudo", + "notification_purge.btn_apply": "Limpar\nselecionados", + "notification_purge.btn_invert": "Inverter\nseleção", + "notification_purge.btn_none": "Selecionar\nnenhum", + "notification_purge.start": "Entrar no modo de limpeza de notificação", + "notifications.marked_clear": "Limpar as notificações selecionadas", + "notifications.marked_clear_confirmation": "Tem certeza que deseja limpar todas as notificações selecionadas permanentemente?", + "onboarding.done": "Feito", + "onboarding.next": "Próximo", + "onboarding.page_five.public_timelines": "A linha do tempo local mostra publicações públicas de todos em {domain}. A linha do tempo federada mostra publicações públicas de todos que as pessoas seguem em {domain}. Estas são as linhas do tempo públicas, uma ótima maneira de descobrir novas pessoas.", + "onboarding.page_four.home": "A linha do tempo da casa mostra publicações de pessoas que você segue.", + "onboarding.page_four.notifications": "A coluna de notificações mostra quando alguém interage com você.", "onboarding.page_one.federation": "{domain} is an \"instance\" of Mastodon. Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.", + "onboarding.page_one.handle": "Você está em {domain}, então o seu identificador completo é {handle}", + "onboarding.page_one.welcome": "Bem-vindo ao {domain}!", + "onboarding.page_six.admin": "O administrador da sua instância é {admin}.", + "onboarding.page_six.almost_done": "Quase pronto...", + "onboarding.page_six.appetoot": "Bom Appetoot!", + "onboarding.page_six.apps_available": "Há {apps} disponíveis para iOS, Android e outras plataformas.", "onboarding.page_six.github": "{domain} runs on Glitchsoc. Glitchsoc is a friendly {fork} of {Mastodon}. Glitchsoc is fully compatible with all Mastodon apps and instances. Glitchsoc is free open-source software. You can report bugs, request features, or contribute to the code on {github}.", + "onboarding.page_six.guidelines": "diretrizes da comunidade", + "onboarding.page_six.read_guidelines": "Por favor, leia {domain} {guidelines}!", + "onboarding.page_six.various_app": "aplicativos móveis", + "onboarding.page_three.profile": "Edite seu perfil para alterar seu avatar, bio e nome de exibição. Lá você também encontrará outras preferências.", + "onboarding.page_three.search": "Use a barra de busca para encontrar pessoas e procure hashtags, tais como {illustration} e {introductions}. Para procurar uma pessoa que não esteja neste caso, use o identificador completo.", + "onboarding.page_two.compose": "Escreva as postagens a partir da coluna de composição. Você pode enviar imagens, alterar as configurações de privacidade e adicionar avisos de conteúdo com os ícones abaixo.", + "onboarding.skip": "Pular", + "settings.always_show_spoilers_field": "Sempre ativar o campo Aviso de Conteúdo", + "settings.auto_collapse": "Colapso automático", + "settings.auto_collapse_all": "Tudo", + "settings.auto_collapse_lengthy": "Toots longos", + "settings.auto_collapse_media": "Toots com mídia", + "settings.auto_collapse_notifications": "Notificações", + "settings.auto_collapse_reblogs": "Impulsos", + "settings.auto_collapse_replies": "Respostas", + "settings.close": "Fechar", + "settings.collapsed_statuses": "Toots recolhidos", + "settings.compose_box_opts": "Caixa de composição", + "settings.confirm_before_clearing_draft": "Mostrar diálogo de confirmação antes de sobrescrever a mensagem que está sendo composta", + "settings.confirm_boost_missing_media_description": "Mostrar diálogo antes de inpulsionar os toots sem descrições de mídia", + "settings.confirm_missing_media_description": "Mostrar diálogo antes de enviar toots sem descrições de mídia", "settings.content_warnings": "Content warnings", - "settings.preferences": "Preferences" + "settings.content_warnings.regexp": "Expressão regular", + "settings.content_warnings_filter": "Avisos de conteúdo para não revelar automaticamente:", + "settings.content_warnings_media_outside": "Exibir anexos de mídia fora avisos de conteúdo", + "settings.content_warnings_media_outside_hint": "Reproduzir o comportamento do Mastodonte, fazendo com que a alternância do Aviso de Conteúdo não afete os anexos de mídia", + "settings.content_warnings_shared_state": "Mostrar/ocultar o conteúdo de todas as cópias de uma só vez", + "settings.content_warnings_shared_state_hint": "Reproduzir o comportamento do Mastodonte fazendo com que o botão de Aviso de Conteúdo afete todas as cópias de um post de uma só vez. Isto evitará o colapso automático de qualquer cópia de um toon com Aviso de Conteúdo revelado", + "settings.content_warnings_unfold_opts": "Opções de auto-revelar", + "settings.deprecated_setting": "Essa configuração agora é controlada pelo {settings_page_link} do Mastodon", + "settings.enable_collapsed": "Habilitar toots recolhidos", + "settings.enable_collapsed_hint": "Posts recolhidos têm partes dos seus conteúdos ocultos para ocupar menos espaço na tela. Isto é diferente do recurso 'Aviso de Conteúdo'", + "settings.enable_content_warnings_auto_unfold": "Revelar automaticamente os avisos de conteúdo", + "settings.general": "Geral", + "settings.hicolor_privacy_icons": "Ícones de privacidade com cores de alto contraste", + "settings.hicolor_privacy_icons.hint": "Exibir ícones de privacidade em cores brilhantes e facilmente distinguíveis", + "settings.image_backgrounds": "Fundos de imagem", + "settings.image_backgrounds_media": "Pré-visualização da mídia de toots colapsados", + "settings.image_backgrounds_media_hint": "Se o post tiver algum anexo de mídia, use o primeiro em um plano de fundo", + "settings.image_backgrounds_users": "Dar a toots recolhidos uma imagem de fundo", + "settings.inline_preview_cards": "Cartões de pré-visualização em linha para links externos", + "settings.layout": "Layout:", + "settings.layout_opts": "Opções de layout", + "settings.media": "Mídia", + "settings.media_fullwidth": "Pré-visualização da mídia em largura total", + "settings.media_letterbox": "Caixa de mensagens", + "settings.media_letterbox_hint": "Escala para baixo para encher os recipientes de imagem em vez de esticá-los e cortá-los", + "settings.media_reveal_behind_cw": "Revelar mídia sensível por trás de um Aviso de Conteúdo por padrão", + "settings.notifications.favicon_badge": "Notificações não lidas como emblema do favicon", + "settings.notifications.favicon_badge.hint": "Adicionar um emblema para notificações não lidas ao favicon", + "settings.notifications.tab_badge": "Emblema de notificações não lidas", + "settings.notifications.tab_badge.hint": "Exibir um emblema para notificações não lidas nos ícones de coluna quando a coluna de notificações não estiver aberta", + "settings.notifications_opts": "Opções de notificações", + "settings.pop_in_left": "Esquerda", + "settings.pop_in_player": "Ativar player pop-in", + "settings.pop_in_position": "Posição do player:", + "settings.pop_in_right": "Direita", + "settings.preferences": "Preferences", + "settings.prepend_cw_re": "Preparar \"re: \" para avisos de conteúdo quando responder", + "settings.preselect_on_reply": "Nome de usuário pré-selecionado na resposta", + "settings.preselect_on_reply_hint": "Ao responder a uma conversa com vários participantes, pré-selecionar nomes de usuários após o primeiro", + "settings.rewrite_mentions": "Reescrever as menções nos status exibidos", + "settings.rewrite_mentions_acct": "Reescrever com nome de usuário e domínio (quando a conta for remota)", + "settings.rewrite_mentions_no": "Não reescrever menções", + "settings.rewrite_mentions_username": "Reescreva com nome de usuário", + "settings.shared_settings_link": "preferências do usuário", + "settings.show_action_bar": "Mostrar botões de ação em toots recolhidos", + "settings.show_content_type_choice": "Exibir opção do tipo de conteúdo ao autorar toots", + "settings.show_reply_counter": "Exibir uma estimativa da contagem de respostas", + "settings.side_arm": "Botão de toot secundário:", + "settings.side_arm.none": "Nenhum", + "settings.side_arm_reply_mode": "Ao responder a um toot, o botão secundário de toot deve:", + "settings.side_arm_reply_mode.copy": "Copiar configuração de privacidade do toot sendo respondido a", + "settings.side_arm_reply_mode.keep": "Mantenha sua privacidade definida", + "settings.side_arm_reply_mode.restrict": "Restringir configuração de privacidade ao toot sendo respondido a", + "settings.status_icons": "Ícones de toot", + "settings.status_icons_language": "Indicador de idioma", + "settings.status_icons_local_only": "Indicador somente local", + "settings.status_icons_media": "Indicadores de mídia e enquete", + "settings.status_icons_reply": "Indicador de resposta", + "settings.status_icons_visibility": "Indicador de privacidade", + "settings.swipe_to_change_columns": "Permitir deslizar para alterar colunas (apenas celular)", + "settings.tag_misleading_links": "Marcar links enganosos", + "settings.tag_misleading_links.hint": "Acrescentar uma indicação visual com o link hospedeiro alvo a cada link que não o mencione explicitamente", + "settings.wide_view": "Visualização ampla (apenas no Modo desktop)", + "settings.wide_view_hint": "Estica as colunas para preencher melhor o espaço disponível.", + "status.collapse": "Recolher", + "status.has_audio": "Possui um arquivo de áudio anexado", + "status.has_pictures": "Possui uma imagem anexada", + "status.has_preview_card": "Possui uma pré-visualização anexada", + "status.has_video": "Possui um vídeo anexado", + "status.in_reply_to": "Este toot é uma resposta", + "status.is_poll": "Este toot é uma enquete", + "status.local_only": "Visível apenas em sua instância", + "status.sensitive_toggle": "Clique para ver", + "status.uncollapse": "Revelar", + "web_app_crash.change_your_settings": "Altere suas {settings}", + "web_app_crash.content": "Você poderia tentar qualquer uma das seguintes opções:", + "web_app_crash.debug_info": "Informações de depuração", + "web_app_crash.disable_addons": "Desativar complementos do navegador ou ferramentas de tradução integradas", + "web_app_crash.issue_tracker": "rastreador de problemas", + "web_app_crash.reload": "Recarregar", + "web_app_crash.reload_page": "{reload} a página atual", + "web_app_crash.report_issue": "Relatar um erro no {issuetracker}", + "web_app_crash.settings": "configurações", + "web_app_crash.title": "Desculpe, mas algo deu errado com o aplicativo Mastodon." } diff --git a/config/locales-glitch/pt-BR.yml b/config/locales-glitch/pt-BR.yml index 9cbe1f038..3419e5948 100644 --- a/config/locales-glitch/pt-BR.yml +++ b/config/locales-glitch/pt-BR.yml @@ -1 +1,42 @@ +--- pt: + admin: + custom_emojis: + batch_copy_error: 'Ocorreu um erro ao copiar alguns dos emojis selecionados: %{message}' + batch_error: 'Ocorreu um erro: %{message}' + settings: + captcha_enabled: + desc_html: Isto se baseia em scripts externos de hCaptcha, o que pode ser uma preocupação de segurança e privacidade. Além disso, isto pode tornar o processo de registro significativamente menos acessível para algumas pessoas (especialmente deficientes). Por estas razões, favor considerar medidas alternativas como o registro baseado em aprovação ou em convite.
Os usuários que tiverem sido convidados através de um convite de uso limitado não precisarão resolver um CAPTCHA + title: Exigir que novos usuários resolvam um CAPTCHA para confirmar sua conta + flavour_and_skin: + title: Sabor e tema + hide_followers_count: + desc_html: Não mostrar contagem de seguidores em perfis de usuário + title: Ocultar número de seguidores + other: + preamble: Várias configurações de glitch-soc que não se ajustam em outras categorias. + title: Outros + outgoing_spoilers: + desc_html: Ao federar toots, adicione este aviso de conteúdo aos toots que não possuem um. É útil se seu servidor for especializado em conteúdo que outros servidores podem querer ter sob um Aviso de Conteúdo. Os meios de comunicação também serão marcados como sensíveis. + title: Aviso de conteúdo para toots enviados + show_reblogs_in_public_timelines: + desc_html: Mostrar impulsos públicos de toots públicos nas linhas de tempo locais e públicas. + title: Mostrar impulsos em timelines públicas + show_replies_in_public_timelines: + desc_html: Além das auto-respostas públicas (tópicos), mostrar respostas públicas em linhas do tempo locais e públicas. + title: Mostrar respostas em linhas do tempo públicas + trending_status_cw: + desc_html: Quando as mensagens de tendência estiverem habilitadas, permitir que as mensagens com Avisos de Conteúdo sejam elegíveis. As alterações a esta configuração não são retroativas. + title: Permitir que mensagens com Avisos de Conteúdo tornem-se tendência + appearance: + localization: + glitch_guide_link: https://crowdin.com/project/glitch-soc + glitch_guide_link_text: E também para glitch-soc! + auth: + captcha_confirmation: + hint_html: Só mais um passo! Para confirmar a sua conta, este servidor requer que você resolva um CAPTCHA. Você pode entrar em contato com o administrador do servidor se você tiver dúvidas ou precisa de ajuda para confirmar sua conta. + title: Verificação de usuário + generic: + use_this: Use isto + settings: + flavours: Sabores diff --git a/config/locales-glitch/simple_form.pt-BR.yml b/config/locales-glitch/simple_form.pt-BR.yml index 9cbe1f038..00a7607d6 100644 --- a/config/locales-glitch/simple_form.pt-BR.yml +++ b/config/locales-glitch/simple_form.pt-BR.yml @@ -1 +1,27 @@ +--- pt: + simple_form: + glitch_only: glitch-soc + hints: + defaults: + fields: Você pode ter até %{count} itens exibidos como uma tabela no seu perfil + setting_default_content_type_html: Ao escrever toots, assume que estão escritos em HTML bruto, a menos que especificado de outra forma + setting_default_content_type_markdown: Ao escrever toots, assume que ele está usando Markdown para formatação de texto, a menos que especificado seja diferente + setting_default_content_type_plain: Ao escrever toots, assume que eles são textos simples sem formatação especial, a menos que esteja especificado de outra forma (comportamento padrão do Mastodon) + setting_default_language: O idioma dos seus toots pode ser detectado automaticamente, mas nem sempre é preciso + setting_hide_followers_count: Ocultar a contagem de seguidores de todos, incluindo você. Algumas aplicações podem exibir uma contagem de seguidores negativa. + setting_skin: Reaplica o sabor Mastodon selecionado + labels: + defaults: + setting_default_content_type: Formato padrão para toots + setting_default_content_type_html: HTML + setting_default_content_type_markdown: Markdown + setting_default_content_type_plain: Texto sem formatação + setting_favourite_modal: Mostrar diálogo antes de favoritar (aplica-se somente ao sabor Glitch) + setting_hide_followers_count: Ocultar sua contagem de seguidores + setting_skin: Tema + setting_system_emoji_font: Usar fonte padrão do sistema para emojis (aplica-se somente ao sabor Glitch) + notification_emails: + trending_link: Novo link em tendência requer revisão + trending_status: Nova postagem em tendência requer revisão + trending_tag: Nova tag em tendência requer revisão -- cgit From 476c13194666037ed5f23f0d563d135e8d3390ec Mon Sep 17 00:00:00 2001 From: Darius Kazemi Date: Wed, 28 Dec 2022 01:21:10 -0800 Subject: [Glitch] Replace flex styling with sensible layout rules Port ef4d29c8791086b11f6e36aa121ff5c9b5fa0103 to glitch-soc Signed-off-by: Claire --- app/javascript/flavours/glitch/styles/admin.scss | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/styles/admin.scss b/app/javascript/flavours/glitch/styles/admin.scss index 7d5b28a12..8ddf815c3 100644 --- a/app/javascript/flavours/glitch/styles/admin.scss +++ b/app/javascript/flavours/glitch/styles/admin.scss @@ -254,10 +254,8 @@ $content-width: 840px; &__actions { display: inline-flex; - - & > :not(:first-child) { - margin-left: 5px; - } + flex-flow: wrap; + gap: 5px; } h2 small { -- cgit From 910d2d9f6b31f926bdc95c3e95323abccb0996f6 Mon Sep 17 00:00:00 2001 From: Plastikmensch Date: Wed, 4 Jan 2023 11:59:43 +0100 Subject: Prevent doodle from closing on outside click (#2047) Adds a new property to the dispatch, which when set to true, replaces the onClose handler with a no-op, preventing the modal from closing. Signed-off-by: Plastikmensch Signed-off-by: Plastikmensch --- .../flavours/glitch/features/compose/containers/options_container.js | 2 +- app/javascript/flavours/glitch/features/ui/components/modal_root.js | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/features/compose/containers/options_container.js b/app/javascript/flavours/glitch/features/compose/containers/options_container.js index 6c3db8173..5de9f5419 100644 --- a/app/javascript/flavours/glitch/features/compose/containers/options_container.js +++ b/app/javascript/flavours/glitch/features/compose/containers/options_container.js @@ -46,7 +46,7 @@ const mapDispatchToProps = (dispatch) => ({ }, onDoodleOpen() { - dispatch(openModal('DOODLE', { noEsc: true })); + dispatch(openModal('DOODLE', { noEsc: true, noClose: true })); }, }); diff --git a/app/javascript/flavours/glitch/features/ui/components/modal_root.js b/app/javascript/flavours/glitch/features/ui/components/modal_root.js index d2ee28948..379f57cbb 100644 --- a/app/javascript/flavours/glitch/features/ui/components/modal_root.js +++ b/app/javascript/flavours/glitch/features/ui/components/modal_root.js @@ -116,13 +116,16 @@ export default class ModalRoot extends React.PureComponent { this._modal = c; } + // prevent closing of modal when clicking the overlay + noop = () => {} + render () { const { type, props, ignoreFocus } = this.props; const { backgroundColor } = this.state; const visible = !!type; return ( - + {visible && ( <> -- cgit From cba7158085d0f8a2317e2fc00cb0f9bdb67b2eff Mon Sep 17 00:00:00 2001 From: Claire Date: Wed, 4 Jan 2023 18:38:45 +0100 Subject: Fix prettifier/lint issues (#2066) * Add glitch-soc locale files to prettierignore * Run prettier on theme.yml * Add glitch-soc emoji_map.json to .prettierignore * Run prettier on config/i18n-tasks.yml --- .prettierignore | 7 +++++++ app/javascript/flavours/glitch/theme.yml | 8 ++++---- app/javascript/flavours/vanilla/theme.yml | 8 ++++---- config/i18n-tasks.yml | 5 ++++- 4 files changed, 19 insertions(+), 9 deletions(-) (limited to 'app/javascript/flavours/glitch') diff --git a/.prettierignore b/.prettierignore index f72354a42..dc8c53693 100644 --- a/.prettierignore +++ b/.prettierignore @@ -70,3 +70,10 @@ docker-compose.override.yml # Ignore locale files /app/javascript/mastodon/locales /config/locales + +# Ignore glitch-soc locale files +/app/javascript/flavours/glitch/locales +/config/locales-glitch + +# Ignore glitch-soc emoji map file +/app/javascript/flavours/glitch/features/emoji/emoji_map.json diff --git a/app/javascript/flavours/glitch/theme.yml b/app/javascript/flavours/glitch/theme.yml index 181128746..2a2cf30b5 100644 --- a/app/javascript/flavours/glitch/theme.yml +++ b/app/javascript/flavours/glitch/theme.yml @@ -12,10 +12,10 @@ pack: home: filename: packs/home.js preload: - - flavours/glitch/async/compose - - flavours/glitch/async/getting_started - - flavours/glitch/async/home_timeline - - flavours/glitch/async/notifications + - flavours/glitch/async/compose + - flavours/glitch/async/getting_started + - flavours/glitch/async/home_timeline + - flavours/glitch/async/notifications mailer: modal: public: packs/public.js diff --git a/app/javascript/flavours/vanilla/theme.yml b/app/javascript/flavours/vanilla/theme.yml index 5cb76b721..3f0b27899 100644 --- a/app/javascript/flavours/vanilla/theme.yml +++ b/app/javascript/flavours/vanilla/theme.yml @@ -12,10 +12,10 @@ pack: home: filename: application.js preload: - - features/getting_started - - features/compose - - features/home_timeline - - features/notifications + - features/getting_started + - features/compose + - features/home_timeline + - features/notifications mailer: modal: public: public.js diff --git a/config/i18n-tasks.yml b/config/i18n-tasks.yml index 3f3f6f248..334511efe 100644 --- a/config/i18n-tasks.yml +++ b/config/i18n-tasks.yml @@ -8,7 +8,10 @@ data: - config/locales-glitch/*.%{locale}.yml write: - - ['{devise, simple_form, doorkeeper}.*', 'config/locales-glitch/\1.%{locale}.yml'] + - [ + '{devise, simple_form, doorkeeper}.*', + 'config/locales-glitch/\1.%{locale}.yml', + ] - config/locales-glitch/%{locale}.yml external: -- cgit From 7e9d5bdbb9125197afb5b3df69ce49a79451d697 Mon Sep 17 00:00:00 2001 From: Claire Date: Thu, 5 Jan 2023 13:32:29 +0100 Subject: [Glitch] Fix unnecessary re-rendering of various components when typing in web UI (#2063) Port 9620ee90be7e04b3616ce4b851abb63dbba7af7f to glitch-soc Signed-off-by: Claire Signed-off-by: Claire Co-authored-by: Eugen Rochko --- app/javascript/flavours/glitch/components/status.js | 8 ++++---- .../flavours/glitch/containers/status_container.js | 9 +++------ .../features/status/components/detailed_status.js | 9 ++++++--- .../flavours/glitch/features/status/index.js | 19 ++++++++++++------- app/javascript/flavours/glitch/selectors/index.js | 12 +++++++++++- 5 files changed, 36 insertions(+), 21 deletions(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/components/status.js b/app/javascript/flavours/glitch/components/status.js index 4041b4819..409ec0adc 100644 --- a/app/javascript/flavours/glitch/components/status.js +++ b/app/javascript/flavours/glitch/components/status.js @@ -102,7 +102,7 @@ class Status extends ImmutablePureComponent { scrollKey: PropTypes.string, deployPictureInPicture: PropTypes.func, settings: ImmutablePropTypes.map.isRequired, - pictureInPicture: PropTypes.shape({ + pictureInPicture: ImmutablePropTypes.contains({ inUse: PropTypes.bool, available: PropTypes.bool, }), @@ -603,7 +603,7 @@ class Status extends ImmutablePureComponent { attachments = status.get('media_attachments'); - if (pictureInPicture.inUse) { + if (pictureInPicture.get('inUse')) { media.push(); mediaIcons.push('video-camera'); } else if (attachments.size > 0) { @@ -631,7 +631,7 @@ class Status extends ImmutablePureComponent { width={this.props.cachedMediaWidth} height={110} cacheWidth={this.props.cacheMediaWidth} - deployPictureInPicture={pictureInPicture.available ? this.handleDeployPictureInPicture : undefined} + deployPictureInPicture={pictureInPicture.get('available') ? this.handleDeployPictureInPicture : undefined} sensitive={status.get('sensitive')} blurhash={attachment.get('blurhash')} visible={this.state.showMedia} @@ -660,7 +660,7 @@ class Status extends ImmutablePureComponent { onOpenVideo={this.handleOpenVideo} width={this.props.cachedMediaWidth} cacheWidth={this.props.cacheMediaWidth} - deployPictureInPicture={pictureInPicture.available ? this.handleDeployPictureInPicture : undefined} + deployPictureInPicture={pictureInPicture.get('available') ? this.handleDeployPictureInPicture : undefined} visible={this.state.showMedia} onToggleVisibility={this.handleToggleMediaVisibility} />)} diff --git a/app/javascript/flavours/glitch/containers/status_container.js b/app/javascript/flavours/glitch/containers/status_container.js index 947573fc7..645919ebe 100644 --- a/app/javascript/flavours/glitch/containers/status_container.js +++ b/app/javascript/flavours/glitch/containers/status_container.js @@ -1,7 +1,7 @@ import { connect } from 'react-redux'; import Status from 'flavours/glitch/components/status'; import { List as ImmutableList } from 'immutable'; -import { makeGetStatus } from 'flavours/glitch/selectors'; +import { makeGetStatus, makeGetPictureInPicture } from 'flavours/glitch/selectors'; import { replyCompose, mentionCompose, @@ -60,6 +60,7 @@ const messages = defineMessages({ const makeMapStateToProps = () => { const getStatus = makeGetStatus(); + const getPictureInPicture = makeGetPictureInPicture(); const mapStateToProps = (state, props) => { @@ -83,11 +84,7 @@ const makeMapStateToProps = () => { account: account || props.account, settings: state.get('local_settings'), prepend: prepend || props.prepend, - - pictureInPicture: { - inUse: state.getIn(['meta', 'layout']) !== 'mobile' && state.get('picture_in_picture').statusId === props.id, - available: state.getIn(['meta', 'layout']) !== 'mobile', - }, + pictureInPicture: getPictureInPicture(state, props), }; }; diff --git a/app/javascript/flavours/glitch/features/status/components/detailed_status.js b/app/javascript/flavours/glitch/features/status/components/detailed_status.js index 7d2c2aace..907fc3f1c 100644 --- a/app/javascript/flavours/glitch/features/status/components/detailed_status.js +++ b/app/javascript/flavours/glitch/features/status/components/detailed_status.js @@ -41,7 +41,10 @@ class DetailedStatus extends ImmutablePureComponent { domain: PropTypes.string.isRequired, compact: PropTypes.bool, showMedia: PropTypes.bool, - usingPiP: PropTypes.bool, + pictureInPicture: ImmutablePropTypes.contains({ + inUse: PropTypes.bool, + available: PropTypes.bool, + }), onToggleMediaVisibility: PropTypes.func, intl: PropTypes.object.isRequired, }; @@ -120,7 +123,7 @@ class DetailedStatus extends ImmutablePureComponent { render () { const status = (this.props.status && this.props.status.get('reblog')) ? this.props.status.get('reblog') : this.props.status; - const { expanded, onToggleHidden, settings, usingPiP, intl } = this.props; + const { expanded, onToggleHidden, settings, pictureInPicture, intl } = this.props; const outerStyle = { boxSizing: 'border-box' }; const { compact } = this.props; @@ -153,7 +156,7 @@ class DetailedStatus extends ImmutablePureComponent { outerStyle.height = `${this.state.height}px`; } - if (usingPiP) { + if (pictureInPicture.get('inUse')) { media.push(); mediaIcons.push('video-camera'); } else if (status.get('media_attachments').size > 0) { diff --git a/app/javascript/flavours/glitch/features/status/index.js b/app/javascript/flavours/glitch/features/status/index.js index c716e4f0f..c22e7f0bd 100644 --- a/app/javascript/flavours/glitch/features/status/index.js +++ b/app/javascript/flavours/glitch/features/status/index.js @@ -41,7 +41,7 @@ import { initMuteModal } from 'flavours/glitch/actions/mutes'; import { initBlockModal } from 'flavours/glitch/actions/blocks'; import { initReport } from 'flavours/glitch/actions/reports'; import { initBoostModal } from 'flavours/glitch/actions/boosts'; -import { makeGetStatus } from 'flavours/glitch/selectors'; +import { makeGetStatus, makeGetPictureInPicture } from 'flavours/glitch/selectors'; import ScrollContainer from 'flavours/glitch/containers/scroll_container'; import ColumnBackButton from 'flavours/glitch/components/column_back_button'; import ColumnHeader from '../../components/column_header'; @@ -72,6 +72,7 @@ const messages = defineMessages({ const makeMapStateToProps = () => { const getStatus = makeGetStatus(); + const getPictureInPicture = makeGetPictureInPicture(); const getAncestorsIds = createSelector([ (_, { id }) => id, @@ -129,11 +130,12 @@ const makeMapStateToProps = () => { const mapStateToProps = (state, props) => { const status = getStatus(state, { id: props.params.statusId }); - let ancestorsIds = Immutable.List(); + + let ancestorsIds = Immutable.List(); let descendantsIds = Immutable.List(); if (status) { - ancestorsIds = getAncestorsIds(state, { id: status.get('in_reply_to_id') }); + ancestorsIds = getAncestorsIds(state, { id: status.get('in_reply_to_id') }); descendantsIds = getDescendantsIds(state, { id: status.get('id') }); } @@ -145,7 +147,7 @@ const makeMapStateToProps = () => { settings: state.get('local_settings'), askReplyConfirmation: state.getIn(['local_settings', 'confirm_before_clearing_draft']) && state.getIn(['compose', 'text']).trim().length !== 0, domain: state.getIn(['meta', 'domain']), - usingPiP: state.get('picture_in_picture').statusId === props.params.statusId, + pictureInPicture: getPictureInPicture(state, { id: props.params.statusId }), }; }; @@ -190,7 +192,10 @@ class Status extends ImmutablePureComponent { askReplyConfirmation: PropTypes.bool, multiColumn: PropTypes.bool, domain: PropTypes.string.isRequired, - usingPiP: PropTypes.bool, + pictureInPicture: ImmutablePropTypes.contains({ + inUse: PropTypes.bool, + available: PropTypes.bool, + }), }; state = { @@ -604,7 +609,7 @@ class Status extends ImmutablePureComponent { render () { let ancestors, descendants; - const { isLoading, status, settings, ancestorsIds, descendantsIds, intl, domain, multiColumn, usingPiP } = this.props; + const { isLoading, status, settings, ancestorsIds, descendantsIds, intl, domain, multiColumn, pictureInPicture } = this.props; const { fullscreen } = this.state; if (isLoading) { @@ -682,7 +687,7 @@ class Status extends ImmutablePureComponent { domain={domain} showMedia={this.state.showMedia} onToggleMediaVisibility={this.handleToggleMediaVisibility} - usingPiP={usingPiP} + pictureInPicture={pictureInPicture} /> { ); }; +export const makeGetPictureInPicture = () => { + return createSelector([ + (state, { id }) => state.get('picture_in_picture').statusId === id, + (state) => state.getIn(['meta', 'layout']) !== 'mobile', + ], (inUse, available) => ImmutableMap({ + inUse: inUse && available, + available, + })); +}; + const getAlertsBase = state => state.get('alerts'); export const getAlerts = createSelector([getAlertsBase], (base) => { -- cgit From 009fee7954b198e06813a9101c13b316e6a31c35 Mon Sep 17 00:00:00 2001 From: TAKAHASHI Shuuji Date: Thu, 5 Jan 2023 21:32:02 +0900 Subject: Remove object-fit polyfill for the old Microsoft Edge Port d68c12648c2d11d4f172e740a2d9067a38f8faca to glitch-soc Signed-off-by: Claire --- app/javascript/flavours/glitch/extra_polyfills.js | 3 --- app/javascript/flavours/glitch/load_polyfills.js | 5 ++--- 2 files changed, 2 insertions(+), 6 deletions(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/extra_polyfills.js b/app/javascript/flavours/glitch/extra_polyfills.js index 0d45c23b0..6e8004f07 100644 --- a/app/javascript/flavours/glitch/extra_polyfills.js +++ b/app/javascript/flavours/glitch/extra_polyfills.js @@ -1,6 +1,3 @@ import 'abortcontroller-polyfill/dist/abortcontroller-polyfill-only'; import 'intersection-observer'; import 'requestidlecallback'; -import objectFitImages from 'object-fit-images'; - -objectFitImages(); diff --git a/app/javascript/flavours/glitch/load_polyfills.js b/app/javascript/flavours/glitch/load_polyfills.js index cc5bcd18f..f5a897f75 100644 --- a/app/javascript/flavours/glitch/load_polyfills.js +++ b/app/javascript/flavours/glitch/load_polyfills.js @@ -23,15 +23,14 @@ function loadPolyfills() { ); // Latest version of Firefox and Safari do not have IntersectionObserver. - // Edge does not have requestIdleCallback and object-fit CSS property. + // Edge does not have requestIdleCallback. // This avoids shipping them all the polyfills. const needsExtraPolyfills = !( window.AbortController && window.IntersectionObserver && window.IntersectionObserverEntry && 'isIntersecting' in IntersectionObserverEntry.prototype && - window.requestIdleCallback && - 'object-fit' in (new Image()).style + window.requestIdleCallback ); return Promise.all([ -- cgit From 1702907a9d26a8e3aa5e4567487cb21ee3fc2a8c Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Thu, 5 Jan 2023 07:34:10 -0500 Subject: [Glitch] Improve the contrast of the chart in “poll has ended” notifications MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Port b81b646e3bf94ebc1b86999250092e947d7bc5dc to glitch-soc Signed-off-by: Claire --- app/javascript/flavours/glitch/styles/polls.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/styles/polls.scss b/app/javascript/flavours/glitch/styles/polls.scss index 0847c8f4c..43924829d 100644 --- a/app/javascript/flavours/glitch/styles/polls.scss +++ b/app/javascript/flavours/glitch/styles/polls.scss @@ -289,10 +289,10 @@ color: $dark-text-color; &__chart { - background: rgba(darken($ui-primary-color, 14%), 0.2); + background: rgba(darken($ui-primary-color, 14%), 0.7); &.leading { - background: rgba($ui-highlight-color, 0.2); + background: rgba($ui-highlight-color, 0.5); } } } -- cgit From 4f335da8f88fccf4285023208664bd8594a1deb9 Mon Sep 17 00:00:00 2001 From: Holden Foreman <38192823+hs4man21@users.noreply.github.com> Date: Thu, 5 Jan 2023 07:36:42 -0500 Subject: [Glitch] Add aria-hidden to 'Hide image' button in MediaGallery since the button is useless to screen reader users Port c5da2f8c439f86f809d750b42aa11cdeef6b7c1f to glitch-soc Signed-off-by: Claire --- app/javascript/flavours/glitch/components/icon_button.js | 4 ++++ app/javascript/flavours/glitch/components/media_gallery.js | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/components/icon_button.js b/app/javascript/flavours/glitch/components/icon_button.js index 41a95e92f..2485f0f48 100644 --- a/app/javascript/flavours/glitch/components/icon_button.js +++ b/app/javascript/flavours/glitch/components/icon_button.js @@ -30,6 +30,7 @@ export default class IconButton extends React.PureComponent { counter: PropTypes.number, obfuscateCount: PropTypes.bool, href: PropTypes.string, + ariaHidden: PropTypes.bool, }; static defaultProps = { @@ -39,6 +40,7 @@ export default class IconButton extends React.PureComponent { animate: false, overlay: false, tabIndex: '0', + ariaHidden: false, }; state = { @@ -115,6 +117,7 @@ export default class IconButton extends React.PureComponent { counter, obfuscateCount, href, + ariaHidden, } = this.props; const { @@ -155,6 +158,7 @@ export default class IconButton extends React.PureComponent { +
-- cgit From fdabfb9d0eea00e601b25fe5b199f72fb01f54a3 Mon Sep 17 00:00:00 2001 From: Holden Foreman <38192823+hs4man21@users.noreply.github.com> Date: Sun, 8 Jan 2023 21:54:03 -0500 Subject: [Glitch] Fix footer link circle dividers' screen reader accessibility by adding aria-hidden Port 2bcb081ce8ab42649932404f3a13f69a0b582af9 to glitch-soc Signed-off-by: Claire --- .../glitch/features/ui/components/link_footer.js | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/features/ui/components/link_footer.js b/app/javascript/flavours/glitch/features/ui/components/link_footer.js index d7a4cf130..ac0c78674 100644 --- a/app/javascript/flavours/glitch/features/ui/components/link_footer.js +++ b/app/javascript/flavours/glitch/features/ui/components/link_footer.js @@ -52,6 +52,8 @@ class LinkFooter extends React.PureComponent { const canInvite = signedIn && ((permissions & PERMISSION_INVITE_USERS) === PERMISSION_INVITE_USERS); const canProfileDirectory = profileDirectory; + const DividingCircle = {' · '}; + return (

@@ -60,17 +62,17 @@ class LinkFooter extends React.PureComponent { {canInvite && ( <> - {' · '} + {DividingCircle} )} {canProfileDirectory && ( <> - {' · '} + {DividingCircle} )} - {' · '} + {DividingCircle}

@@ -78,13 +80,13 @@ class LinkFooter extends React.PureComponent { Mastodon: {' '} - {' · '} + {DividingCircle} - {' · '} + {DividingCircle} - {' · '} + {DividingCircle} - {' · '} + {DividingCircle} v{version}

-- cgit From a36dfbb2aa53b8ce3e4c88826aeda9f25d98e49a Mon Sep 17 00:00:00 2001 From: Peter Simonsson Date: Wed, 11 Jan 2023 21:58:46 +0100 Subject: [Glitch] Fix dropdown menu positions when scrolling Port fd33bcb3b25d3eaf593ade0aa8709a1184fc254e to glitch-soc Signed-off-by: Claire --- .../flavours/glitch/actions/dropdown_menu.js | 4 +- .../flavours/glitch/components/dropdown_menu.js | 102 ++++++++------------- .../containers/dropdown_menu_container.js | 5 +- .../glitch/containers/dropdown_menu_container.js | 5 +- .../glitch/features/compose/components/dropdown.js | 47 +++++++--- .../features/compose/components/dropdown_menu.js | 46 +--------- .../compose/components/emoji_picker_dropdown.js | 39 ++++---- .../compose/components/language_dropdown.js | 81 ++++++++-------- .../glitch/features/compose/components/search.js | 51 +++++------ .../flavours/glitch/reducers/dropdown_menu.js | 4 +- .../glitch/styles/components/compose_form.scss | 2 - .../flavours/glitch/styles/components/index.scss | 85 ++++++++++++----- .../flavours/glitch/styles/components/modal.scss | 1 - .../glitch/styles/mastodon-light/diff.scss | 18 +--- 14 files changed, 234 insertions(+), 256 deletions(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/actions/dropdown_menu.js b/app/javascript/flavours/glitch/actions/dropdown_menu.js index fb6e55612..023151d4b 100644 --- a/app/javascript/flavours/glitch/actions/dropdown_menu.js +++ b/app/javascript/flavours/glitch/actions/dropdown_menu.js @@ -1,8 +1,8 @@ export const DROPDOWN_MENU_OPEN = 'DROPDOWN_MENU_OPEN'; export const DROPDOWN_MENU_CLOSE = 'DROPDOWN_MENU_CLOSE'; -export function openDropdownMenu(id, placement, keyboard, scroll_key) { - return { type: DROPDOWN_MENU_OPEN, id, placement, keyboard, scroll_key }; +export function openDropdownMenu(id, keyboard, scroll_key) { + return { type: DROPDOWN_MENU_OPEN, id, keyboard, scroll_key }; } export function closeDropdownMenu(id) { diff --git a/app/javascript/flavours/glitch/components/dropdown_menu.js b/app/javascript/flavours/glitch/components/dropdown_menu.js index 036e0b909..7c70f750f 100644 --- a/app/javascript/flavours/glitch/components/dropdown_menu.js +++ b/app/javascript/flavours/glitch/components/dropdown_menu.js @@ -2,9 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import ImmutablePropTypes from 'react-immutable-proptypes'; import IconButton from './icon_button'; -import Overlay from 'react-overlays/lib/Overlay'; -import Motion from '../features/ui/util/optional_motion'; -import spring from 'react-motion/lib/spring'; +import Overlay from 'react-overlays/Overlay'; import { supportsPassiveEvents } from 'detect-passive-events'; import classNames from 'classnames'; import { CircularProgress } from 'flavours/glitch/components/loading_indicator'; @@ -24,9 +22,6 @@ class DropdownMenu extends React.PureComponent { scrollable: PropTypes.bool, onClose: PropTypes.func.isRequired, style: PropTypes.object, - placement: PropTypes.string, - arrowOffsetLeft: PropTypes.string, - arrowOffsetTop: PropTypes.string, openedViaKeyboard: PropTypes.bool, renderItem: PropTypes.func, renderHeader: PropTypes.func, @@ -35,11 +30,6 @@ class DropdownMenu extends React.PureComponent { static defaultProps = { style: {}, - placement: 'bottom', - }; - - state = { - mounted: false, }; handleDocumentClick = e => { @@ -56,8 +46,6 @@ class DropdownMenu extends React.PureComponent { if (this.focusedItem && this.props.openedViaKeyboard) { this.focusedItem.focus({ preventScroll: true }); } - - this.setState({ mounted: true }); } componentWillUnmount () { @@ -139,40 +127,28 @@ class DropdownMenu extends React.PureComponent { } render () { - const { items, style, placement, arrowOffsetLeft, arrowOffsetTop, scrollable, renderHeader, loading } = this.props; - const { mounted } = this.state; + const { items, scrollable, renderHeader, loading } = this.props; let renderItem = this.props.renderItem || this.renderItem; return ( - - {({ opacity, scaleX, scaleY }) => ( - // It should not be transformed when mounting because the resulting - // size will be used to determine the coordinate of the menu by - // react-overlays -
-
- -
- {loading && ( - - )} - - {!loading && renderHeader && ( -
- {renderHeader(items)} -
- )} - - {!loading && ( -
    - {items.map((option, i) => renderItem(option, i, { onClick: this.handleClick, onKeyPress: this.handleItemKeyPress }))} -
- )} -
+
+ {loading && ( + + )} + + {!loading && renderHeader && ( +
+ {renderHeader(items)}
)} - + + {!loading && ( +
    + {items.map((option, i) => renderItem(option, i, { onClick: this.handleClick, onKeyPress: this.handleItemKeyPress }))} +
+ )} +
); } @@ -197,7 +173,6 @@ export default class Dropdown extends React.PureComponent { isUserTouching: PropTypes.func, onOpen: PropTypes.func.isRequired, onClose: PropTypes.func.isRequired, - dropdownPlacement: PropTypes.string, openDropdownId: PropTypes.number, openedViaKeyboard: PropTypes.bool, renderItem: PropTypes.func, @@ -213,13 +188,11 @@ export default class Dropdown extends React.PureComponent { id: id++, }; - handleClick = ({ target, type }) => { + handleClick = ({ type }) => { if (this.state.id === this.props.openDropdownId) { this.handleClose(); } else { - const { top } = target.getBoundingClientRect(); - const placement = top * 2 < innerHeight ? 'bottom' : 'top'; - this.props.onOpen(this.state.id, this.handleItemClick, placement, type !== 'click'); + this.props.onOpen(this.state.id, this.handleItemClick, type !== 'click'); } } @@ -303,7 +276,6 @@ export default class Dropdown extends React.PureComponent { disabled, loading, scrollable, - dropdownPlacement, openDropdownId, openedViaKeyboard, children, @@ -314,7 +286,6 @@ export default class Dropdown extends React.PureComponent { const open = this.state.id === openDropdownId; const button = children ? React.cloneElement(React.Children.only(children), { - ref: this.setTargetRef, onClick: this.handleClick, onMouseDown: this.handleMouseDown, onKeyDown: this.handleButtonKeyDown, @@ -326,7 +297,6 @@ export default class Dropdown extends React.PureComponent { active={open} disabled={disabled} size={size} - ref={this.setTargetRef} onClick={this.handleClick} onMouseDown={this.handleMouseDown} onKeyDown={this.handleButtonKeyDown} @@ -336,19 +306,27 @@ export default class Dropdown extends React.PureComponent { return ( - {button} - - - + + {button} + + + {({ props, arrowProps, placement }) => ( +
+
+
+ +
+
+ )} ); diff --git a/app/javascript/flavours/glitch/components/edited_timestamp/containers/dropdown_menu_container.js b/app/javascript/flavours/glitch/components/edited_timestamp/containers/dropdown_menu_container.js index 8b73663d4..a1519757d 100644 --- a/app/javascript/flavours/glitch/components/edited_timestamp/containers/dropdown_menu_container.js +++ b/app/javascript/flavours/glitch/components/edited_timestamp/containers/dropdown_menu_container.js @@ -4,7 +4,6 @@ import { fetchHistory } from 'flavours/glitch/actions/history'; import DropdownMenu from 'flavours/glitch/components/dropdown_menu'; const mapStateToProps = (state, { statusId }) => ({ - dropdownPlacement: state.getIn(['dropdown_menu', 'placement']), openDropdownId: state.getIn(['dropdown_menu', 'openId']), openedViaKeyboard: state.getIn(['dropdown_menu', 'keyboard']), items: state.getIn(['history', statusId, 'items']), @@ -13,9 +12,9 @@ const mapStateToProps = (state, { statusId }) => ({ const mapDispatchToProps = (dispatch, { statusId }) => ({ - onOpen (id, onItemClick, dropdownPlacement, keyboard) { + onOpen (id, onItemClick, keyboard) { dispatch(fetchHistory(statusId)); - dispatch(openDropdownMenu(id, dropdownPlacement, keyboard)); + dispatch(openDropdownMenu(id, keyboard)); }, onClose (id) { diff --git a/app/javascript/flavours/glitch/containers/dropdown_menu_container.js b/app/javascript/flavours/glitch/containers/dropdown_menu_container.js index b2dff63db..43ce8ca63 100644 --- a/app/javascript/flavours/glitch/containers/dropdown_menu_container.js +++ b/app/javascript/flavours/glitch/containers/dropdown_menu_container.js @@ -5,18 +5,17 @@ import DropdownMenu from 'flavours/glitch/components/dropdown_menu'; import { isUserTouching } from '../is_mobile'; const mapStateToProps = state => ({ - dropdownPlacement: state.getIn(['dropdown_menu', 'placement']), openDropdownId: state.getIn(['dropdown_menu', 'openId']), openedViaKeyboard: state.getIn(['dropdown_menu', 'keyboard']), }); const mapDispatchToProps = (dispatch, { status, items, scrollKey }) => ({ - onOpen(id, onItemClick, dropdownPlacement, keyboard) { + onOpen(id, onItemClick, keyboard) { dispatch(isUserTouching() ? openModal('ACTIONS', { status, actions: items, onClick: onItemClick, - }) : openDropdownMenu(id, dropdownPlacement, keyboard, scrollKey)); + }) : openDropdownMenu(id, keyboard, scrollKey)); }, onClose(id) { diff --git a/app/javascript/flavours/glitch/features/compose/components/dropdown.js b/app/javascript/flavours/glitch/features/compose/components/dropdown.js index 3de198c45..924618930 100644 --- a/app/javascript/flavours/glitch/features/compose/components/dropdown.js +++ b/app/javascript/flavours/glitch/features/compose/components/dropdown.js @@ -2,7 +2,7 @@ import classNames from 'classnames'; import PropTypes from 'prop-types'; import React from 'react'; -import Overlay from 'react-overlays/lib/Overlay'; +import Overlay from 'react-overlays/Overlay'; // Components. import IconButton from 'flavours/glitch/components/icon_button'; @@ -45,7 +45,7 @@ export default class ComposerOptionsDropdown extends React.PureComponent { }; // Toggles opening and closing the dropdown. - handleToggle = ({ target, type }) => { + handleToggle = ({ type }) => { const { onModalOpen } = this.props; const { open } = this.state; @@ -59,11 +59,9 @@ export default class ComposerOptionsDropdown extends React.PureComponent { } } } else { - const { top } = target.getBoundingClientRect(); if (this.state.open && this.activeElement) { this.activeElement.focus({ preventScroll: true }); } - this.setState({ placement: top * 2 < innerHeight ? 'bottom' : 'top' }); this.setState({ open: !this.state.open, openedViaKeyboard: type !== 'click' }); } } @@ -158,6 +156,18 @@ export default class ComposerOptionsDropdown extends React.PureComponent { }; } + setTargetRef = c => { + this.target = c; + } + + findTarget = () => { + return this.target; + } + + handleOverlayEnter = (state) => { + this.setState({ placement: state.placement }); + } + // Rendering. render () { const { @@ -179,6 +189,7 @@ export default class ComposerOptionsDropdown extends React.PureComponent {
- + {({ props, placement }) => ( +
+
+ +
+
+ )}
); diff --git a/app/javascript/flavours/glitch/features/compose/components/dropdown_menu.js b/app/javascript/flavours/glitch/features/compose/components/dropdown_menu.js index 09e8fc35a..c4895dfd0 100644 --- a/app/javascript/flavours/glitch/features/compose/components/dropdown_menu.js +++ b/app/javascript/flavours/glitch/features/compose/components/dropdown_menu.js @@ -1,7 +1,6 @@ // Package imports. import PropTypes from 'prop-types'; import React from 'react'; -import spring from 'react-motion/lib/spring'; import ImmutablePureComponent from 'react-immutable-pure-component'; import classNames from 'classnames'; @@ -10,15 +9,8 @@ import Icon from 'flavours/glitch/components/icon'; // Utils. import { withPassive } from 'flavours/glitch/utils/dom_helpers'; -import Motion from '../../ui/util/optional_motion'; import { assignHandlers } from 'flavours/glitch/utils/react_helpers'; -// The spring to use with our motion. -const springMotion = spring(1, { - damping: 35, - stiffness: 400, -}); - // The component. export default class ComposerOptionsDropdownContent extends React.PureComponent { @@ -44,7 +36,6 @@ export default class ComposerOptionsDropdownContent extends React.PureComponent }; state = { - mounted: false, value: this.props.openedViaKeyboard ? this.props.items[0].name : undefined, }; @@ -56,7 +47,7 @@ export default class ComposerOptionsDropdownContent extends React.PureComponent } // Stores our node in `this.node`. - handleRef = (node) => { + setRef = (node) => { this.node = node; } @@ -69,7 +60,6 @@ export default class ComposerOptionsDropdownContent extends React.PureComponent } else { this.node.firstChild.focus({ preventScroll: true }); } - this.setState({ mounted: true }); } // On unmounting, we remove our listeners. @@ -191,7 +181,6 @@ export default class ComposerOptionsDropdownContent extends React.PureComponent // Rendering. render () { - const { mounted } = this.state; const { items, onChange, @@ -201,36 +190,9 @@ export default class ComposerOptionsDropdownContent extends React.PureComponent // The result. return ( - - {({ opacity, scaleX, scaleY }) => ( - // It should not be transformed when mounting because the resulting - // size will be used to determine the coordinate of the menu by - // react-overlays -
- {!!items && items.map((item, i) => this.renderItem(item, i))} -
- )} -
+
+ {!!items && items.map((item, i) => this.renderItem(item, i))} +
); } diff --git a/app/javascript/flavours/glitch/features/compose/components/emoji_picker_dropdown.js b/app/javascript/flavours/glitch/features/compose/components/emoji_picker_dropdown.js index 546d398a0..38c735551 100644 --- a/app/javascript/flavours/glitch/features/compose/components/emoji_picker_dropdown.js +++ b/app/javascript/flavours/glitch/features/compose/components/emoji_picker_dropdown.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import { defineMessages, injectIntl, FormattedMessage } from 'react-intl'; import { EmojiPicker as EmojiPickerAsync } from '../../ui/util/async-components'; -import Overlay from 'react-overlays/lib/Overlay'; +import Overlay from 'react-overlays/Overlay'; import classNames from 'classnames'; import ImmutablePropTypes from 'react-immutable-proptypes'; import { supportsPassiveEvents } from 'detect-passive-events'; @@ -155,9 +155,6 @@ class EmojiPickerMenu extends React.PureComponent { onClose: PropTypes.func.isRequired, onPick: PropTypes.func.isRequired, style: PropTypes.object, - placement: PropTypes.string, - arrowOffsetLeft: PropTypes.string, - arrowOffsetTop: PropTypes.string, intl: PropTypes.object.isRequired, skinTone: PropTypes.number.isRequired, onSkinTone: PropTypes.func.isRequired, @@ -326,14 +323,13 @@ class EmojiPickerDropdown extends React.PureComponent { state = { active: false, loading: false, - placement: null, }; setRef = (c) => { this.dropdown = c; } - onShowDropdown = ({ target }) => { + onShowDropdown = () => { this.setState({ active: true }); if (!EmojiPicker) { @@ -348,9 +344,6 @@ class EmojiPickerDropdown extends React.PureComponent { this.setState({ loading: false, active: false }); }); } - - const { top } = target.getBoundingClientRect(); - this.setState({ placement: top * 2 < innerHeight ? 'bottom' : 'top' }); } onHideDropdown = () => { @@ -384,7 +377,7 @@ class EmojiPickerDropdown extends React.PureComponent { render () { const { intl, onPickEmoji, onSkinTone, skinTone, frequentlyUsedEmojis, button } = this.props; const title = intl.formatMessage(messages.emoji); - const { active, loading, placement } = this.state; + const { active, loading } = this.state; return (
@@ -396,16 +389,22 @@ class EmojiPickerDropdown extends React.PureComponent { />}
- - + + {({ props, placement })=> ( +
+
+ +
+
+ )}
); diff --git a/app/javascript/flavours/glitch/features/compose/components/language_dropdown.js b/app/javascript/flavours/glitch/features/compose/components/language_dropdown.js index a3256aa9b..07d138f52 100644 --- a/app/javascript/flavours/glitch/features/compose/components/language_dropdown.js +++ b/app/javascript/flavours/glitch/features/compose/components/language_dropdown.js @@ -2,9 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import { injectIntl, defineMessages } from 'react-intl'; import TextIconButton from './text_icon_button'; -import Overlay from 'react-overlays/lib/Overlay'; -import Motion from 'flavours/glitch/features/ui/util/optional_motion'; -import spring from 'react-motion/lib/spring'; +import Overlay from 'react-overlays/Overlay'; import { supportsPassiveEvents } from 'detect-passive-events'; import classNames from 'classnames'; import { languages as preloadedLanguages } from 'flavours/glitch/initial_state'; @@ -22,10 +20,8 @@ const listenerOptions = supportsPassiveEvents ? { passive: true } : false; class LanguageDropdownMenu extends React.PureComponent { static propTypes = { - style: PropTypes.object, value: PropTypes.string.isRequired, frequentlyUsedLanguages: PropTypes.arrayOf(PropTypes.string).isRequired, - placement: PropTypes.string.isRequired, onClose: PropTypes.func.isRequired, onChange: PropTypes.func.isRequired, languages: PropTypes.arrayOf(PropTypes.arrayOf(PropTypes.string)), @@ -37,7 +33,6 @@ class LanguageDropdownMenu extends React.PureComponent { }; state = { - mounted: false, searchValue: '', }; @@ -50,7 +45,6 @@ class LanguageDropdownMenu extends React.PureComponent { componentDidMount () { document.addEventListener('click', this.handleDocumentClick, false); document.addEventListener('touchend', this.handleDocumentClick, listenerOptions); - this.setState({ mounted: true }); // Because of https://github.com/react-bootstrap/react-bootstrap/issues/2614 we need // to wait for a frame before focusing @@ -222,29 +216,22 @@ class LanguageDropdownMenu extends React.PureComponent { } render () { - const { style, placement, intl } = this.props; - const { mounted, searchValue } = this.state; + const { intl } = this.props; + const { searchValue } = this.state; const isSearching = searchValue !== ''; const results = this.search(); return ( - - {({ opacity, scaleX, scaleY }) => ( - // It should not be transformed when mounting because the resulting - // size will be used to determine the coordinate of the menu by - // react-overlays -
-
- - -
+
+
+ + +
-
- {results.map(this.renderItem)} -
-
- )} - +
+ {results.map(this.renderItem)} +
+
); } @@ -266,14 +253,11 @@ class LanguageDropdown extends React.PureComponent { placement: 'bottom', }; - handleToggle = ({ target }) => { - const { top } = target.getBoundingClientRect(); - + handleToggle = () => { if (this.state.open && this.activeElement) { this.activeElement.focus({ preventScroll: true }); } - this.setState({ placement: top * 2 < innerHeight ? 'bottom' : 'top' }); this.setState({ open: !this.state.open }); } @@ -293,13 +277,25 @@ class LanguageDropdown extends React.PureComponent { onChange(value); } + setTargetRef = c => { + this.target = c; + } + + findTarget = () => { + return this.target; + } + + handleOverlayEnter = (state) => { + this.setState({ placement: state.placement }); + } + render () { const { value, intl, frequentlyUsedLanguages } = this.props; const { open, placement } = this.state; return ( -
-
+
+
- - + + {({ props, placement }) => ( +
+
+ +
+
+ )}
); diff --git a/app/javascript/flavours/glitch/features/compose/components/search.js b/app/javascript/flavours/glitch/features/compose/components/search.js index 9f90a767d..e5874de75 100644 --- a/app/javascript/flavours/glitch/features/compose/components/search.js +++ b/app/javascript/flavours/glitch/features/compose/components/search.js @@ -3,13 +3,12 @@ import classNames from 'classnames'; import PropTypes from 'prop-types'; import React from 'react'; import { connect } from 'react-redux'; -import spring from 'react-motion/lib/spring'; import { injectIntl, FormattedMessage, defineMessages, } from 'react-intl'; -import Overlay from 'react-overlays/lib/Overlay'; +import Overlay from 'react-overlays/Overlay'; // Components. import Icon from 'flavours/glitch/components/icon'; @@ -17,7 +16,6 @@ import Icon from 'flavours/glitch/components/icon'; // Utils. import { focusRoot } from 'flavours/glitch/utils/dom_helpers'; import { searchEnabled } from 'flavours/glitch/initial_state'; -import Motion from '../../ui/util/optional_motion'; const messages = defineMessages({ placeholder: { id: 'search.placeholder', defaultMessage: 'Search' }, @@ -26,31 +24,20 @@ const messages = defineMessages({ class SearchPopout extends React.PureComponent { - static propTypes = { - style: PropTypes.object, - }; - render () { - const { style } = this.props; const extraInformation = searchEnabled ? : ; return ( -
- - {({ opacity, scaleX, scaleY }) => ( -
-

- -
    -
  • #example
  • -
  • @username@domain
  • -
  • URL
  • -
  • URL
  • -
- - {extraInformation} -
- )} -
+
+

+ +
    +
  • #example
  • +
  • @username@domain
  • +
  • URL
  • +
  • URL
  • +
+ + {extraInformation}
); } @@ -136,6 +123,10 @@ class Search extends React.PureComponent { } } + findTarget = () => { + return this.searchForm; + } + render () { const { intl, value, submitted } = this.props; const { expanded } = this.state; @@ -161,8 +152,14 @@ class Search extends React.PureComponent {
- - + + {({ props, placement }) => ( +
+
+ +
+
+ )}
); diff --git a/app/javascript/flavours/glitch/reducers/dropdown_menu.js b/app/javascript/flavours/glitch/reducers/dropdown_menu.js index a78a11acc..51bf9375b 100644 --- a/app/javascript/flavours/glitch/reducers/dropdown_menu.js +++ b/app/javascript/flavours/glitch/reducers/dropdown_menu.js @@ -4,12 +4,12 @@ import { DROPDOWN_MENU_CLOSE, } from '../actions/dropdown_menu'; -const initialState = Immutable.Map({ openId: null, placement: null, keyboard: false, scroll_key: null }); +const initialState = Immutable.Map({ openId: null, keyboard: false, scroll_key: null }); export default function dropdownMenu(state = initialState, action) { switch (action.type) { case DROPDOWN_MENU_OPEN: - return state.merge({ openId: action.id, placement: action.placement, keyboard: action.keyboard, scroll_key: action.scroll_key }); + return state.merge({ openId: action.id, keyboard: action.keyboard, scroll_key: action.scroll_key }); case DROPDOWN_MENU_CLOSE: return state.get('openId') === action.id ? state.set('openId', null).set('scroll_key', null) : state; default: diff --git a/app/javascript/flavours/glitch/styles/components/compose_form.scss b/app/javascript/flavours/glitch/styles/components/compose_form.scss index 72d3aad1d..aa2d52ed0 100644 --- a/app/javascript/flavours/glitch/styles/components/compose_form.scss +++ b/app/javascript/flavours/glitch/styles/components/compose_form.scss @@ -586,7 +586,6 @@ } .privacy-dropdown__dropdown { - position: absolute; border-radius: 4px; box-shadow: 2px 4px 15px rgba($base-shadow-color, 0.4); background: $simple-background-color; @@ -653,7 +652,6 @@ .language-dropdown { &__dropdown { - position: absolute; background: $simple-background-color; box-shadow: 2px 4px 15px rgba($base-shadow-color, 0.4); border-radius: 4px; diff --git a/app/javascript/flavours/glitch/styles/components/index.scss b/app/javascript/flavours/glitch/styles/components/index.scss index b7a54cd2b..d50316366 100644 --- a/app/javascript/flavours/glitch/styles/components/index.scss +++ b/app/javascript/flavours/glitch/styles/components/index.scss @@ -346,9 +346,8 @@ } } -.dropdown-menu { - position: absolute; - transform-origin: 50% 0; +body > [data-popper-placement] { + z-index: 3; } .invisible { @@ -532,6 +531,42 @@ } } +.dropdown-animation { + animation: dropdown 300ms cubic-bezier(0.1, 0.7, 0.1, 1); + + @keyframes dropdown { + from { + opacity: 0; + transform: scaleX(0.85) scaleY(0.75); + } + + to { + opacity: 1; + transform: scaleX(1) scaleY(1); + } + } + + &.top { + transform-origin: bottom; + } + + &.right { + transform-origin: left; + } + + &.bottom { + transform-origin: top; + } + + &.left { + transform-origin: right; + } + + .reduce-motion & { + animation: none; + } +} + .dropdown { display: inline-block; } @@ -600,36 +635,42 @@ .dropdown-menu__arrow { position: absolute; - width: 0; - height: 0; - border: 0 solid transparent; - &.left { - right: -5px; - margin-top: -5px; - border-width: 5px 0 5px 5px; - border-left-color: $ui-secondary-color; + &::before { + content: ''; + display: block; + width: 14px; + height: 5px; + background-color: $ui-secondary-color; + mask-image: url("data:image/svg+xml;utf8,"); } &.top { bottom: -5px; - margin-left: -7px; - border-width: 5px 7px 0; - border-top-color: $ui-secondary-color; + + &::before { + transform: rotate(180deg); + } + } + + &.right { + left: -9px; + + &::before { + transform: rotate(-90deg); + } } &.bottom { top: -5px; - margin-left: -7px; - border-width: 0 7px 5px; - border-bottom-color: $ui-secondary-color; } - &.right { - left: -5px; - margin-top: -5px; - border-width: 5px 5px 5px 0; - border-right-color: $ui-secondary-color; + &.left { + right: -9px; + + &::before { + transform: rotate(90deg); + } } } diff --git a/app/javascript/flavours/glitch/styles/components/modal.scss b/app/javascript/flavours/glitch/styles/components/modal.scss index 8ba8bec10..972e01e7d 100644 --- a/app/javascript/flavours/glitch/styles/components/modal.scss +++ b/app/javascript/flavours/glitch/styles/components/modal.scss @@ -37,7 +37,6 @@ .modal-root__modal { pointer-events: auto; display: flex; - z-index: 9999; } .media-modal__zoom-button { diff --git a/app/javascript/flavours/glitch/styles/mastodon-light/diff.scss b/app/javascript/flavours/glitch/styles/mastodon-light/diff.scss index 9fc1aed2a..2ec2da833 100644 --- a/app/javascript/flavours/glitch/styles/mastodon-light/diff.scss +++ b/app/javascript/flavours/glitch/styles/mastodon-light/diff.scss @@ -285,22 +285,8 @@ html { .dropdown-menu { background: $white; - &__arrow { - &.left { - border-left-color: $white; - } - - &.top { - border-top-color: $white; - } - - &.bottom { - border-bottom-color: $white; - } - - &.right { - border-right-color: $white; - } + &__arrow::before { + background-color: $white; } &__item { -- cgit From 598888a7c45a5ccbf7debfc0cdc630232b9cfce6 Mon Sep 17 00:00:00 2001 From: Claire Date: Thu, 12 Jan 2023 16:43:02 +0100 Subject: [Glitch] Remove hardcoded width from dropdown overlays Port f4a6365f55c3b16494337e0880b42108cc4a171a to glitch-soc Signed-off-by: Claire --- app/javascript/flavours/glitch/features/compose/components/dropdown.js | 2 +- .../flavours/glitch/features/compose/components/language_dropdown.js | 2 +- app/javascript/flavours/glitch/styles/components/emoji.scss | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'app/javascript/flavours/glitch') diff --git a/app/javascript/flavours/glitch/features/compose/components/dropdown.js b/app/javascript/flavours/glitch/features/compose/components/dropdown.js index 924618930..d98b311d9 100644 --- a/app/javascript/flavours/glitch/features/compose/components/dropdown.js +++ b/app/javascript/flavours/glitch/features/compose/components/dropdown.js @@ -221,7 +221,7 @@ export default class ComposerOptionsDropdown extends React.PureComponent { popperConfig={{ strategy: 'fixed', onFirstUpdate: this.handleOverlayEnter }} > {({ props, placement }) => ( -
+
{({ props, placement }) => ( -
+