diff options
Diffstat (limited to 'app/javascript/flavours/glitch')
148 files changed, 767 insertions, 16781 deletions
diff --git a/app/javascript/flavours/glitch/components/animated_number.jsx b/app/javascript/flavours/glitch/components/animated_number.jsx deleted file mode 100644 index dd21d97f0..000000000 --- a/app/javascript/flavours/glitch/components/animated_number.jsx +++ /dev/null @@ -1,76 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import ShortNumber from 'mastodon/components/short_number'; -import TransitionMotion from 'react-motion/lib/TransitionMotion'; -import spring from 'react-motion/lib/spring'; -import { reduceMotion } from 'flavours/glitch/initial_state'; - -const obfuscatedCount = count => { - if (count < 0) { - return 0; - } else if (count <= 1) { - return count; - } else { - return '1+'; - } -}; - -export default class AnimatedNumber extends React.PureComponent { - - static propTypes = { - value: PropTypes.number.isRequired, - obfuscate: PropTypes.bool, - }; - - state = { - direction: 1, - }; - - componentWillReceiveProps (nextProps) { - if (nextProps.value > this.props.value) { - this.setState({ direction: 1 }); - } else if (nextProps.value < this.props.value) { - this.setState({ direction: -1 }); - } - } - - willEnter = () => { - const { direction } = this.state; - - return { y: -1 * direction }; - }; - - willLeave = () => { - const { direction } = this.state; - - return { y: spring(1 * direction, { damping: 35, stiffness: 400 }) }; - }; - - render () { - const { value, obfuscate } = this.props; - const { direction } = this.state; - - if (reduceMotion) { - return obfuscate ? obfuscatedCount(value) : <ShortNumber value={value} />; - } - - const styles = [{ - key: `${value}`, - data: value, - style: { y: spring(0, { damping: 35, stiffness: 400 }) }, - }]; - - return ( - <TransitionMotion styles={styles} willEnter={this.willEnter} willLeave={this.willLeave}> - {items => ( - <span className='animated-number'> - {items.map(({ key, data, style }) => ( - <span key={key} style={{ position: (direction * style.y) > 0 ? 'absolute' : 'static', transform: `translateY(${style.y * 100}%)` }}>{obfuscate ? obfuscatedCount(data) : <ShortNumber value={data} />}</span> - ))} - </span> - )} - </TransitionMotion> - ); - } - -} diff --git a/app/javascript/flavours/glitch/components/animated_number.tsx b/app/javascript/flavours/glitch/components/animated_number.tsx new file mode 100644 index 000000000..1673ff41b --- /dev/null +++ b/app/javascript/flavours/glitch/components/animated_number.tsx @@ -0,0 +1,58 @@ +import React, { useCallback, useState } from 'react'; +import ShortNumber from './short_number'; +import { TransitionMotion, spring } from 'react-motion'; +import { reduceMotion } from '../initial_state'; + +const obfuscatedCount = (count: number) => { + if (count < 0) { + return 0; + } else if (count <= 1) { + return count; + } else { + return '1+'; + } +}; + +type Props = { + value: number; + obfuscate?: boolean; +} +export const AnimatedNumber: React.FC<Props> = ({ + value, + obfuscate, +})=> { + const [previousValue, setPreviousValue] = useState(value); + const [direction, setDirection] = useState<1|-1>(1); + + if (previousValue !== value) { + setPreviousValue(value); + setDirection(value > previousValue ? 1 : -1); + } + + const willEnter = useCallback(() => ({ y: -1 * direction }), [direction]); + const willLeave = useCallback(() => ({ y: spring(1 * direction, { damping: 35, stiffness: 400 }) }), [direction]); + + if (reduceMotion) { + return obfuscate ? <>{obfuscatedCount(value)}</> : <ShortNumber value={value} />; + } + + const styles = [{ + key: `${value}`, + data: value, + style: { y: spring(0, { damping: 35, stiffness: 400 }) }, + }]; + + return ( + <TransitionMotion styles={styles} willEnter={willEnter} willLeave={willLeave}> + {items => ( + <span className='animated-number'> + {items.map(({ key, data, style }) => ( + <span key={key} style={{ position: (direction * style.y) > 0 ? 'absolute' : 'static', transform: `translateY(${style.y * 100}%)` }}>{obfuscate ? obfuscatedCount(data) : <ShortNumber value={data} />}</span> + ))} + </span> + )} + </TransitionMotion> + ); +}; + +export default AnimatedNumber; diff --git a/app/javascript/flavours/glitch/components/gifv.jsx b/app/javascript/flavours/glitch/components/gifv.jsx deleted file mode 100644 index 1ce7e7c29..000000000 --- a/app/javascript/flavours/glitch/components/gifv.jsx +++ /dev/null @@ -1,76 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -export default class GIFV extends React.PureComponent { - - static propTypes = { - src: PropTypes.string.isRequired, - alt: PropTypes.string, - lang: PropTypes.string, - width: PropTypes.number, - height: PropTypes.number, - onClick: PropTypes.func, - }; - - state = { - loading: true, - }; - - handleLoadedData = () => { - this.setState({ loading: false }); - }; - - componentWillReceiveProps (nextProps) { - if (nextProps.src !== this.props.src) { - this.setState({ loading: true }); - } - } - - handleClick = e => { - const { onClick } = this.props; - - if (onClick) { - e.stopPropagation(); - onClick(); - } - }; - - render () { - const { src, width, height, alt, lang } = this.props; - const { loading } = this.state; - - return ( - <div className='gifv' style={{ position: 'relative' }}> - {loading && ( - <canvas - width={width} - height={height} - role='button' - tabIndex={0} - aria-label={alt} - title={alt} - lang={lang} - onClick={this.handleClick} - /> - )} - - <video - src={src} - role='button' - tabIndex={0} - aria-label={alt} - title={alt} - lang={lang} - muted - loop - autoPlay - playsInline - onClick={this.handleClick} - onLoadedData={this.handleLoadedData} - style={{ position: loading ? 'absolute' : 'static', top: 0, left: 0 }} - /> - </div> - ); - } - -} diff --git a/app/javascript/flavours/glitch/components/gifv.tsx b/app/javascript/flavours/glitch/components/gifv.tsx new file mode 100644 index 000000000..8968170c5 --- /dev/null +++ b/app/javascript/flavours/glitch/components/gifv.tsx @@ -0,0 +1,68 @@ +import React, { useCallback, useState } from 'react'; + +type Props = { + src: string; + key: string; + alt?: string; + lang?: string; + width: number; + height: number; + onClick?: () => void; +} + +export const GIFV: React.FC<Props> = ({ + src, + alt, + lang, + width, + height, + onClick, +})=> { + const [loading, setLoading] = useState(true); + + const handleLoadedData: React.ReactEventHandler<HTMLVideoElement> = useCallback(() => { + setLoading(false); + }, [setLoading]); + + const handleClick: React.MouseEventHandler = useCallback((e) => { + if (onClick) { + e.stopPropagation(); + onClick(); + } + }, [onClick]); + + return ( + <div className='gifv' style={{ position: 'relative' }}> + {loading && ( + <canvas + width={width} + height={height} + role='button' + tabIndex={0} + aria-label={alt} + title={alt} + lang={lang} + onClick={handleClick} + /> + )} + + <video + src={src} + role='button' + tabIndex={0} + aria-label={alt} + title={alt} + lang={lang} + muted + loop + autoPlay + playsInline + onClick={handleClick} + onLoadedData={handleLoadedData} + style={{ position: loading ? 'absolute' : 'static', top: 0, left: 0 }} + /> + </div> + ); +}; + +export default GIFV; diff --git a/app/javascript/flavours/glitch/components/missing_indicator.jsx b/app/javascript/flavours/glitch/components/missing_indicator.jsx deleted file mode 100644 index 08e39c236..000000000 --- a/app/javascript/flavours/glitch/components/missing_indicator.jsx +++ /dev/null @@ -1,29 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import { FormattedMessage } from 'react-intl'; -import illustration from 'flavours/glitch/images/elephant_ui_disappointed.svg'; -import classNames from 'classnames'; -import { Helmet } from 'react-helmet'; - -const MissingIndicator = ({ fullPage }) => ( - <div className={classNames('regeneration-indicator', { 'regeneration-indicator--without-header': fullPage })}> - <div className='regeneration-indicator__figure'> - <img src={illustration} alt='' /> - </div> - - <div className='regeneration-indicator__label'> - <FormattedMessage id='missing_indicator.label' tagName='strong' defaultMessage='Not found' /> - <FormattedMessage id='missing_indicator.sublabel' defaultMessage='This resource could not be found' /> - </div> - - <Helmet> - <meta name='robots' content='noindex' /> - </Helmet> - </div> -); - -MissingIndicator.propTypes = { - fullPage: PropTypes.bool, -}; - -export default MissingIndicator; diff --git a/app/javascript/flavours/glitch/features/account_gallery/index.jsx b/app/javascript/flavours/glitch/features/account_gallery/index.jsx index 6914bcba7..685b606fa 100644 --- a/app/javascript/flavours/glitch/features/account_gallery/index.jsx +++ b/app/javascript/flavours/glitch/features/account_gallery/index.jsx @@ -13,9 +13,9 @@ import MediaItem from './components/media_item'; import HeaderContainer from 'flavours/glitch/features/account_timeline/containers/header_container'; import ScrollContainer from 'flavours/glitch/containers/scroll_container'; import LoadMore from 'flavours/glitch/components/load_more'; -import MissingIndicator from 'flavours/glitch/components/missing_indicator'; import { openModal } from 'flavours/glitch/actions/modal'; import { normalizeForLookup } from 'flavours/glitch/reducers/accounts_map'; +import BundleColumnError from 'flavours/glitch/features/ui/components/bundle_column_error'; const mapStateToProps = (state, { params: { acct, id } }) => { const accountId = id || state.getIn(['accounts_map', normalizeForLookup(acct)]); @@ -166,9 +166,7 @@ class AccountGallery extends ImmutablePureComponent { if (!isAccount) { return ( - <Column> - <MissingIndicator /> - </Column> + <BundleColumnError multiColumn={multiColumn} errorType='routing' /> ); } diff --git a/app/javascript/flavours/glitch/features/account_timeline/components/header.jsx b/app/javascript/flavours/glitch/features/account_timeline/components/header.jsx index eec065b43..9b3c273bc 100644 --- a/app/javascript/flavours/glitch/features/account_timeline/components/header.jsx +++ b/app/javascript/flavours/glitch/features/account_timeline/components/header.jsx @@ -4,6 +4,7 @@ import PropTypes from 'prop-types'; import InnerHeader from 'flavours/glitch/features/account/components/header'; import ActionBar from 'flavours/glitch/features/account/components/action_bar'; import ImmutablePureComponent from 'react-immutable-pure-component'; +import MemorialNote from './memorial_note'; import { FormattedMessage } from 'react-intl'; import { NavLink } from 'react-router-dom'; import MovedNote from './moved_note'; @@ -116,6 +117,7 @@ export default class Header extends ImmutablePureComponent { return ( <div className='account-timeline__header'> + {(!hidden && account.get('memorial')) && <MemorialNote />} {(!hidden && account.get('moved')) && <MovedNote from={account} to={account.get('moved')} />} <InnerHeader diff --git a/app/javascript/flavours/glitch/features/account_timeline/components/memorial_note.jsx b/app/javascript/flavours/glitch/features/account_timeline/components/memorial_note.jsx new file mode 100644 index 000000000..fed95ac2a --- /dev/null +++ b/app/javascript/flavours/glitch/features/account_timeline/components/memorial_note.jsx @@ -0,0 +1,12 @@ +import React from 'react'; +import { FormattedMessage } from 'react-intl'; + +const MemorialNote = () => ( + <div className='account-memorial-banner'> + <div className='account-memorial-banner__message'> + <FormattedMessage id='account.in_memoriam' defaultMessage='In Memoriam.' /> + </div> + </div> +); + +export default MemorialNote; diff --git a/app/javascript/flavours/glitch/features/account_timeline/index.jsx b/app/javascript/flavours/glitch/features/account_timeline/index.jsx index 38361b1ca..bc1adb1c4 100644 --- a/app/javascript/flavours/glitch/features/account_timeline/index.jsx +++ b/app/javascript/flavours/glitch/features/account_timeline/index.jsx @@ -13,12 +13,12 @@ import ColumnBackButton from 'flavours/glitch/components/column_back_button'; import { List as ImmutableList } from 'immutable'; import ImmutablePureComponent from 'react-immutable-pure-component'; import { FormattedMessage } from 'react-intl'; -import MissingIndicator from 'flavours/glitch/components/missing_indicator'; import TimelineHint from 'flavours/glitch/components/timeline_hint'; import LimitedAccountHint from './components/limited_account_hint'; import { getAccountHidden } from 'flavours/glitch/selectors'; -import { normalizeForLookup } from 'flavours/glitch/reducers/accounts_map'; import { fetchFeaturedTags } from '../../actions/featured_tags'; +import { normalizeForLookup } from 'flavours/glitch/reducers/accounts_map'; +import BundleColumnError from 'flavours/glitch/features/ui/components/bundle_column_error'; const emptyList = ImmutableList(); @@ -160,10 +160,7 @@ class AccountTimeline extends ImmutablePureComponent { ); } else if (!isLoading && !isAccount) { return ( - <Column> - <ColumnBackButton multiColumn={multiColumn} /> - <MissingIndicator /> - </Column> + <BundleColumnError multiColumn={multiColumn} errorType='routing' /> ); } diff --git a/app/javascript/flavours/glitch/features/direct_timeline/components/conversation.jsx b/app/javascript/flavours/glitch/features/direct_timeline/components/conversation.jsx index 63a331086..06984f3ad 100644 --- a/app/javascript/flavours/glitch/features/direct_timeline/components/conversation.jsx +++ b/app/javascript/flavours/glitch/features/direct_timeline/components/conversation.jsx @@ -203,7 +203,7 @@ class Conversation extends ImmutablePureComponent { parseClick={this.parseClick} expanded={isExpanded} onExpandedToggle={this.handleShowMore} - collapsable + collapsible media={media} /> diff --git a/app/javascript/flavours/glitch/features/followers/index.jsx b/app/javascript/flavours/glitch/features/followers/index.jsx index 2565772d1..2c4db665a 100644 --- a/app/javascript/flavours/glitch/features/followers/index.jsx +++ b/app/javascript/flavours/glitch/features/followers/index.jsx @@ -16,12 +16,12 @@ import Column from 'flavours/glitch/features/ui/components/column'; import ProfileColumnHeader from 'flavours/glitch/features/account/components/profile_column_header'; import HeaderContainer from 'flavours/glitch/features/account_timeline/containers/header_container'; import ImmutablePureComponent from 'react-immutable-pure-component'; -import MissingIndicator from 'flavours/glitch/components/missing_indicator'; import ScrollableList from 'flavours/glitch/components/scrollable_list'; import TimelineHint from 'flavours/glitch/components/timeline_hint'; import LimitedAccountHint from '../account_timeline/components/limited_account_hint'; import { getAccountHidden } from 'flavours/glitch/selectors'; import { normalizeForLookup } from 'flavours/glitch/reducers/accounts_map'; +import BundleColumnError from 'flavours/glitch/features/ui/components/bundle_column_error'; const mapStateToProps = (state, { params: { acct, id } }) => { const accountId = id || state.getIn(['accounts_map', normalizeForLookup(acct)]); @@ -117,9 +117,7 @@ class Followers extends ImmutablePureComponent { if (!isAccount) { return ( - <Column> - <MissingIndicator /> - </Column> + <BundleColumnError multiColumn={multiColumn} errorType='routing' /> ); } diff --git a/app/javascript/flavours/glitch/features/following/index.jsx b/app/javascript/flavours/glitch/features/following/index.jsx index 2c05e3310..39ff4c603 100644 --- a/app/javascript/flavours/glitch/features/following/index.jsx +++ b/app/javascript/flavours/glitch/features/following/index.jsx @@ -16,12 +16,12 @@ import Column from 'flavours/glitch/features/ui/components/column'; import ProfileColumnHeader from 'flavours/glitch/features/account/components/profile_column_header'; import HeaderContainer from 'flavours/glitch/features/account_timeline/containers/header_container'; import ImmutablePureComponent from 'react-immutable-pure-component'; -import MissingIndicator from 'flavours/glitch/components/missing_indicator'; import ScrollableList from 'flavours/glitch/components/scrollable_list'; import TimelineHint from 'flavours/glitch/components/timeline_hint'; import LimitedAccountHint from '../account_timeline/components/limited_account_hint'; import { getAccountHidden } from 'flavours/glitch/selectors'; import { normalizeForLookup } from 'flavours/glitch/reducers/accounts_map'; +import BundleColumnError from 'flavours/glitch/features/ui/components/bundle_column_error'; const mapStateToProps = (state, { params: { acct, id } }) => { const accountId = id || state.getIn(['accounts_map', normalizeForLookup(acct)]); @@ -117,9 +117,7 @@ class Following extends ImmutablePureComponent { if (!isAccount) { return ( - <Column> - <MissingIndicator /> - </Column> + <BundleColumnError multiColumn={multiColumn} errorType='routing' /> ); } diff --git a/app/javascript/flavours/glitch/features/generic_not_found/index.jsx b/app/javascript/flavours/glitch/features/generic_not_found/index.jsx deleted file mode 100644 index 4412adaed..000000000 --- a/app/javascript/flavours/glitch/features/generic_not_found/index.jsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react'; -import Column from 'flavours/glitch/features/ui/components/column'; -import MissingIndicator from 'flavours/glitch/components/missing_indicator'; - -const GenericNotFound = () => ( - <Column> - <MissingIndicator fullPage /> - </Column> -); - -export default GenericNotFound; diff --git a/app/javascript/flavours/glitch/features/list_timeline/index.jsx b/app/javascript/flavours/glitch/features/list_timeline/index.jsx index a32383b13..7b802318c 100644 --- a/app/javascript/flavours/glitch/features/list_timeline/index.jsx +++ b/app/javascript/flavours/glitch/features/list_timeline/index.jsx @@ -10,13 +10,12 @@ import { openModal } from 'flavours/glitch/actions/modal'; import { connectListStream } from 'flavours/glitch/actions/streaming'; import { expandListTimeline } from 'flavours/glitch/actions/timelines'; import Column from 'flavours/glitch/components/column'; -import ColumnBackButton from 'flavours/glitch/components/column_back_button'; import ColumnHeader from 'flavours/glitch/components/column_header'; import Icon from 'flavours/glitch/components/icon'; import LoadingIndicator from 'flavours/glitch/components/loading_indicator'; -import MissingIndicator from 'flavours/glitch/components/missing_indicator'; import RadioButton from 'flavours/glitch/components/radio_button'; import StatusListContainer from 'flavours/glitch/features/ui/containers/status_list_container'; +import BundleColumnError from 'flavours/glitch/features/ui/components/bundle_column_error'; const messages = defineMessages({ deleteMessage: { id: 'confirmations.delete_list.message', defaultMessage: 'Are you sure you want to permanently delete this list?' }, @@ -156,11 +155,7 @@ class ListTimeline extends React.PureComponent { ); } else if (list === false) { return ( - <Column> - <div className='scrollable'> - <MissingIndicator /> - </div> - </Column> + <BundleColumnError multiColumn={multiColumn} errorType='routing' /> ); } diff --git a/app/javascript/flavours/glitch/features/status/index.jsx b/app/javascript/flavours/glitch/features/status/index.jsx index f01ad2dbe..5d1160039 100644 --- a/app/javascript/flavours/glitch/features/status/index.jsx +++ b/app/javascript/flavours/glitch/features/status/index.jsx @@ -16,7 +16,6 @@ import { translateStatus, undoStatusTranslation, } from 'flavours/glitch/actions/statuses'; -import MissingIndicator from 'flavours/glitch/components/missing_indicator'; import LoadingIndicator from 'flavours/glitch/components/loading_indicator'; import DetailedStatus from './components/detailed_status'; import ActionBar from './components/action_bar'; @@ -43,7 +42,6 @@ import { initReport } from 'flavours/glitch/actions/reports'; import { initBoostModal } from 'flavours/glitch/actions/boosts'; 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'; import StatusContainer from 'flavours/glitch/containers/status_container'; import { openModal } from 'flavours/glitch/actions/modal'; @@ -56,6 +54,7 @@ import { autoUnfoldCW } from 'flavours/glitch/utils/content_warning'; import { textForScreenReader, defaultMediaVisibility } from 'flavours/glitch/components/status'; import Icon from 'flavours/glitch/components/icon'; import { Helmet } from 'react-helmet'; +import BundleColumnError from 'flavours/glitch/features/ui/components/bundle_column_error'; const messages = defineMessages({ deleteConfirm: { id: 'confirmations.delete.confirm', defaultMessage: 'Delete' }, @@ -64,6 +63,7 @@ const messages = defineMessages({ redraftMessage: { id: 'confirmations.redraft.message', defaultMessage: 'Are you sure you want to delete this status and re-draft it? You will lose all replies, boosts and favourites to it.' }, revealAll: { id: 'status.show_more_all', defaultMessage: 'Show more for all' }, hideAll: { id: 'status.show_less_all', defaultMessage: 'Show less for all' }, + statusTitleWithAttachments: { id: 'status.title.with_attachments', defaultMessage: '{user} posted {attachmentCount, plural, one {an attachment} other {{attachmentCount} attachments}}' }, 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?' }, @@ -162,13 +162,14 @@ const truncate = (str, num) => { } }; -const titleFromStatus = status => { +const titleFromStatus = (intl, status) => { const displayName = status.getIn(['account', 'display_name']); const username = status.getIn(['account', 'username']); - const prefix = displayName.trim().length === 0 ? username : displayName; + const user = displayName.trim().length === 0 ? username : displayName; const text = status.get('search_index'); + const attachmentCount = status.get('media_attachments').size; - return `${prefix}: "${truncate(text, 30)}"`; + return text ? `${user}: "${truncate(text, 30)}"` : intl.formatMessage(messages.statusTitleWithAttachments, { user, attachmentCount }); }; class Status extends ImmutablePureComponent { @@ -620,21 +621,18 @@ class Status extends ImmutablePureComponent { if (status === null) { return ( - <Column> - <ColumnBackButton multiColumn={multiColumn} /> - <MissingIndicator /> - </Column> + <BundleColumnError multiColumn={multiColumn} errorType='routing' /> ); } const isExpanded = settings.getIn(['content_warnings', 'shared_state']) ? !status.get('hidden') : this.state.isExpanded; if (ancestorsIds && ancestorsIds.size > 0) { - ancestors = <div>{this.renderChildren(ancestorsIds)}</div>; + ancestors = <>{this.renderChildren(ancestorsIds)}</>; } if (descendantsIds && descendantsIds.size > 0) { - descendants = <div>{this.renderChildren(descendantsIds)}</div>; + descendants = <>{this.renderChildren(descendantsIds)}</>; } const isLocal = status.getIn(['account', 'acct'], '').indexOf('@') === -1; @@ -714,7 +712,7 @@ class Status extends ImmutablePureComponent { </ScrollContainer> <Helmet> - <title>{titleFromStatus(status)}</title> + <title>{titleFromStatus(intl, status)}</title> <meta name='robots' content={(isLocal && isIndexable) ? 'all' : 'noindex'} /> </Helmet> </Column> diff --git a/app/javascript/flavours/glitch/features/ui/components/filter_modal.jsx b/app/javascript/flavours/glitch/features/ui/components/filter_modal.jsx index 2d49312e5..440a6ac4b 100644 --- a/app/javascript/flavours/glitch/features/ui/components/filter_modal.jsx +++ b/app/javascript/flavours/glitch/features/ui/components/filter_modal.jsx @@ -131,4 +131,4 @@ class FilterModal extends ImmutablePureComponent { } -export default connect(injectIntl(FilterModal)); +export default connect()(injectIntl(FilterModal)); diff --git a/app/javascript/flavours/glitch/features/ui/components/focal_point_modal.jsx b/app/javascript/flavours/glitch/features/ui/components/focal_point_modal.jsx index a5637d31c..78aee8dfe 100644 --- a/app/javascript/flavours/glitch/features/ui/components/focal_point_modal.jsx +++ b/app/javascript/flavours/glitch/features/ui/components/focal_point_modal.jsx @@ -371,7 +371,7 @@ class FocalPointModal extends ImmutablePureComponent { {focals && ( <div className={classNames('focal-point', { dragging })} ref={this.setRef} onMouseDown={this.handleMouseDown} onTouchStart={this.handleTouchStart}> {media.get('type') === 'image' && <ImageLoader src={media.get('url')} width={width} height={height} alt='' />} - {media.get('type') === 'gifv' && <GIFV src={media.get('url')} width={width} height={height} />} + {media.get('type') === 'gifv' && <GIFV src={media.get('url')} key={media.get('url')} width={width} height={height} />} <div className='focal-point__preview'> <strong><FormattedMessage id='upload_modal.preview_label' defaultMessage='Preview ({ratio})' values={{ ratio: '16:9' }} /></strong> diff --git a/app/javascript/flavours/glitch/features/ui/components/media_modal.jsx b/app/javascript/flavours/glitch/features/ui/components/media_modal.jsx index fd2bd43cf..6ca96b743 100644 --- a/app/javascript/flavours/glitch/features/ui/components/media_modal.jsx +++ b/app/javascript/flavours/glitch/features/ui/components/media_modal.jsx @@ -188,7 +188,7 @@ class MediaModal extends ImmutablePureComponent { src={image.get('url')} width={width} height={height} - key={image.get('preview_url')} + key={image.get('url')} alt={image.get('description')} lang={language} onClick={this.toggleNavigation} diff --git a/app/javascript/flavours/glitch/features/ui/util/async-components.js b/app/javascript/flavours/glitch/features/ui/util/async-components.js index 03e501628..0e632bc81 100644 --- a/app/javascript/flavours/glitch/features/ui/util/async-components.js +++ b/app/javascript/flavours/glitch/features/ui/util/async-components.js @@ -90,10 +90,6 @@ export function FollowRequests () { return import(/* webpackChunkName: "flavours/glitch/async/follow_requests" */'flavours/glitch/features/follow_requests'); } -export function GenericNotFound () { - return import(/* webpackChunkName: "flavours/glitch/async/generic_not_found" */'flavours/glitch/features/generic_not_found'); -} - export function FavouritedStatuses () { return import(/* webpackChunkName: "flavours/glitch/async/favourited_statuses" */'flavours/glitch/features/favourited_statuses'); } diff --git a/app/javascript/flavours/glitch/initial_state.js b/app/javascript/flavours/glitch/initial_state.js index 8b135006d..c3b27687d 100644 --- a/app/javascript/flavours/glitch/initial_state.js +++ b/app/javascript/flavours/glitch/initial_state.js @@ -96,10 +96,12 @@ const element = document.getElementById('initial-state'); const initialState = element?.textContent && JSON.parse(element.textContent); // Glitch-soc-specific “local settings” -try { - initialState.local_settings = JSON.parse(localStorage.getItem('mastodon-settings')); -} catch (e) { - initialState.local_settings = {}; +if (initialState) { + try { + initialState.local_settings = JSON.parse(localStorage.getItem('mastodon-settings')); + } catch (e) { + initialState.local_settings = {}; + } } /** diff --git a/app/javascript/flavours/glitch/locales/af.json b/app/javascript/flavours/glitch/locales/af.json index 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/af.json +++ b/app/javascript/flavours/glitch/locales/af.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/an.json +++ b/app/javascript/flavours/glitch/locales/an.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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/ar.json b/app/javascript/flavours/glitch/locales/ar.json index 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/ar.json +++ b/app/javascript/flavours/glitch/locales/ar.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/ast.json +++ b/app/javascript/flavours/glitch/locales/ast.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/be.json +++ b/app/javascript/flavours/glitch/locales/be.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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/bg.json b/app/javascript/flavours/glitch/locales/bg.json index 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/bg.json +++ b/app/javascript/flavours/glitch/locales/bg.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/bn.json +++ b/app/javascript/flavours/glitch/locales/bn.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/br.json +++ b/app/javascript/flavours/glitch/locales/br.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/bs.json +++ b/app/javascript/flavours/glitch/locales/bs.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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/ca.json b/app/javascript/flavours/glitch/locales/ca.json index 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/ca.json +++ b/app/javascript/flavours/glitch/locales/ca.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/ckb.json +++ b/app/javascript/flavours/glitch/locales/ckb.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/co.json +++ b/app/javascript/flavours/glitch/locales/co.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 91fec35d6..a3d1c3b9c 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.keyboard_shortcuts": "Klávesové zkratky", @@ -85,28 +53,18 @@ "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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", "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_height": "Height (in pixels) for a toot to be considered lengthy", "settings.auto_collapse_lengthy": "Dlouhé příspěvky", "settings.auto_collapse_media": "Příspěvky s přílohami", "settings.auto_collapse_notifications": "Oznámení", @@ -178,7 +136,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)", @@ -191,16 +148,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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/cy.json +++ b/app/javascript/flavours/glitch/locales/cy.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/da.json +++ b/app/javascript/flavours/glitch/locales/da.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 5851daaf7..f14e14d98 100644 --- a/app/javascript/flavours/glitch/locales/de.json +++ b/app/javascript/flavours/glitch/locales/de.json @@ -97,12 +97,12 @@ "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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", + "search_popout.search_format": "Erweitertes Suchformat", + "search_popout.tips.full_text": "Simple Suchanfragen geben sowohl Beiträge, die du geschrieben, favorisiert oder geteilt hast oder in denen du erwähnt wurdest, als auch passende Nutzernamen, Anzeigenamen oder Hashtags, zurück.", + "search_popout.tips.hashtag": "Hashtag", + "search_popout.tips.status": "Beitrag", + "search_popout.tips.text": "Simple Suchanfragen geben passende Nutzernamen, Anzeigenamen oder Hashtags zurück", + "search_popout.tips.user": "Nutzer", "settings.always_show_spoilers_field": "Das Inhaltswarnungs-Feld immer aktivieren", "settings.auto_collapse": "Automatisches Einklappen", "settings.auto_collapse_all": "Alles", @@ -158,7 +158,7 @@ "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": "Erwähnungen in angezeigtem Beitrag 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", diff --git a/app/javascript/flavours/glitch/locales/el.json b/app/javascript/flavours/glitch/locales/el.json index 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/el.json +++ b/app/javascript/flavours/glitch/locales/el.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/en-GB.json +++ b/app/javascript/flavours/glitch/locales/en-GB.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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/eo.json b/app/javascript/flavours/glitch/locales/eo.json index 88396f186..5905ad548 100644 --- a/app/javascript/flavours/glitch/locales/eo.json +++ b/app/javascript/flavours/glitch/locales/eo.json @@ -1,5 +1,5 @@ { - "about.fork_disclaimer": "Glitch-soc is free open source software forked from Mastodon.", + "about.fork_disclaimer": "Glitch-soc estas libera malfermitkoda programo forkigita el Mastodon.", "account.add_account_note": "Aldoni noton por @{name}", "account.disclaimer_full": "Subaj informoj povas nekomplete prezenti la profilon de la uzanto.", "account.follows": "Sekvatoj", @@ -8,23 +8,21 @@ "account.view_full_profile": "Vidi plenan profilon", "account_note.cancel": "Nuligi", "account_note.edit": "Redakti", - "account_note.glitch_placeholder": "No comment provided", + "account_note.glitch_placeholder": "Neniu komento provizita", "account_note.save": "Konservi", "advanced_options.icon_title": "Pliaj opcioj", "advanced_options.local-only.long": "Ne afiŝi al aliaj instancoj", "advanced_options.local-only.short": "Nur loka", "advanced_options.local-only.tooltip": "Ĉi tiu afiŝo estas nur-loka", - "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", + "advanced_options.threaded_mode.short": "Fadena reĝimo", + "advanced_options.threaded_mode.tooltip": "Fadena reĝimo ŝaltita", + "boost_modal.missing_description": "Ĉi tiu afiŝo enhavas plurmedion, ke ne havas priskribon", "column.favourited_by": "Stelumita per", - "column.heading": "Misc", "column.reblogged_by": "Diskonigita de", "column.subheading": "Diversaj agordoj", "column_header.profile": "Profilo", "column_subheading.lists": "Listoj", - "column_subheading.navigation": "Navigation", + "column_subheading.navigation": "Navigado", "community.column_settings.allow_local_only": "Montri nur-lokajn afiŝojn", "compose.attach": "Aldoni…", "compose.attach.doodle": "Desegni ion", @@ -34,173 +32,60 @@ "compose.content-type.plain": "Plata teksto", "compose_form.poll.multiple_choices": "Permesi multajn elekteblojn", "compose_form.poll.single_choice": "Permesi unu elekteblon", - "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.", + "compose_form.spoiler": "Kaŝi tekston malantaŭ averto", + "confirmation_modal.do_not_ask_again": "Ne peti por konfirmo plue", + "confirmations.deprecated_settings.confirm": "Uzi la agordojn de Mastodon", + "confirmations.deprecated_settings.message": "{preferences} de Mastodon anstataŭigis iom da ilo-nivela {app_settings} de glitch-soc, kaj superos ĝin:", + "confirmations.missing_media_description.confirm": "Sendi ĉiuokaze", + "confirmations.missing_media_description.edit": "Redakti aŭdovidaĵon", + "confirmations.missing_media_description.message": "Unu aŭ pli da plurmedioj mankas priskribo. Bonvolu priskribi ĉiujn plurmediojn por la vida-malkapabluloj antaŭ ol sendi vian afiŝon.", "confirmations.unfilter.author": "Aŭtoro", "confirmations.unfilter.confirm": "Montri", "confirmations.unfilter.edit_filter": "Redakti filtrilon", - "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.keyboard_shortcuts": "Fulmoklavoj", - "navigation_bar.misc": "Misc", - "notification.markForDeletion": "Mark for deletion", "notification_purge.btn_all": "Selekti ĉiujn", "notification_purge.btn_apply": "Forigi selektajn", "notification_purge.btn_invert": "Inverti selekton", "notification_purge.btn_none": "Elekti neniun", - "notification_purge.start": "Enter notification cleaning mode", "notifications.marked_clear": "Forigi selektajn sciigojn", - "notifications.marked_clear_confirmation": "Are you sure you want to permanently clear all selected notifications?", - "onboarding.done": "Done", "onboarding.next": "Sekva", - "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} estas \"instanco\" de Mastodon. Mastodon estas reto de sendependaj serviloj, ke kuniĝas por fari unu pli grandan socian reton. Ni nomas tiujn servilojn \"instancoj\".", - "onboarding.page_one.handle": "You are on {domain}, so your full handle is {handle}", - "onboarding.page_one.welcome": "Welcome to {domain}!", + "onboarding.page_one.handle": "Vi estas en {domain}, tial via plena uzantnomo estas {handle}", + "onboarding.page_one.welcome": "Bonvenon al {domain}!", "onboarding.page_six.admin": "La administranto de via instanco estas {admin}.", "onboarding.page_six.almost_done": "Preskaŭ finita…", - "onboarding.page_six.appetoot": "Bon Appetoot!", "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.guidelines": "community guidelines", - "onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!", + "onboarding.page_six.guidelines": "komunumajn regulojn", + "onboarding.page_six.read_guidelines": "Bonvolu legi la {guidelines} de {domain}!", "onboarding.page_six.various_app": "poŝtelefonaj aplikaĵoj", - "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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", + "onboarding.page_three.profile": "Redakti vian profilon por ŝanĝi vian profilbildon, biografion kaj montro-nomon. Vi povas ankaŭ trovi aliajn agordojn tie.", + "onboarding.skip": "Preterlasi", + "search_popout.search_format": "Detala serĉformato", + "search_popout.tips.hashtag": "kradvorto", + "search_popout.tips.text": "Simpla teksta serĉo montras la kongruajn afiŝitajn nomojn, uzantnomojn kaj kradvortojn", + "search_popout.tips.user": "uzanto", "settings.auto_collapse_all": "Ĉiuj", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", "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.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": "Regula esprimo", - "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.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": "preferoj de uzanto", - "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": "Duaranga butono por afiŝi:", "settings.side_arm.none": "Neniu", - "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": "Ikonoj sur la afiŝoj", "settings.status_icons_language": "Indikilo de lingvo", - "settings.status_icons_local_only": "Local-only indicator", "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", - "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": "Videbla nur el via instanco", - "status.sensitive_toggle": "Click to view", - "status.uncollapse": "Uncollapse", "web_app_crash.change_your_settings": "Ŝanĝi viajn {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": "Reŝarĝi", "web_app_crash.reload_page": "{reload} la nunan paĝon", - "web_app_crash.report_issue": "Report a bug in the {issuetracker}", - "web_app_crash.settings": "agordojn", - "web_app_crash.title": "We're sorry, but something went wrong with the Mastodon app." + "web_app_crash.settings": "agordojn" } diff --git a/app/javascript/flavours/glitch/locales/es-AR.json b/app/javascript/flavours/glitch/locales/es-AR.json index a802363f5..fabab9ccb 100644 --- a/app/javascript/flavours/glitch/locales/es-AR.json +++ b/app/javascript/flavours/glitch/locales/es-AR.json @@ -97,12 +97,6 @@ "onboarding.page_three.search": "Usa la barra de búsqueda para encontrar gente y mirar las etiquetas (hashtags), como {illustration} y {introductions}. Para buscar a una persona que no esté en esta instancia, utiliza su alias completo.", "onboarding.page_two.compose": "Escribe mensajes desde la columna de composición. Puedes subir imágenes, cambiar la configuración de privacidad y añadir advertencias de contenido con los iconos de abajo.", "onboarding.skip": "Saltar", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", "settings.always_show_spoilers_field": "Siempre mostrar el campo de advertencia de contenido", "settings.auto_collapse": "Colapsar automáticamente", "settings.auto_collapse_all": "Todo", diff --git a/app/javascript/flavours/glitch/locales/es-MX.json b/app/javascript/flavours/glitch/locales/es-MX.json index a1cadec41..b1b1db72f 100644 --- a/app/javascript/flavours/glitch/locales/es-MX.json +++ b/app/javascript/flavours/glitch/locales/es-MX.json @@ -97,12 +97,6 @@ "onboarding.page_three.search": "Usa la barra de búsqueda para encontrar gente y mirar las etiquetas (hashtags), como {illustration} y {introductions}. Para buscar a una persona que no esté en esta instancia, utiliza su alias completo.", "onboarding.page_two.compose": "Escribe mensajes desde la columna de composición. Puedes subir imágenes, cambiar la configuración de privacidad y añadir advertencias de contenido con los iconos de abajo.", "onboarding.skip": "Saltar", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", "settings.always_show_spoilers_field": "Siempre mostrar el campo de advertencia de contenido", "settings.auto_collapse": "Colapsar automáticamente", "settings.auto_collapse_all": "Todo", diff --git a/app/javascript/flavours/glitch/locales/es.json b/app/javascript/flavours/glitch/locales/es.json index 0838496d2..db53f585f 100644 --- a/app/javascript/flavours/glitch/locales/es.json +++ b/app/javascript/flavours/glitch/locales/es.json @@ -97,12 +97,6 @@ "onboarding.page_three.search": "Usa la barra de búsqueda para encontrar gente y mirar las etiquetas (hashtags), como {illustration} y {introductions}. Para buscar a una persona que no esté en esta instancia, utiliza su alias completo.", "onboarding.page_two.compose": "Escribe mensajes desde la columna de composición. Puedes subir imágenes, cambiar la configuración de privacidad y añadir advertencias de contenido con los iconos de abajo.", "onboarding.skip": "Saltar", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", "settings.always_show_spoilers_field": "Siempre mostrar el campo de advertencia de contenido", "settings.auto_collapse": "Colapsar automáticamente", "settings.auto_collapse_all": "Todo", diff --git a/app/javascript/flavours/glitch/locales/et.json b/app/javascript/flavours/glitch/locales/et.json index 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/et.json +++ b/app/javascript/flavours/glitch/locales/et.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/eu.json +++ b/app/javascript/flavours/glitch/locales/eu.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/fa.json +++ b/app/javascript/flavours/glitch/locales/fa.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/fi.json +++ b/app/javascript/flavours/glitch/locales/fi.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/fo.json +++ b/app/javascript/flavours/glitch/locales/fo.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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-QC.json b/app/javascript/flavours/glitch/locales/fr-QC.json index 8ae47b49f..ec42f666d 100644 --- a/app/javascript/flavours/glitch/locales/fr-QC.json +++ b/app/javascript/flavours/glitch/locales/fr-QC.json @@ -97,16 +97,9 @@ "onboarding.page_three.search": "Utilisez la barre de recherche pour trouver des personnes et regarder les hashtags comme {illustration} et {introductions}. Pour chercher une personne n'étant pas sur cette instance, utilisez son nom d'utilisateur complet.", "onboarding.page_two.compose": "Écrivez des posts depuis la colonne de rédaction. Vous pouvez téléverser des images, changer la confidentialité et ajouter des avertissements de contenu avec les boutons ci-dessous.", "onboarding.skip": "Passer", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", "settings.always_show_spoilers_field": "Toujours activer le champ de rédaction de l'avertissement de contenu", "settings.auto_collapse": "Repliage automatique", "settings.auto_collapse_all": "Tout", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", "settings.auto_collapse_lengthy": "Posts longs", "settings.auto_collapse_media": "Posts avec média", "settings.auto_collapse_notifications": "Notifications", diff --git a/app/javascript/flavours/glitch/locales/fr.json b/app/javascript/flavours/glitch/locales/fr.json index 8ae47b49f..ec42f666d 100644 --- a/app/javascript/flavours/glitch/locales/fr.json +++ b/app/javascript/flavours/glitch/locales/fr.json @@ -97,16 +97,9 @@ "onboarding.page_three.search": "Utilisez la barre de recherche pour trouver des personnes et regarder les hashtags comme {illustration} et {introductions}. Pour chercher une personne n'étant pas sur cette instance, utilisez son nom d'utilisateur complet.", "onboarding.page_two.compose": "Écrivez des posts depuis la colonne de rédaction. Vous pouvez téléverser des images, changer la confidentialité et ajouter des avertissements de contenu avec les boutons ci-dessous.", "onboarding.skip": "Passer", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", "settings.always_show_spoilers_field": "Toujours activer le champ de rédaction de l'avertissement de contenu", "settings.auto_collapse": "Repliage automatique", "settings.auto_collapse_all": "Tout", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", "settings.auto_collapse_lengthy": "Posts longs", "settings.auto_collapse_media": "Posts avec média", "settings.auto_collapse_notifications": "Notifications", diff --git a/app/javascript/flavours/glitch/locales/fy.json b/app/javascript/flavours/glitch/locales/fy.json index 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/fy.json +++ b/app/javascript/flavours/glitch/locales/fy.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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/ga.json b/app/javascript/flavours/glitch/locales/ga.json index 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/ga.json +++ b/app/javascript/flavours/glitch/locales/ga.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/gd.json +++ b/app/javascript/flavours/glitch/locales/gd.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/gl.json +++ b/app/javascript/flavours/glitch/locales/gl.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/he.json +++ b/app/javascript/flavours/glitch/locales/he.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 3af3b73e2..f6eb75f84 100644 --- a/app/javascript/flavours/glitch/locales/hi.json +++ b/app/javascript/flavours/glitch/locales/hi.json @@ -1,7 +1,6 @@ { "about.fork_disclaimer": "ग्लिच-सोक एक मुफ्त और ओपन सोर्स सॉफ़्टवेर है जो मैस्टोडॉन से फोर्क किया गया है", "account.add_account_note": "@{name} के लिए कोई नोट लिखें", - "account.disclaimer_full": "Information below may reflect the user's profile incompletely.", "account.follows": "फ़ॉलोज़", "account.joined": "ज़ोईन करने की {date}", "account.suspended_disclaimer_full": "यह यूज़र एक मॉडरेटर द्वारा सस्पेंड कर दिया गया है", @@ -12,195 +11,8 @@ "account_note.save": "सेव", "advanced_options.icon_title": "एडवांस्ड ऑप्शन्स", "advanced_options.local-only.long": "दूसरे इंस्टेंसों में पोस्ट ना करें", - "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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/hr.json +++ b/app/javascript/flavours/glitch/locales/hr.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/hu.json +++ b/app/javascript/flavours/glitch/locales/hu.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/hy.json +++ b/app/javascript/flavours/glitch/locales/hy.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/id.json +++ b/app/javascript/flavours/glitch/locales/id.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/ig.json +++ b/app/javascript/flavours/glitch/locales/ig.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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/io.json b/app/javascript/flavours/glitch/locales/io.json index 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/io.json +++ b/app/javascript/flavours/glitch/locales/io.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/is.json +++ b/app/javascript/flavours/glitch/locales/is.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/it.json +++ b/app/javascript/flavours/glitch/locales/it.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 5a5365b13..d10cf3add 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,20 @@ "advanced_options.threaded_mode.short": "スレッドモード", "advanced_options.threaded_mode.tooltip": "スレッドモードを有効にする", "boost_modal.missing_description": "このトゥートには少なくとも1つの画像に説明が付与されていません", - "column.favourited_by": "Favourited by", "column.heading": "その他", - "column.reblogged_by": "Boosted by", "column.subheading": "その他のオプション", - "column_header.profile": "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": "もう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,67 +38,35 @@ "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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", "settings.always_show_spoilers_field": "常にコンテンツワーニング設定を表示する(指定がない場合は通常投稿)", "settings.auto_collapse": "自動折りたたみ", "settings.auto_collapse_all": "すべて", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", "settings.auto_collapse_lengthy": "長いトゥート", "settings.auto_collapse_media": "メディア付きトゥート", "settings.auto_collapse_notifications": "通知", @@ -121,21 +81,13 @@ "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.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": "レイアウト", @@ -143,12 +95,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": "ポップインプレイヤーを有効化する", @@ -157,12 +106,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": "投稿に対するリプライの数を表示する", @@ -172,35 +119,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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/ka.json +++ b/app/javascript/flavours/glitch/locales/ka.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/kab.json +++ b/app/javascript/flavours/glitch/locales/kab.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/kk.json +++ b/app/javascript/flavours/glitch/locales/kk.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/kn.json +++ b/app/javascript/flavours/glitch/locales/kn.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 2b4f22c19..30b663b55 100644 --- a/app/javascript/flavours/glitch/locales/ko.json +++ b/app/javascript/flavours/glitch/locales/ko.json @@ -97,12 +97,6 @@ "onboarding.page_three.search": "검색창을 사용해 사람들과 해시태그를 찾아보세요. 예를 들면 {illustration}이라든지 {introcustions} 같은 것으로요. 이 인스턴스에 있지 않은 사람을 찾으려면, 전체 핸들을 사용하세요.", "onboarding.page_two.compose": "작성 컬럼에서 게시물을 작성하세요. 그림을 업로드 할 수 있고, 공개설정을 바꿀 수도 있으며, 아래 아이콘을 통해 열람주의 텍스트를 설정할 수 있습니다.", "onboarding.skip": "건너뛰기", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", "settings.always_show_spoilers_field": "열람주의 항목을 언제나 활성화", "settings.auto_collapse": "자동으로 접기", "settings.auto_collapse_all": "모두", diff --git a/app/javascript/flavours/glitch/locales/ku.json b/app/javascript/flavours/glitch/locales/ku.json index 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/ku.json +++ b/app/javascript/flavours/glitch/locales/ku.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/kw.json +++ b/app/javascript/flavours/glitch/locales/kw.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/la.json +++ b/app/javascript/flavours/glitch/locales/la.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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/lt.json b/app/javascript/flavours/glitch/locales/lt.json index 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/lt.json +++ b/app/javascript/flavours/glitch/locales/lt.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/lv.json +++ b/app/javascript/flavours/glitch/locales/lv.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/mk.json +++ b/app/javascript/flavours/glitch/locales/mk.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/ml.json +++ b/app/javascript/flavours/glitch/locales/ml.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/mr.json +++ b/app/javascript/flavours/glitch/locales/mr.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/ms.json +++ b/app/javascript/flavours/glitch/locales/ms.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/my.json +++ b/app/javascript/flavours/glitch/locales/my.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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/nl.json b/app/javascript/flavours/glitch/locales/nl.json index 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/nl.json +++ b/app/javascript/flavours/glitch/locales/nl.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/nn.json +++ b/app/javascript/flavours/glitch/locales/nn.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/no.json +++ b/app/javascript/flavours/glitch/locales/no.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/oc.json +++ b/app/javascript/flavours/glitch/locales/oc.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/pa.json +++ b/app/javascript/flavours/glitch/locales/pa.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 d28c62693..11279c423 100644 --- a/app/javascript/flavours/glitch/locales/pl.json +++ b/app/javascript/flavours/glitch/locales/pl.json @@ -37,14 +37,12 @@ "compose_form.spoiler": "Ukryj tekst za ostrzeżeniem", "confirmation_modal.do_not_ask_again": "Więcej nie pytaj się o potwierdzenie", "confirmations.deprecated_settings.confirm": "Użyj preferencji Mastodonu", - "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": "Zignoruj i wyślij", "confirmations.missing_media_description.edit": "Edytuj załącznik multimedialny", "confirmations.missing_media_description.message": "Co najmniej jednemu załącznikowi multimedialnemu brakuje opisu. Z uwagi na osoby z zaburzeniami widzenia rozważ opisanie wszystkich załączników przed opublikowaniem wpisu.", "confirmations.unfilter.author": "Autor", "confirmations.unfilter.confirm": "Pokaż", "confirmations.unfilter.edit_filter": "Edytuj filtr", - "confirmations.unfilter.filters": "Matching {count, plural, one {filter} other {filters}}", "content-type.change": "Typ zawartości", "direct.group_by_conversations": "Grupuj rozmowami", "endorsed_accounts_editor.endorsed_accounts": "Wybrane konta", @@ -87,7 +85,6 @@ "onboarding.page_one.welcome": "Witamy na {domain}!", "onboarding.page_six.admin": "Administratorem twojego serwera jest {admin}.", "onboarding.page_six.almost_done": "Prawie gotowe…", - "onboarding.page_six.appetoot": "Bon Appetoot!", "onboarding.page_six.apps_available": "Na Android, iOS i inne systemy są dostępne {apps}.", "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": "wytyczne społeczności", @@ -97,12 +94,12 @@ "onboarding.page_three.search": "Użyj paska wyszukiwania aby znaleźć osoby i hasztagi, takie jak {illustration} i {introductions}. Aby znaleźć osobę niebędącą na tym serwerze użyj jej pełnego adresu.", "onboarding.page_two.compose": "Twórz nowe wpisy w lewej kolumnie. Możesz wysłać zdjęcia, zmienić ustawienia prywatności i ukryć wpis za ostrzeżeniem używając poniższych ikon.", "onboarding.skip": "Pomiń", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", + "search_popout.search_format": "Zaawansowane wyszukiwanie", + "search_popout.tips.full_text": "Proste wyszukiwanie twoich wpisów, ulubionych, podbić i nawiązań, a także pasujących pseudonimów, nazw użytkownika i hasztagów.", + "search_popout.tips.hashtag": "hasztag", + "search_popout.tips.status": "wpis", + "search_popout.tips.text": "Proste wyszukiwanie pasujących pseudonimów, nazw użytkownika i hasztagów", + "search_popout.tips.user": "użytkownik", "settings.always_show_spoilers_field": "Zawsze pokazuj pole ostrzeżenia o zawartości", "settings.auto_collapse": "Automatyczne zwijanie", "settings.auto_collapse_all": "Wszystko", diff --git a/app/javascript/flavours/glitch/locales/pt-BR.json b/app/javascript/flavours/glitch/locales/pt-BR.json index d2fefcbff..80e102a4e 100644 --- a/app/javascript/flavours/glitch/locales/pt-BR.json +++ b/app/javascript/flavours/glitch/locales/pt-BR.json @@ -97,12 +97,6 @@ "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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", "settings.always_show_spoilers_field": "Sempre ativar o campo Aviso de Conteúdo", "settings.auto_collapse": "Colapso automático", "settings.auto_collapse_all": "Tudo", diff --git a/app/javascript/flavours/glitch/locales/pt-PT.json b/app/javascript/flavours/glitch/locales/pt-PT.json index 9fc3d05b4..fc3cdc621 100644 --- a/app/javascript/flavours/glitch/locales/pt-PT.json +++ b/app/javascript/flavours/glitch/locales/pt-PT.json @@ -18,189 +18,8 @@ "advanced_options.threaded_mode.short": "Modo de fio", "advanced_options.threaded_mode.tooltip": "Modo de fio ativado", "boost_modal.missing_description": "Este post contém alguns media sem descrição", - "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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/ro.json +++ b/app/javascript/flavours/glitch/locales/ro.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/ru.json +++ b/app/javascript/flavours/glitch/locales/ru.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/sa.json +++ b/app/javascript/flavours/glitch/locales/sa.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/sc.json +++ b/app/javascript/flavours/glitch/locales/sc.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/sco.json +++ b/app/javascript/flavours/glitch/locales/sco.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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/si.json b/app/javascript/flavours/glitch/locales/si.json index 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/si.json +++ b/app/javascript/flavours/glitch/locales/si.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/sk.json +++ b/app/javascript/flavours/glitch/locales/sk.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/sl.json +++ b/app/javascript/flavours/glitch/locales/sl.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/sq.json +++ b/app/javascript/flavours/glitch/locales/sq.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/sr-Latn.json +++ b/app/javascript/flavours/glitch/locales/sr-Latn.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/sr.json +++ b/app/javascript/flavours/glitch/locales/sr.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/sv.json +++ b/app/javascript/flavours/glitch/locales/sv.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/ta.json +++ b/app/javascript/flavours/glitch/locales/ta.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/te.json +++ b/app/javascript/flavours/glitch/locales/te.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/th.json +++ b/app/javascript/flavours/glitch/locales/th.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/tr.json +++ b/app/javascript/flavours/glitch/locales/tr.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/tt.json +++ b/app/javascript/flavours/glitch/locales/tt.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/ug.json +++ b/app/javascript/flavours/glitch/locales/ug.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 1304732f4..b21584659 100644 --- a/app/javascript/flavours/glitch/locales/uk.json +++ b/app/javascript/flavours/glitch/locales/uk.json @@ -1,112 +1,29 @@ { - "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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", "settings.auto_collapse": "Автоматичне згортання", "settings.auto_collapse_all": "Все", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", "settings.auto_collapse_lengthy": "Довгі дмухи", "settings.auto_collapse_media": "Дмухи з медіафайлами", "settings.auto_collapse_notifications": "Сповіщення", @@ -114,93 +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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/ur.json +++ b/app/javascript/flavours/glitch/locales/ur.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/vi.json +++ b/app/javascript/flavours/glitch/locales/vi.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 46a66c960..5c1758059 100644 --- a/app/javascript/flavours/glitch/locales/zh-CN.json +++ b/app/javascript/flavours/glitch/locales/zh-CN.json @@ -97,12 +97,12 @@ "onboarding.page_three.search": "使用搜索栏查找用户并查看标签,例如 #illustration 和 #introductions。要查找不在此实例中的用户,请使用他们的完整用户名。", "onboarding.page_two.compose": "在撰写框中撰写嘟文。你可以使用下方图标上传图像、更改隐私设置和添加内容警告。", "onboarding.skip": "跳过", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", + "search_popout.search_format": "高级搜索格式", + "search_popout.tips.full_text": "输入关键词检索所有你发送、喜欢、转嘟过或提及到你的嘟文,以及其他用户公开的用户名、昵称和话题标签。", + "search_popout.tips.hashtag": "话题标签", + "search_popout.tips.status": "状态", + "search_popout.tips.text": "输入关键词检索昵称、用户名和话题标签", + "search_popout.tips.user": "用户", "settings.always_show_spoilers_field": "始终显示内容警告框", "settings.auto_collapse": "自动折叠", "settings.auto_collapse_all": "所有", diff --git a/app/javascript/flavours/glitch/locales/zh-HK.json b/app/javascript/flavours/glitch/locales/zh-HK.json index 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/zh-HK.json +++ b/app/javascript/flavours/glitch/locales/zh-HK.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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 6fd7dc269..4d243f94c 100644 --- a/app/javascript/flavours/glitch/locales/zh-TW.json +++ b/app/javascript/flavours/glitch/locales/zh-TW.json @@ -1,206 +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.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", - "search_popout.search_format": "Advanced search format", - "search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.", - "search_popout.tips.hashtag": "hashtag", - "search_popout.tips.status": "status", - "search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags", - "search_popout.tips.user": "user", - "settings.always_show_spoilers_field": "Always enable the Content Warning field", - "settings.auto_collapse": "Automatic collapsing", - "settings.auto_collapse_all": "Everything", - "settings.auto_collapse_height": "Height (in pixels) for a toot to be considered lengthy", - "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.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/packs/public.jsx b/app/javascript/flavours/glitch/packs/public.jsx index 335a0710d..93b249bb4 100644 --- a/app/javascript/flavours/glitch/packs/public.jsx +++ b/app/javascript/flavours/glitch/packs/public.jsx @@ -2,6 +2,15 @@ import 'packs/public-path'; import loadPolyfills from 'flavours/glitch/load_polyfills'; import ready from 'flavours/glitch/ready'; import loadKeyboardExtensions from 'flavours/glitch/load_keyboard_extensions'; +import axios from 'axios'; +import { throttle } from 'lodash'; +import { defineMessages } from 'react-intl'; + +const messages = defineMessages({ + usernameTaken: { id: 'username.taken', defaultMessage: 'That username is taken. Try another' }, + passwordExceedsLength: { id: 'password_confirmation.exceeds_maxlength', defaultMessage: 'Password confirmation exceeds the maximum password length' }, + passwordDoesNotMatch: { id: 'password_confirmation.mismatching', defaultMessage: 'Password confirmation does not match' }, +}); function main() { const IntlMessageFormat = require('intl-messageformat').default; @@ -9,7 +18,7 @@ function main() { const { delegate } = require('@rails/ujs'); const emojify = require('flavours/glitch/features/emoji/emoji').default; const { getLocale } = require('locales'); - const { messages } = getLocale(); + const { localeData } = getLocale(); const React = require('react'); const ReactDOM = require('react-dom'); const { createBrowserHistory } = require('history'); @@ -54,6 +63,11 @@ function main() { hour12: false, }); + const formatMessage = ({ id, defaultMessage }, values) => { + const messageFormat = new IntlMessageFormat(localeData[id] || defaultMessage, locale); + return messageFormat.format(values); + }; + [].forEach.call(document.querySelectorAll('.emojify'), (content) => { content.innerHTML = emojify(content.innerHTML); }); @@ -73,7 +87,7 @@ function main() { date.getMonth() === today.getMonth() && date.getFullYear() === today.getFullYear(); }; - const todayFormat = new IntlMessageFormat(messages['relative_format.today'] || 'Today at {time}', locale); + const todayFormat = new IntlMessageFormat(localeData['relative_format.today'] || 'Today at {time}', locale); [].forEach.call(document.querySelectorAll('time.relative-formatted'), (content) => { const datetime = new Date(content.getAttribute('datetime')); @@ -99,7 +113,7 @@ function main() { const timeGiven = content.getAttribute('datetime').includes('T'); content.title = timeGiven ? dateTimeFormat.format(datetime) : dateFormat.format(datetime); content.textContent = timeAgoString({ - formatMessage: ({ id, defaultMessage }, values) => (new IntlMessageFormat(messages[id] || defaultMessage, locale)).format(values), + formatMessage, formatDate: (date, options) => (new Intl.DateTimeFormat(locale, options)).format(date), }, datetime, now, now.getFullYear(), timeGiven); }); @@ -128,17 +142,19 @@ function main() { scrollToDetailedStatus(); } - delegate(document, '#registration_user_password_confirmation,#registration_user_password', 'input', () => { - const password = document.getElementById('registration_user_password'); - const confirmation = document.getElementById('registration_user_password_confirmation'); - if (confirmation.value && confirmation.value.length > password.maxLength) { - confirmation.setCustomValidity((new IntlMessageFormat(messages['password_confirmation.exceeds_maxlength'] || 'Password confirmation exceeds the maximum password length', locale)).format()); - } else if (password.value && password.value !== confirmation.value) { - confirmation.setCustomValidity((new IntlMessageFormat(messages['password_confirmation.mismatching'] || 'Password confirmation does not match', locale)).format()); + delegate(document, '#user_account_attributes_username', 'input', throttle(() => { + const username = document.getElementById('user_account_attributes_username'); + + if (username.value && username.value.length > 0) { + axios.get('/api/v1/accounts/lookup', { params: { acct: username.value } }).then(() => { + username.setCustomValidity(formatMessage(messages.usernameTaken)); + }).catch(() => { + username.setCustomValidity(''); + }); } else { - confirmation.setCustomValidity(''); + username.setCustomValidity(''); } - }); + }, 500, { leading: false, trailing: true })); delegate(document, '#user_password,#user_password_confirmation', 'input', () => { const password = document.getElementById('user_password'); @@ -146,9 +162,9 @@ function main() { if (!confirmation) return; if (confirmation.value && confirmation.value.length > password.maxLength) { - confirmation.setCustomValidity((new IntlMessageFormat(messages['password_confirmation.exceeds_maxlength'] || 'Password confirmation exceeds the maximum password length', locale)).format()); + confirmation.setCustomValidity(formatMessage(messages.passwordExceedsLength)); } else if (password.value && password.value !== confirmation.value) { - confirmation.setCustomValidity((new IntlMessageFormat(messages['password_confirmation.mismatching'] || 'Password confirmation does not match', locale)).format()); + confirmation.setCustomValidity(formatMessage(messages.passwordDoesNotMatch)); } else { confirmation.setCustomValidity(''); } @@ -162,10 +178,10 @@ function main() { if (statusEl.dataset.spoiler === 'expanded') { statusEl.dataset.spoiler = 'folded'; - this.textContent = (new IntlMessageFormat(messages['status.show_more'] || 'Show more', locale)).format(); + this.textContent = (new IntlMessageFormat(localeData['status.show_more'] || 'Show more', locale)).format(); } else { statusEl.dataset.spoiler = 'expanded'; - this.textContent = (new IntlMessageFormat(messages['status.show_less'] || 'Show less', locale)).format(); + this.textContent = (new IntlMessageFormat(localeData['status.show_less'] || 'Show less', locale)).format(); } return false; @@ -173,7 +189,7 @@ function main() { [].forEach.call(document.querySelectorAll('.status__content__spoiler-link'), (spoilerLink) => { const statusEl = spoilerLink.parentNode.parentNode; - const message = (statusEl.dataset.spoiler === 'expanded') ? (messages['status.show_less'] || 'Show less') : (messages['status.show_more'] || 'Show more'); + const message = (statusEl.dataset.spoiler === 'expanded') ? (localeData['status.show_less'] || 'Show less') : (localeData['status.show_more'] || 'Show more'); spoilerLink.textContent = (new IntlMessageFormat(message, locale)).format(); }); }); diff --git a/app/javascript/flavours/glitch/styles/about.scss b/app/javascript/flavours/glitch/styles/about.scss index 0183c43d5..0f02563b4 100644 --- a/app/javascript/flavours/glitch/styles/about.scss +++ b/app/javascript/flavours/glitch/styles/about.scss @@ -28,14 +28,14 @@ $fluid-breakpoint: $maximum-width + 20px; position: relative; border-bottom: 1px solid lighten($ui-base-color, 8%); padding: 1em 1.75em; - padding-left: 3em; + padding-inline-start: 3em; font-weight: 500; counter-increment: list-counter; &::before { content: counter(list-counter); position: absolute; - left: 0; + inset-inline-start: 0; top: 50%; transform: translateY(-50%); background: $highlight-text-color; diff --git a/app/javascript/flavours/glitch/styles/accessibility.scss b/app/javascript/flavours/glitch/styles/accessibility.scss index fb2376abf..c7fc74b2a 100644 --- a/app/javascript/flavours/glitch/styles/accessibility.scss +++ b/app/javascript/flavours/glitch/styles/accessibility.scss @@ -25,7 +25,7 @@ $emojis-requiring-inversion: 'back' 'copyright' 'curly_loop' 'currency_exchange' content: '\F00C'; font-size: 50%; font-family: FontAwesome; - right: -0.55em; + inset-inline-end: -0.55em; top: -0.44em; } } diff --git a/app/javascript/flavours/glitch/styles/accounts.scss b/app/javascript/flavours/glitch/styles/accounts.scss index cee93e25b..b7a60ef36 100644 --- a/app/javascript/flavours/glitch/styles/accounts.scss +++ b/app/javascript/flavours/glitch/styles/accounts.scss @@ -73,8 +73,8 @@ } .display-name { - margin-left: 15px; - text-align: left; + margin-inline-start: 15px; + text-align: start; i[data-hidden] { display: none; @@ -139,21 +139,21 @@ .older { float: left; - padding-left: 0; + padding-inline-start: 0; .fa { display: inline-block; - margin-right: 5px; + margin-inline-end: 5px; } } .newer { float: right; - padding-right: 0; + padding-inline-start: 0; .fa { display: inline-block; - margin-left: 5px; + margin-inline-start: 5px; } } diff --git a/app/javascript/flavours/glitch/styles/admin.scss b/app/javascript/flavours/glitch/styles/admin.scss index 240c90735..58223143f 100644 --- a/app/javascript/flavours/glitch/styles/admin.scss +++ b/app/javascript/flavours/glitch/styles/admin.scss @@ -117,7 +117,7 @@ $content-width: 840px; text-overflow: ellipsis; i.fa { - margin-right: 5px; + margin-inline-end: 5px; } &:hover { @@ -186,7 +186,10 @@ $content-width: 840px; } .content { - padding: 55px 15px 20px 25px; + padding-top: 55px; + padding-bottom: 20px; + padding-inline-start: 25px; + padding-inline-end: 15px; @media screen and (max-width: $no-columns-breakpoint) { max-width: none; @@ -202,11 +205,12 @@ $content-width: 840px; flex-wrap: wrap; align-items: center; justify-content: space-between; - margin: -15px -15px 0 0; + margin-top: -15px; + margin-inline-end: -15px; & > * { margin-top: 15px; - margin-right: 15px; + margin-inline-end: 15px; } } @@ -385,7 +389,7 @@ $content-width: 840px; z-index: 10; width: 100%; height: calc(100% - 56px); - left: 0; + inset-inline-start: 0; bottom: 0; overflow-y: auto; background: $ui-base-color; @@ -470,10 +474,11 @@ body, .filters { display: flex; flex-wrap: wrap; + gap: 40px; .filter-subset { flex: 0 0 auto; - margin: 0 40px 20px 0; + margin-bottom: 20px; &:last-child { margin-bottom: 30px; @@ -485,7 +490,7 @@ body, li { display: inline-block; - margin-right: 5px; + margin-inline-end: 5px; } } @@ -563,7 +568,10 @@ body, & > strong { display: block; - margin: 0 0 10px -5px; + margin-top: 0; + margin-bottom: 10px; + margin-inline-end: 0; + margin-inline-start: -5px; font-weight: 500; font-size: 14px; line-height: 18px; @@ -588,7 +596,7 @@ body, .activity-stream { flex: 2 0 0; - margin-right: 20px; + margin-inline-end: 20px; max-width: calc(100% - 60px); .entry { @@ -632,20 +640,23 @@ body, margin-bottom: 5px; #form_status_batch_action { - margin: 0 5px 5px 0; + margin-bottom: 5px; + margin-inline-end: 5px; font-size: 14px; } input.button { - margin: 0 5px 5px 0; + margin-bottom: 5px; + margin-inline-end: 5px; } .media-spoiler-toggle-buttons { - margin-left: auto; + margin-inline-start: auto; .button { overflow: visible; - margin: 0 0 5px 5px; + margin-bottom: 5px; + margin-inline-start: 5px; float: right; } } @@ -667,7 +678,7 @@ body, .special-action-button, .back-link { - text-align: right; + text-align: end; flex: 1 1 auto; } @@ -685,7 +696,7 @@ body, display: block; line-height: 20px; padding: 15px; - padding-left: 15px * 2 + 40px; + padding-inline-start: 15px * 2 + 40px; background: $ui-base-color; border-bottom: 1px solid darken($ui-base-color, 8%); position: relative; @@ -712,7 +723,7 @@ body, &__avatar { position: absolute; - left: 15px; + inset-inline-start: 15px; top: 15px; .avatar { @@ -780,7 +791,7 @@ a.name-tag, .avatar { display: block; margin: 0; - margin-right: 5px; + margin-inline-end: 5px; border-radius: 50%; } @@ -794,7 +805,7 @@ a.name-tag, .speech-bubble { margin-bottom: 20px; - border-left: 4px solid $ui-highlight-color; + border-inline-start: 4px solid $ui-highlight-color; &.positive { border-left-color: $success-green; @@ -810,7 +821,7 @@ a.name-tag, &__bubble { padding: 16px; - padding-left: 14px; + padding-inline-start: 14px; font-size: 15px; line-height: 20px; border-radius: 4px 4px 4px 0; @@ -824,7 +835,7 @@ a.name-tag, &__owner { padding: 8px; - padding-left: 12px; + padding-inline-start: 12px; } time { @@ -848,7 +859,7 @@ a.name-tag, border: 0; &__avatar-wrapper { - margin-left: 0; + margin-inline-start: 0; } } @@ -857,7 +868,7 @@ a.name-tag, font-weight: 500; color: $darker-text-color; text-transform: uppercase; - text-align: right; + text-align: end; a { color: inherit; @@ -908,7 +919,7 @@ a.name-tag, &__icon { color: $dark-text-color; - margin-right: 4px; + margin-inline-end: 4px; font-weight: 500; } } @@ -1106,7 +1117,7 @@ a.name-tag, > h4 { position: sticky; - left: 0; + inset-inline-start: 0; } &__table { @@ -1118,7 +1129,7 @@ a.name-tag, &__date { white-space: nowrap; padding: 10px 0; - text-align: left; + text-align: start; min-width: 120px; &.retention__table__average { @@ -1176,7 +1187,7 @@ a.name-tag, &__total { display: block; - margin-right: 10px; + margin-inline-end: 10px; font-weight: 500; font-size: 28px; color: $primary-text-color; @@ -1278,7 +1289,7 @@ a.sparkline { } &__value { - text-align: right; + text-align: end; color: $darker-text-color; padding: 11px 10px; } @@ -1289,7 +1300,7 @@ a.sparkline { height: 8px; border-radius: 50%; background: $ui-highlight-color; - margin-right: 10px; + margin-inline-end: 10px; @for $i from 0 through 10 { &--#{10 * $i} { @@ -1325,7 +1336,7 @@ a.sparkline { } &__rules { - margin-left: 30px; + margin-inline-start: 30px; } } @@ -1447,7 +1458,7 @@ a.sparkline { height: 21px; position: absolute; bottom: 0; - right: 15px; + inset-inline-end: 15px; background: linear-gradient(to left, $ui-base-color, transparent); pointer-events: none; } @@ -1527,7 +1538,7 @@ a.sparkline { background: $ui-base-color; position: relative; padding: 15px; - padding-left: 15px * 2 + 40px; + padding-inline-start: 15px * 2 + 40px; border-bottom: 1px solid darken($ui-base-color, 8%); &:first-child { @@ -1547,7 +1558,7 @@ a.sparkline { &__avatar { position: absolute; - left: 15px; + inset-inline-start: 15px; top: 15px; border-radius: 4px; width: 40px; @@ -1563,7 +1574,7 @@ a.sparkline { .username { color: $primary-text-color; font-weight: 500; - margin-right: 5px; + margin-inline-end: 5px; a { color: inherit; @@ -1578,7 +1589,7 @@ a.sparkline { } time { - margin-left: 5px; + margin-inline-start: 5px; vertical-align: baseline; } } @@ -1613,8 +1624,8 @@ a.sparkline { &__actions { position: absolute; top: 15px; - right: 15px; - text-align: right; + inset-inline-end: 15px; + text-align: end; } } } @@ -1637,7 +1648,7 @@ a.sparkline { flex: 0 0 auto; width: 200px; padding: 15px; - padding-right: 0; + padding-inline-end: 0; .button { display: block; @@ -1723,7 +1734,7 @@ a.sparkline { &__rules { list-style: disc; - padding-left: 15px; + padding-inline-start: 15px; margin-bottom: 20px; color: $darker-text-color; @@ -1812,7 +1823,7 @@ a.sparkline { li { counter-increment: step 1; - padding-left: 2.5rem; + padding-inline-start: 2.5rem; padding-bottom: 8px; position: relative; margin-bottom: 8px; @@ -1822,7 +1833,7 @@ a.sparkline { content: counter(step); font-size: 0.625rem; font-weight: 500; - left: 0; + inset-inline-start: 0; display: flex; justify-content: center; align-items: center; @@ -1841,7 +1852,7 @@ a.sparkline { background: $highlight-text-color; bottom: 0; top: calc(1.875rem + 1px); - left: 0.6875rem; + inset-inline-start: 0.6875rem; } &:last-child { diff --git a/app/javascript/flavours/glitch/styles/basics.scss b/app/javascript/flavours/glitch/styles/basics.scss index 84977eb39..8ea3e7881 100644 --- a/app/javascript/flavours/glitch/styles/basics.scss +++ b/app/javascript/flavours/glitch/styles/basics.scss @@ -266,7 +266,7 @@ button { overflow: hidden; position: absolute; top: 0; - left: 0; + inset-inline-start: 0; z-index: -1000; } diff --git a/app/javascript/flavours/glitch/styles/components/about.scss b/app/javascript/flavours/glitch/styles/components/about.scss index 6664a5756..705827473 100644 --- a/app/javascript/flavours/glitch/styles/components/about.scss +++ b/app/javascript/flavours/glitch/styles/components/about.scss @@ -5,7 +5,7 @@ &__preview { position: absolute; top: 0; - left: 0; + inset-inline-start: 0; width: 100%; height: 100%; object-fit: cover; @@ -211,7 +211,7 @@ } .account__avatar-wrapper { - margin-left: 0; + margin-inline-start: 0; } .account__relationship { diff --git a/app/javascript/flavours/glitch/styles/components/accounts.scss b/app/javascript/flavours/glitch/styles/components/accounts.scss index b95cffbb4..374f46907 100644 --- a/app/javascript/flavours/glitch/styles/components/accounts.scss +++ b/app/javascript/flavours/glitch/styles/components/accounts.scss @@ -31,7 +31,7 @@ padding: 0; & > .account__avatar-wrapper { - margin: 0 8px 0 0; + margin-inline-end: 8px; } & > .display-name { @@ -57,8 +57,8 @@ .account__avatar-wrapper { float: left; - margin-left: 12px; - margin-right: 12px; + margin-inline-start: 12px; + margin-inline-end: 12px; } .account__avatar { @@ -74,7 +74,7 @@ &-inline { display: inline-block; vertical-align: middle; - margin-right: 5px; + margin-inline-end: 5px; } &-composite { @@ -95,7 +95,7 @@ display: block; position: absolute; top: 50%; - left: 50%; + inset-inline-start: 50%; transform: translate(-50%, -50%); color: $primary-text-color; text-shadow: 1px 1px 2px $base-shadow-color; @@ -128,7 +128,7 @@ position: absolute; bottom: 0; - right: 0; + inset-inline-end: 0; z-index: 1; img { @@ -198,12 +198,12 @@ text-decoration: none; overflow: hidden; flex: 0 1 100%; - border-left: 1px solid lighten($ui-base-color, 8%); + border-inline-start: 1px solid lighten($ui-base-color, 8%); padding: 10px 0; border-bottom: 4px solid transparent; &:first-child { - border-left: 0; + border-inline-start: 0; } &.active { @@ -247,12 +247,12 @@ .account-authorize__avatar { float: left; - margin-right: 10px; + margin-inline-end: 10px; } .notification__report { padding: 8px 10px; - padding-left: 68px; + padding-inline-start: 68px; position: relative; border-bottom: 1px solid lighten($ui-base-color, 8%); min-height: 54px; @@ -272,14 +272,15 @@ &__avatar { position: absolute; - left: 10px; + inset-inline-start: 10px; top: 10px; } } .notification__message { - margin-left: 42px; - padding: 8px 0 0 26px; + margin-inline-start: 42px; + padding-top:8px; + padding-inline-start: 26px; cursor: default; color: $darker-text-color; font-size: 15px; @@ -346,7 +347,7 @@ &__icons { position: absolute; top: 50%; - left: 50%; + inset-inline-start: 50%; transform: translate(-50%, -50%); font-size: 24px; } @@ -431,7 +432,7 @@ &__message { position: relative; - margin-left: 58px; + margin-inline-start: 58px; color: $dark-text-color; padding: 8px 0; padding-top: 0; @@ -446,7 +447,7 @@ } &__icon-wrapper { - left: -26px; + inset-inline-start: -26px; position: absolute; } @@ -500,7 +501,7 @@ &__info { position: absolute; top: 10px; - left: 10px; + inset-inline-start: 10px; } &__image { @@ -544,7 +545,7 @@ margin-top: -81px; height: 130px; overflow: hidden; - margin-left: -2px; // aligns the pfp with content below + margin-inline-start: -2px; // aligns the pfp with content below .account-role { margin: 0 2px; @@ -635,8 +636,8 @@ color: $darker-text-color; .columns-area--mobile & { - padding-left: 20px; - padding-right: 20px; + padding-inline-start: 20px; + padding-inline-end: 20px; } } @@ -769,7 +770,8 @@ } .moved-account-banner, -.follow-request-banner { +.follow-request-banner, +.account-memorial-banner { padding: 20px; background: lighten($ui-base-color, 4%); display: flex; @@ -803,3 +805,7 @@ .follow-request-banner .button { width: 100%; } + +.account-memorial-banner__message { + margin-bottom: 0; +} diff --git a/app/javascript/flavours/glitch/styles/components/announcements.scss b/app/javascript/flavours/glitch/styles/components/announcements.scss index feaff81f5..be27120a7 100644 --- a/app/javascript/flavours/glitch/styles/components/announcements.scss +++ b/app/javascript/flavours/glitch/styles/components/announcements.scss @@ -84,13 +84,13 @@ display: block; font-weight: 500; margin-bottom: 10px; - padding-right: 18px; + padding-inline-end: 18px; } &__unread { position: absolute; top: 19px; - right: 19px; + inset-inline-end: 19px; display: block; background: $highlight-text-color; border-radius: 50%; @@ -104,7 +104,7 @@ color: $darker-text-color; position: absolute; bottom: 3px; - right: 0; + inset-inline-end: 0; } } @@ -121,7 +121,7 @@ flex-wrap: wrap; align-items: center; margin-top: 15px; - margin-left: -2px; + margin-inline-start: -2px; width: calc(100% - (90px - 33px)); &__item { @@ -162,7 +162,7 @@ font-size: 13px; font-weight: 500; text-align: center; - margin-left: 6px; + margin-inline-start: 6px; color: $darker-text-color; } diff --git a/app/javascript/flavours/glitch/styles/components/columns.scss b/app/javascript/flavours/glitch/styles/components/columns.scss index 907f820d6..a72afe726 100644 --- a/app/javascript/flavours/glitch/styles/components/columns.scss +++ b/app/javascript/flavours/glitch/styles/components/columns.scss @@ -182,7 +182,8 @@ $ui-header-height: 55px; cursor: pointer; flex: 0 0 auto; font-size: 16px; - padding: 0 5px 0 0; + padding: 0; + padding-inline-end: 5px; z-index: 3; &:hover { @@ -190,13 +191,14 @@ $ui-header-height: 55px; } &:last-child { - padding: 0 15px 0 0; + padding: 0; + padding-inline-end: 15px;; } } .column-back-button__icon { display: inline-block; - margin-right: 5px; + margin-inline-end: 5px; } .column-back-button--slim { @@ -209,7 +211,7 @@ $ui-header-height: 55px; font-size: 16px; padding: 15px; position: absolute; - right: 0; + inset-inline-end: 0; top: -48px; } @@ -263,7 +265,7 @@ $ui-header-height: 55px; .column-link__icon { display: inline-block; - margin-right: 5px; + margin-inline-end: 5px; } .column-subheading { @@ -289,8 +291,8 @@ $ui-header-height: 55px; content: ''; position: absolute; bottom: -13px; - left: 0; - right: 0; + inset-inline-start: 0; + inset-inline-end: 0; margin: 0 auto; width: 60%; pointer-events: none; @@ -329,7 +331,7 @@ $ui-header-height: 55px; color: inherit; background: transparent; font: inherit; - text-align: left; + text-align: start; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; @@ -377,7 +379,7 @@ $ui-header-height: 55px; .column-header__buttons { height: 48px; display: flex; - margin-left: 0; + margin-inline-start: 0; } .column-header__links { @@ -385,7 +387,7 @@ $ui-header-height: 55px; } .column-header__links .text-btn { - margin-right: 10px; + margin-inline-end: 10px; } .column-header__button { @@ -444,7 +446,7 @@ $ui-header-height: 55px; @media screen and (min-width: $no-gap-breakpoint) { b, i { - margin-right: 5px; + margin-inline-end: 5px; } br { @@ -530,12 +532,12 @@ $ui-header-height: 55px; padding: 5px; &:first-child { - padding-right: 7px; + padding-inline-end: 7px; } &:last-child { - padding-left: 7px; - margin-left: 5px; + padding-inline-start: 7px; + margin-inline-start: 5px; } } } @@ -559,7 +561,7 @@ $ui-header-height: 55px; .column-header__icon { display: inline-block; - margin-right: 5px; + margin-inline-end: 5px; } .column-settings__pillbar { @@ -725,7 +727,7 @@ $ui-header-height: 55px; .column-inline-form { padding: 7px 15px; - padding-right: 5px; + padding-inline-end: 5px; display: flex; justify-content: flex-start; align-items: center; @@ -801,12 +803,12 @@ $ui-header-height: 55px; &__placeholder { color: $dark-text-color; - padding-left: 2px; + padding-inline-start: 2px; font-size: 12px; } &__value-container { - padding-left: 6px; + padding-inline-start: 6px; } &__multi-value { @@ -889,7 +891,7 @@ $ui-header-height: 55px; &__close { position: absolute; top: 10px; - right: 10px; + inset-inline-end: 10px; } h2 { @@ -948,7 +950,7 @@ $ui-header-height: 55px; &__background { position: absolute; - left: 0; + inset-inline-start: 0; bottom: 0; height: 220px; width: auto; diff --git a/app/javascript/flavours/glitch/styles/components/compose_form.scss b/app/javascript/flavours/glitch/styles/components/compose_form.scss index 1c2e0aeb4..d7b8281ee 100644 --- a/app/javascript/flavours/glitch/styles/components/compose_form.scss +++ b/app/javascript/flavours/glitch/styles/components/compose_form.scss @@ -4,7 +4,7 @@ .emoji-picker-dropdown { position: absolute; top: 0; - right: 0; + inset-inline-end: 0; ::-webkit-scrollbar-track:hover, ::-webkit-scrollbar-track:active { @@ -113,8 +113,8 @@ width: 18px; height: 18px; flex: 0 0 auto; - margin-left: 5px; - margin-right: 10px; + margin-inline-start: 5px; + margin-inline-end: 10px; top: -1px; border-radius: 4px; vertical-align: middle; @@ -254,13 +254,14 @@ display: block; position: absolute; top: 29px; - right: 5px; + inset-inline-end: 5px; bottom: 5px; overflow: hidden; & > .textarea_icon { display: block; - margin: 2px 0 0 2px; + margin-top: 2px; + margin-inline-start: 2px; width: 24px; height: 24px; color: $lighter-text-color; @@ -334,7 +335,7 @@ &__uses { flex: 0 0 auto; - text-align: right; + text-align: end; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; @@ -403,8 +404,8 @@ position: absolute; z-index: 2; bottom: 0; - left: 0; - right: 0; + inset-inline-start: 0; + inset-inline-end: 0; box-sizing: border-box; background: linear-gradient( 0deg, @@ -435,7 +436,7 @@ .fa { font-size: 34px; - margin-right: 10px; + margin-inline-end: 10px; } span { @@ -462,7 +463,7 @@ .upload-progress__tracker { position: absolute; top: 0; - left: 0; + inset-inline-start: 0; height: 6px; border-radius: 6px; background: $ui-highlight-color; @@ -515,7 +516,7 @@ .character-counter__wrapper { align-self: center; - margin-right: 4px; + margin-inline-end: 4px; } .privacy-dropdown.active { @@ -567,7 +568,7 @@ color: $lighter-text-color; &:not(:first-child) { - margin-left: 10px; + margin-inline-start: 10px; } strong { @@ -635,11 +636,11 @@ } .emoji-mart-search { - padding-right: 10px; + padding-inline-end: 10px; } .emoji-mart-search-icon { - right: 10px + 5px; + inset-inline-end: 10px + 5px; } .emoji-mart-scroll { diff --git a/app/javascript/flavours/glitch/styles/components/directory.scss b/app/javascript/flavours/glitch/styles/components/directory.scss index 5c763764d..db9a23bce 100644 --- a/app/javascript/flavours/glitch/styles/components/directory.scss +++ b/app/javascript/flavours/glitch/styles/components/directory.scss @@ -55,7 +55,7 @@ width: 18px; height: 18px; flex: 0 0 auto; - margin-right: 10px; + margin-inline-end: 10px; top: -1px; border-radius: 50%; vertical-align: middle; diff --git a/app/javascript/flavours/glitch/styles/components/doodle.scss b/app/javascript/flavours/glitch/styles/components/doodle.scss index 52c7cd54a..c3b67da4a 100644 --- a/app/javascript/flavours/glitch/styles/components/doodle.scss +++ b/app/javascript/flavours/glitch/styles/components/doodle.scss @@ -35,8 +35,8 @@ $doodle-background: #d9e1e8; label { display: inline-block; width: 70px; - text-align: right; - margin-right: 2px; + text-align: end; + margin-inline-end: 2px; } input[type='number'], @@ -46,14 +46,14 @@ $doodle-background: #d9e1e8; span.val { display: inline-block; - text-align: left; + text-align: start; width: 50px; } } } .doodle-palette { - padding-right: 0 !important; + padding-inline-end: 0 !important; border: 1px solid black; line-height: 0.2rem; flex-grow: 0; diff --git a/app/javascript/flavours/glitch/styles/components/drawer.scss b/app/javascript/flavours/glitch/styles/components/drawer.scss index 3e482774e..a9c683c37 100644 --- a/app/javascript/flavours/glitch/styles/components/drawer.scss +++ b/app/javascript/flavours/glitch/styles/components/drawer.scss @@ -8,11 +8,11 @@ flex: none; &:first-child { - padding-left: 10px; + padding-inline-start: 10px; } &:last-child { - padding-right: 10px; + padding-inline-end: 10px; } @include single-column('screen and (max-width: 630px)') { @@ -126,7 +126,7 @@ .navigation-bar__profile { flex: 1 1 auto; - margin-left: 8px; + margin-inline-start: 8px; overflow: hidden; & > a:hover { @@ -154,7 +154,7 @@ .fa { display: inline-block; - margin-right: 5px; + margin-inline-end: 5px; } } @@ -191,7 +191,7 @@ .drawer__inner { position: absolute; top: 0; - left: 0; + inset-inline-start: 0; background: lighten($ui-base-color, 13%); box-sizing: border-box; padding: 0; @@ -241,14 +241,14 @@ .pseudo-drawer { background: lighten($ui-base-color, 13%); font-size: 13px; - text-align: left; + text-align: start; } .drawer__backdrop { cursor: pointer; position: absolute; top: 0; - left: 0; + inset-inline-start: 0; width: 100%; height: 100%; background: rgba($base-overlay-background, 0.5); diff --git a/app/javascript/flavours/glitch/styles/components/emoji.scss b/app/javascript/flavours/glitch/styles/components/emoji.scss index 4427f2080..f76288978 100644 --- a/app/javascript/flavours/glitch/styles/components/emoji.scss +++ b/app/javascript/flavours/glitch/styles/components/emoji.scss @@ -31,7 +31,7 @@ .emoji-picker-dropdown__modifiers { position: absolute; top: 60px; - right: 11px; + inset-inline-end: 11px; cursor: pointer; } @@ -39,7 +39,7 @@ position: absolute; z-index: 4; top: -4px; - left: -8px; + inset-inline-start: -8px; background: $simple-background-color; border-radius: 4px; box-shadow: 1px 2px 6px rgba($base-shadow-color, 0.2); @@ -72,7 +72,10 @@ .emoji-button { display: block; - padding: 5px 5px 2px 2px; + padding-top: 5px; + padding-bottom: 2px; + padding-inline-start: 2px; + padding-inline-end: 5px; outline: 0; cursor: pointer; diff --git a/app/javascript/flavours/glitch/styles/components/emoji_picker.scss b/app/javascript/flavours/glitch/styles/components/emoji_picker.scss index 6bb9827b3..e402838db 100644 --- a/app/javascript/flavours/glitch/styles/components/emoji_picker.scss +++ b/app/javascript/flavours/glitch/styles/components/emoji_picker.scss @@ -71,7 +71,7 @@ .emoji-mart-anchor-bar { position: absolute; bottom: -3px; - left: 0; + inset-inline-start: 0; width: 100%; height: 3px; background-color: darken($ui-highlight-color, 3%); @@ -106,7 +106,7 @@ .emoji-mart-search { padding: 10px; - padding-right: 45px; + padding-inline-end: 45px; background: $simple-background-color; position: relative; @@ -114,7 +114,7 @@ font-size: 16px; font-weight: 400; padding: 7px 9px; - padding-right: 25px; + padding-inline-end: 25px; font-family: inherit; display: block; width: 100%; @@ -142,7 +142,7 @@ .emoji-mart-search-icon { position: absolute; top: 18px; - right: 45px + 5px; + inset-inline-end: 45px + 5px; z-index: 2; padding: 2px 5px 1px; border: 0; @@ -177,7 +177,7 @@ content: ''; position: absolute; top: 0; - left: 0; + inset-inline-start: 0; width: 100%; height: 100%; background-color: rgba($ui-secondary-color, 0.7); diff --git a/app/javascript/flavours/glitch/styles/components/error_boundary.scss b/app/javascript/flavours/glitch/styles/components/error_boundary.scss index 3176690e2..fbbb1ceb0 100644 --- a/app/javascript/flavours/glitch/styles/components/error_boundary.scss +++ b/app/javascript/flavours/glitch/styles/components/error_boundary.scss @@ -17,8 +17,8 @@ ul { list-style: disc; - margin-left: 0; - padding-left: 1em; + margin-inline-start: 0; + padding-inline-start: 1em; } textarea.web_app_crash-stacktrace { diff --git a/app/javascript/flavours/glitch/styles/components/explore.scss b/app/javascript/flavours/glitch/styles/components/explore.scss index bad77fc1c..8f67b365f 100644 --- a/app/javascript/flavours/glitch/styles/components/explore.scss +++ b/app/javascript/flavours/glitch/styles/components/explore.scss @@ -20,7 +20,7 @@ .search .fa { top: 10px; - right: 10px; + inset-inline-end: 10px; color: $dark-text-color; } @@ -104,7 +104,7 @@ object-fit: fill; position: absolute; top: 0; - left: 0; + inset-inline-start: 0; z-index: 0; &--hidden { diff --git a/app/javascript/flavours/glitch/styles/components/local_settings.scss b/app/javascript/flavours/glitch/styles/components/local_settings.scss index 52516cfb5..dee42bfdd 100644 --- a/app/javascript/flavours/glitch/styles/components/local_settings.scss +++ b/app/javascript/flavours/glitch/styles/components/local_settings.scss @@ -20,12 +20,12 @@ .boolean label, .radio_buttons label { position: relative; - padding-left: 28px; + padding-inline-start: 28px; padding-top: 3px; input { position: absolute; - left: 0; + inset-inline-start: 0; top: 0; } } @@ -149,7 +149,7 @@ ul { padding: 10px; - margin-left: 12px; + margin-inline-start: 12px; list-style: disc inside; } diff --git a/app/javascript/flavours/glitch/styles/components/media.scss b/app/javascript/flavours/glitch/styles/components/media.scss index 6d6b8bc0e..e1a6ae309 100644 --- a/app/javascript/flavours/glitch/styles/components/media.scss +++ b/app/javascript/flavours/glitch/styles/components/media.scss @@ -49,7 +49,7 @@ color: $primary-text-color; background: rgba($base-overlay-background, 0.5); bottom: 6px; - left: 6px; + inset-inline-start: 6px; padding: 2px 6px; border-radius: 2px; font-size: 11px; @@ -133,7 +133,7 @@ object-fit: cover; position: absolute; top: 0; - left: 0; + inset-inline-start: 0; z-index: 0; background: $base-overlay-background; @@ -207,16 +207,16 @@ .media-modal__closer { position: absolute; top: 0; - left: 0; - right: 0; + inset-inline-start: 0; + inset-inline-end: 0; bottom: 0; } .media-modal__navigation { position: absolute; top: 0; - left: 0; - right: 0; + inset-inline-start: 0; + inset-inline-end: 0; bottom: 0; pointer-events: none; transition: opacity 0.3s linear; @@ -259,18 +259,18 @@ } .media-modal__nav--left { - left: 0; + inset-inline-start: 0; } .media-modal__nav--right { - right: 0; + inset-inline-end: 0; } .media-modal__overlay { max-width: 600px; position: absolute; - left: 0; - right: 0; + inset-inline-start: 0; + inset-inline-end: 0; bottom: 0; margin: 0 auto; @@ -357,7 +357,7 @@ .media-modal__close { position: absolute; - right: 8px; + inset-inline-end: 8px; top: 8px; z-index: 100; } @@ -502,8 +502,8 @@ position: absolute; z-index: 2; bottom: 0; - left: 0; - right: 0; + inset-inline-start: 0; + inset-inline-end: 0; box-sizing: border-box; background: linear-gradient( 0deg, @@ -531,7 +531,7 @@ display: none; position: absolute; top: 0; - left: 0; + inset-inline-start: 0; width: 100%; height: 100%; z-index: 4; @@ -654,7 +654,7 @@ &.active { overflow: visible; width: 50px; - margin-right: 16px; + margin-inline-end: 16px; } &::before { @@ -665,7 +665,7 @@ display: block; position: absolute; height: 4px; - left: 0; + inset-inline-start: 0; top: 50%; transform: translate(0, -50%); } @@ -675,7 +675,7 @@ position: absolute; height: 4px; border-radius: 4px; - left: 0; + inset-inline-start: 0; top: 50%; transform: translate(0, -50%); background: lighten($ui-highlight-color, 8%); @@ -688,8 +688,8 @@ width: 12px; height: 12px; top: 50%; - left: 0; - margin-left: -6px; + inset-inline-start: 0; + margin-inline-start: -6px; transform: translate(0, -50%); background: lighten($ui-highlight-color, 8%); box-shadow: 1px 2px 6px rgba($base-shadow-color, 0.2); @@ -760,7 +760,7 @@ width: 12px; height: 12px; top: 10px; - margin-left: -6px; + margin-inline-start: -6px; background: lighten($ui-highlight-color, 8%); box-shadow: 1px 2px 6px rgba($base-shadow-color, 0.2); diff --git a/app/javascript/flavours/glitch/styles/components/misc.scss b/app/javascript/flavours/glitch/styles/components/misc.scss index 86b8b99c1..627500115 100644 --- a/app/javascript/flavours/glitch/styles/components/misc.scss +++ b/app/javascript/flavours/glitch/styles/components/misc.scss @@ -281,13 +281,15 @@ display: inline-flex; align-items: center; width: auto !important; - padding: 0 4px 0 2px; + padding: 0; + padding-inline-end: 4px; + padding-inline-start: 2px; } &__counter { display: inline-block; width: auto; - margin-left: 4px; + margin-inline-start: 4px; font-size: 12px; font-weight: 500; } @@ -375,7 +377,7 @@ body > [data-popper-placement] { } .notification__favourite-icon-wrapper { - left: 0; + inset-inline-start: 0; position: absolute; .fa.star-icon { @@ -654,7 +656,7 @@ body > [data-popper-placement] { } &.right { - left: -9px; + inset-inline-start: -9px; &::before { transform: rotate(-90deg); @@ -666,7 +668,7 @@ body > [data-popper-placement] { } &.left { - right: -9px; + inset-inline-end: -9px; &::before { transform: rotate(90deg); @@ -749,8 +751,8 @@ body > [data-popper-placement] { display: block; line-height: 18px; max-width: 311px; - right: 0; - text-align: left; + inset-inline-end: 0; + text-align: start; z-index: 9999; & > ul { @@ -764,12 +766,12 @@ body > [data-popper-placement] { } &.dropdown__right { - right: 0; + inset-inline-end: 0; } &.dropdown__left { & > ul { - left: -98px; + inset-inline-start: -98px; } } @@ -834,23 +836,23 @@ body > [data-popper-placement] { .drawer { flex: 0 0 auto; padding: 10px; - padding-left: 5px; - padding-right: 5px; + padding-inline-start: 5px; + padding-inline-end: 5px; &:first-child { - padding-left: 10px; + padding-inline-start: 10px; } &:last-child { - padding-right: 10px; + padding-inline-end: 10px; } } .columns-area > div { .column, .drawer { - padding-left: 5px; - padding-right: 5px; + padding-inline-start: 5px; + padding-inline-end: 5px; } } } @@ -897,12 +899,12 @@ body > [data-popper-placement] { } span { - margin-left: 5px; + margin-inline-start: 5px; display: none; } span.icon { - margin-left: 0; + margin-inline-start: 0; display: inline; } } @@ -912,7 +914,7 @@ body > [data-popper-placement] { &__badge { position: absolute; - left: 9px; + inset-inline-start: 9px; top: -13px; background: $ui-highlight-color; border: 2px solid lighten($ui-base-color, 8%); @@ -926,7 +928,7 @@ body > [data-popper-placement] { &__issue-badge { position: absolute; - left: 11px; + inset-inline-start: 11px; bottom: 1px; display: block; background: $error-red; @@ -1039,7 +1041,7 @@ body > [data-popper-placement] { margin-top: auto; margin-bottom: auto; line-height: 0; - left: 8px; + inset-inline-start: 8px; opacity: 0; transition: opacity 0.25s ease; } @@ -1058,7 +1060,7 @@ body > [data-popper-placement] { margin-top: auto; margin-bottom: auto; line-height: 0; - right: 10px; + inset-inline-end: 10px; opacity: 1; transition: opacity 0.25s ease; } @@ -1070,7 +1072,7 @@ body > [data-popper-placement] { .react-toggle-thumb { position: absolute; top: 1px; - left: 1px; + inset-inline-start: 1px; width: 22px; height: 22px; border: 1px solid $ui-base-color; @@ -1082,7 +1084,7 @@ body > [data-popper-placement] { } .react-toggle--checked .react-toggle-thumb { - left: 27px; + inset-inline-start: 27px; border-color: $ui-highlight-color; } @@ -1176,7 +1178,7 @@ body > [data-popper-placement] { thead { position: absolute; - left: -9999px; + inset-inline-start: -9999px; } td { @@ -1318,9 +1320,9 @@ button.icon-button.active i.fa-retweet { overflow: hidden; position: absolute; top: 0; - right: 0; + inset-inline-end: 0; bottom: -1px; - padding-left: 15px; // space for the box shadow to be visible + padding-inline-start: 15px; // space for the box shadow to be visible z-index: 999; align-items: center; justify-content: flex-end; @@ -1335,7 +1337,7 @@ button.icon-button.active i.fa-retweet { align-items: center; justify-content: center; background: lighten($ui-base-color, 8%); - border-left: 1px solid lighten($ui-base-color, 20%); + border-inline-start: 1px solid lighten($ui-base-color, 20%); box-shadow: 0 0 5px black; border-bottom: 1px solid $ui-base-color; } @@ -1381,7 +1383,7 @@ button.icon-button.active i.fa-retweet { overflow: visible; position: absolute; top: 50%; - left: 50%; + inset-inline-start: 50%; transform: translate(-50%, -50%); display: flex; align-items: center; @@ -1473,7 +1475,7 @@ button.icon-button.active i.fa-retweet { .spoiler-button { top: 0; - left: 0; + inset-inline-start: 0; width: 100%; height: 100%; position: absolute; @@ -1481,7 +1483,7 @@ button.icon-button.active i.fa-retweet { &--minified { display: flex; - left: 4px; + inset-inline-start: 4px; top: 4px; width: auto; height: auto; @@ -1539,7 +1541,7 @@ button.icon-button.active i.fa-retweet { color: $darker-text-color; display: inline-block; margin-bottom: 14px; - margin-left: 8px; + margin-inline-start: 8px; vertical-align: middle; } @@ -1589,7 +1591,7 @@ button.icon-button.active i.fa-retweet { display: flex; height: 100vh; justify-content: center; - left: 0; + inset-inline-start: 0; opacity: 0; position: fixed; top: 0; @@ -1614,9 +1616,9 @@ button.icon-button.active i.fa-retweet { .upload-area__background { position: absolute; top: 0; - right: 0; + inset-inline-end: 0; bottom: 0; - left: 0; + inset-inline-start: 0; z-index: -1; border-radius: 4px; background: $ui-base-color; @@ -1646,7 +1648,7 @@ button.icon-button.active i.fa-retweet { height: 3px; position: fixed; top: 0; - left: 0; + inset-inline-start: 0; z-index: 9999; } @@ -1657,7 +1659,7 @@ button.icon-button.active i.fa-retweet { .icon-badge { position: absolute; display: block; - right: -0.25em; + inset-inline-end: -0.25em; top: -0.25em; background-color: $ui-highlight-color; border-radius: 50%; @@ -1710,7 +1712,7 @@ button.icon-button.active i.fa-retweet { &__relative-time { font-size: 15px; color: $darker-text-color; - padding-left: 15px; + padding-inline-start: 15px; } &__names { @@ -1759,8 +1761,8 @@ button.icon-button.active i.fa-retweet { .ui .flash-message { margin-top: 10px; - margin-left: auto; - margin-right: auto; + margin-inline-start: auto; + margin-inline-end: auto; margin-bottom: 0; min-width: 75%; } diff --git a/app/javascript/flavours/glitch/styles/components/modal.scss b/app/javascript/flavours/glitch/styles/components/modal.scss index 65060f422..354e5a04f 100644 --- a/app/javascript/flavours/glitch/styles/components/modal.scss +++ b/app/javascript/flavours/glitch/styles/components/modal.scss @@ -10,8 +10,8 @@ .modal-root__overlay { position: fixed; top: 0; - left: 0; - right: 0; + inset-inline-start: 0; + inset-inline-end: 0; bottom: 0; background: rgba($base-overlay-background, 0.7); transition: background 0.5s; @@ -20,7 +20,7 @@ .modal-root__container { position: fixed; top: 0; - left: 0; + inset-inline-start: 0; width: 100%; height: 100%; box-sizing: border-box; @@ -41,7 +41,7 @@ .media-modal__zoom-button { position: absolute; - right: 64px; + inset-inline-end: 64px; top: 8px; z-index: 100; pointer-events: auto; @@ -93,7 +93,7 @@ & > div { position: absolute; top: 0; - left: 0; + inset-inline-start: 0; width: 100%; height: 100%; box-sizing: border-box; @@ -292,8 +292,8 @@ } &__extra { - padding-right: 65px; - padding-left: 185px; + padding-inline-end: 65px; + padding-inline-start: 185px; text-align: center; } } @@ -325,7 +325,7 @@ .onboarding-modal__page-four, .onboarding-modal__page-five { p { - text-align: left; + text-align: start; } .figure { @@ -345,7 +345,7 @@ &.non-interactive { pointer-events: none; - text-align: left; + text-align: start; } } } @@ -360,11 +360,11 @@ margin: 0 10px; &:first-child { - margin-left: 0; + margin-inline-start: 0; } &:last-child { - margin-right: 0; + margin-inline-end: 0; } p { @@ -410,7 +410,7 @@ display: inline-block; max-width: 30px; max-height: auto; - margin-left: 10px; + margin-inline-start: 10px; } .boost-modal, @@ -497,9 +497,9 @@ & > div { flex: 1 1 auto; - text-align: right; + text-align: end; color: $lighter-text-color; - padding-right: 10px; + padding-inline-end: 10px; } .button { @@ -711,7 +711,7 @@ & > span { font-size: 17px; font-weight: 500; - margin-left: 10px; + margin-inline-start: 10px; } } @@ -735,11 +735,11 @@ } .emoji-mart-search { - padding-right: 10px; + padding-inline-end: 10px; } .emoji-mart-search-icon { - right: 10px + 5px; + inset-inline-end: 10px + 5px; } } @@ -797,7 +797,7 @@ .report-modal__comment { padding: 20px; - border-right: 1px solid $ui-secondary-color; + border-inline-end: 1px solid $ui-secondary-color; max-width: 320px; p { @@ -947,7 +947,7 @@ & > .react-toggle, & > .icon, button:first-child { - margin-right: 10px; + margin-inline-end: 10px; } } } @@ -980,8 +980,8 @@ } .confirmation-modal__do_not_ask_again { - padding-left: 20px; - padding-right: 20px; + padding-inline-start: 20px; + padding-inline-end: 20px; padding-bottom: 10px; font-size: 14px; @@ -1023,7 +1023,7 @@ border: 1px solid darken($simple-background-color, 14%); border-radius: 4px; padding: 6px 10px; - padding-right: 30px; + padding-inline-end: 30px; } } @@ -1047,7 +1047,7 @@ &__label { color: $inverted-text-color; margin: 0; - margin-left: 8px; + margin-inline-start: 8px; } } } @@ -1058,7 +1058,7 @@ .report-modal__close { position: absolute; top: 10px; - right: 10px; + inset-inline-end: 10px; } } @@ -1204,13 +1204,13 @@ width: 100%; height: 100%; top: 0; - left: 0; + inset-inline-start: 0; } &__preview { position: absolute; bottom: 10px; - right: 10px; + inset-inline-end: 10px; z-index: 2; cursor: move; transition: opacity 0.1s ease; @@ -1270,7 +1270,7 @@ ul { padding: 10px; - margin-left: 12px; + margin-inline-start: 12px; list-style: disc inside; } diff --git a/app/javascript/flavours/glitch/styles/components/privacy_policy.scss b/app/javascript/flavours/glitch/styles/components/privacy_policy.scss index 93123075e..cab78402b 100644 --- a/app/javascript/flavours/glitch/styles/components/privacy_policy.scss +++ b/app/javascript/flavours/glitch/styles/components/privacy_policy.scss @@ -89,7 +89,7 @@ &::before { content: counter(list-counter) '.'; position: absolute; - left: 0; + inset-inline-start: 0; } } @@ -101,13 +101,13 @@ width: 0.375em; height: 0.375em; top: 0.5em; - left: 0.25em; + inset-inline-start: 0.25em; } ul > li, ol > li { position: relative; - padding-left: 1.75em; + padding-inline-start: 1.75em; } & > ul > li p { diff --git a/app/javascript/flavours/glitch/styles/components/search.scss b/app/javascript/flavours/glitch/styles/components/search.scss index a6e98a868..f93e14d76 100644 --- a/app/javascript/flavours/glitch/styles/components/search.scss +++ b/app/javascript/flavours/glitch/styles/components/search.scss @@ -8,7 +8,7 @@ display: block; padding: 15px; - padding-right: 30px; + padding-inline-end: 30px; line-height: 18px; font-size: 16px; @@ -44,7 +44,7 @@ .fa { position: absolute; top: 16px; - right: 10px; + inset-inline-end: 10px; z-index: 2; display: inline-block; opacity: 0; @@ -98,7 +98,7 @@ .fa { display: inline-block; - margin-right: 5px; + margin-inline-end: 5px; } } @@ -120,7 +120,7 @@ .fa { display: inline-block; - margin-right: 5px; + margin-inline-end: 5px; } } @@ -170,7 +170,7 @@ flex: 0 0 auto; font-size: 24px; font-weight: 500; - text-align: right; + text-align: end; color: $secondary-text-color; text-decoration: none; } diff --git a/app/javascript/flavours/glitch/styles/components/sensitive.scss b/app/javascript/flavours/glitch/styles/components/sensitive.scss index 490951fb4..c77515eb7 100644 --- a/app/javascript/flavours/glitch/styles/components/sensitive.scss +++ b/app/javascript/flavours/glitch/styles/components/sensitive.scss @@ -4,7 +4,7 @@ align-items: center; position: absolute; top: 4px; - left: 4px; + inset-inline-start: 4px; z-index: 100; } diff --git a/app/javascript/flavours/glitch/styles/components/signed_out.scss b/app/javascript/flavours/glitch/styles/components/signed_out.scss index efb49305d..18492983e 100644 --- a/app/javascript/flavours/glitch/styles/components/signed_out.scss +++ b/app/javascript/flavours/glitch/styles/components/signed_out.scss @@ -101,7 +101,7 @@ } .account__avatar-wrapper { - margin-left: 0; + margin-inline-start: 0; } .spacer { diff --git a/app/javascript/flavours/glitch/styles/components/single_column.scss b/app/javascript/flavours/glitch/styles/components/single_column.scss index 036b3f6ef..6563fa47b 100644 --- a/app/javascript/flavours/glitch/styles/components/single_column.scss +++ b/app/javascript/flavours/glitch/styles/components/single_column.scss @@ -30,7 +30,7 @@ line-height: 18px; font-size: 16px; padding: 15px; - padding-right: 30px; + padding-inline-end: 30px; } .search__icon .fa { @@ -130,7 +130,7 @@ line-height: 18px; font-size: 16px; padding: 15px; - padding-right: 30px; + padding-inline-end: 30px; } .search__icon .fa { @@ -174,11 +174,12 @@ } .notification__report { - padding: 15px 15px 15px (48px + 15px * 2); + padding: 15px; + padding-inline-start: (48px + 15px * 2); min-height: 48px + 2px; &__avatar { - left: 15px; + inset-inline-start: 15px; top: 17px; } } @@ -265,7 +266,7 @@ .navigation-panel { margin: 0; background: $ui-base-color; - border-left: 1px solid lighten($ui-base-color, 8%); + border-inline-start: 1px solid lighten($ui-base-color, 8%); height: 100vh; } diff --git a/app/javascript/flavours/glitch/styles/components/status.scss b/app/javascript/flavours/glitch/styles/components/status.scss index 21c28919a..2b52051e4 100644 --- a/app/javascript/flavours/glitch/styles/components/status.scss +++ b/app/javascript/flavours/glitch/styles/components/status.scss @@ -164,9 +164,10 @@ .status__content__spoiler-icon { display: inline-block; - margin: 0 0 0 5px; - border-left: 1px solid currentColor; - padding: 0 0 0 4px; + margin-inline-start: 5px; + border-inline-start: 1px solid currentColor; + padding: 0; + padding-inline-start: 4px; font-size: 16px; vertical-align: -2px; } @@ -195,7 +196,7 @@ } .status__prepend-icon-wrapper { - left: -26px; + inset-inline-start: -26px; position: absolute; } @@ -241,7 +242,7 @@ @supports (-ms-overflow-style: -ms-autohiding-scrollbar) { // Add margin to avoid Edge auto-hiding scrollbar appearing over content. // On Edge 16 this is 16px and Edge <=15 it's 12px, so aim for 16px. - padding-right: 28px; // 12px + 16px + padding-inline-end: 28px; // 12px + 16px } @keyframes fade { @@ -310,8 +311,8 @@ &.has-background::before { display: block; position: absolute; - left: 0; - right: 0; + inset-inline-start: 0; + inset-inline-end: 0; top: 0; bottom: 0; background-image: linear-gradient( @@ -339,8 +340,8 @@ position: absolute; top: 0; bottom: 0; - left: 0; - right: 0; + inset-inline-start: 0; + inset-inline-end: 0; background: linear-gradient( rgba($ui-base-color, 0), rgba($ui-base-color, 1) @@ -399,7 +400,7 @@ display: inline-block; color: $dark-text-color; font-size: 14px; - text-align: right; + text-align: end; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; @@ -440,8 +441,8 @@ .status__visibility-icon, .status__reply-icon, .text-icon { - padding-left: 2px; - padding-right: 2px; + padding-inline-start: 2px; + padding-inline-end: 2px; } .status__collapse-button.active > .fa-angle-double-up { @@ -507,7 +508,7 @@ .status__prepend { margin-top: -2px; margin-bottom: 8px; - margin-left: 58px; + margin-inline-start: 58px; color: $dark-text-color; font-size: 14px; position: relative; @@ -534,10 +535,10 @@ } .status__action-bar-button { - margin-right: 18px; + margin-inline-end: 18px; &.icon-button--with-counter { - margin-right: 14px; + margin-inline-end: 14px; } } @@ -618,7 +619,7 @@ font-weight: 500; font-size: 12px; line-height: 17px; - margin-left: 6px; + margin-inline-start: 6px; } .status__display-name, @@ -689,12 +690,12 @@ a.status__display-name, .detailed-status__display-avatar { float: left; - margin-right: 10px; + margin-inline-end: 10px; } .status__avatar { flex: none; - margin: 0 10px 0 0; + margin-inline-end: 10px; height: 48px; width: 48px; } @@ -747,9 +748,9 @@ a.status__display-name, &__actions { bottom: 0; - left: 0; + inset-inline-start: 0; position: absolute; - right: 0; + inset-inline-end: 0; top: 0; display: flex; justify-content: center; @@ -834,7 +835,8 @@ a.status-card { .status-card__content { flex: 1 1 auto; overflow: hidden; - padding: 14px 14px 14px 8px; + padding: 14px; + padding-inline-start: 8px; } .status-card__description { @@ -860,7 +862,7 @@ a.status-card { position: absolute; transform-origin: 50% 50%; top: 50%; - left: 50%; + inset-inline-start: 50%; transform: translate(-50%, -50%); } } @@ -927,7 +929,7 @@ a.status-card.compact:hover { object-fit: fill; position: absolute; top: 0; - left: 0; + inset-inline-start: 0; z-index: 0; background: $base-overlay-background; @@ -949,7 +951,7 @@ a.status-card.compact:hover { color: $dark-text-color; padding: 8px 18px; cursor: default; - border-right: 1px solid lighten($ui-base-color, 8%); + border-inline-end: 1px solid lighten($ui-base-color, 8%); display: flex; flex-direction: column; align-items: center; @@ -964,7 +966,7 @@ a.status-card.compact:hover { &__list { list-style: none; padding: 4px 0; - padding-left: 8px; + padding-inline-start: 8px; display: flex; flex-direction: column; justify-content: center; @@ -1024,10 +1026,10 @@ a.status-card.compact:hover { content: ''; position: absolute; top: 0; - left: 0; + inset-inline-start: 0; width: 100%; height: 100%; - border-left: 4px solid $highlight-text-color; + border-inline-start: 4px solid $highlight-text-color; pointer-events: none; } } @@ -1036,12 +1038,12 @@ a.status-card.compact:hover { .picture-in-picture { position: fixed; bottom: 20px; - right: 20px; + inset-inline-end: 20px; width: 300px; &.left { - right: unset; - left: 20px; + inset-inline-end: unset; + inset-inline-start: 20px; } &__footer { @@ -1067,7 +1069,7 @@ a.status-card.compact:hover { } .account__avatar { - margin-right: 10px; + margin-inline-end: 10px; } .display-name { diff --git a/app/javascript/flavours/glitch/styles/containers.scss b/app/javascript/flavours/glitch/styles/containers.scss index b90851546..d75ccecee 100644 --- a/app/javascript/flavours/glitch/styles/containers.scss +++ b/app/javascript/flavours/glitch/styles/containers.scss @@ -18,7 +18,7 @@ .logo { height: 42px; - margin-right: 10px; + margin-inline-end: 10px; } a { @@ -75,7 +75,7 @@ height: 40px; @include avatar-size(40px); - margin-right: 10px; + margin-inline-end: 10px; img { width: 100%; @@ -104,6 +104,6 @@ display: block; font-size: 32px; line-height: 40px; - margin-left: 10px; + margin-inline-start: 10px; } } diff --git a/app/javascript/flavours/glitch/styles/forms.scss b/app/javascript/flavours/glitch/styles/forms.scss index 9692df786..3a59b1ddd 100644 --- a/app/javascript/flavours/glitch/styles/forms.scss +++ b/app/javascript/flavours/glitch/styles/forms.scss @@ -54,12 +54,12 @@ code { .radio > label { position: relative; - padding-left: 28px; + padding-inline-start: 28px; input { position: absolute; top: -2px; - left: 0; + inset-inline-start: 0; } } } @@ -79,7 +79,7 @@ code { .label_input, .hint { - padding-left: 28px; + padding-inline-start: 28px; } .label_input__wrapper { @@ -89,7 +89,7 @@ code { label.checkbox { position: absolute; top: 2px; - left: 0; + inset-inline-start: 0; } label a { @@ -157,7 +157,7 @@ code { li { list-style: disc; - margin-left: 18px; + margin-inline-start: 18px; } } @@ -223,7 +223,7 @@ code { &.select .hint { margin-top: 6px; - margin-left: 150px; + margin-inline-start: 150px; } } @@ -378,13 +378,13 @@ code { width: auto; position: relative; padding-top: 5px; - padding-left: 25px; + padding-inline-start: 25px; flex: 1 1 auto; } input[type='checkbox'] { position: absolute; - left: 0; + inset-inline-start: 0; top: 5px; margin: 0; } @@ -515,10 +515,10 @@ code { font-weight: 500; outline: 0; margin-bottom: 10px; - margin-right: 10px; + margin-inline-end: 10px; &:last-child { - margin-right: 0; + margin-inline-end: 0; } &:active, @@ -570,8 +570,8 @@ code { no-repeat right 8px center / auto 16px; border: 1px solid darken($ui-base-color, 14%); border-radius: 4px; - padding-left: 10px; - padding-right: 30px; + padding-inline-start: 10px; + padding-inline-end: 30px; height: 41px; } @@ -586,7 +586,7 @@ code { &__append { position: absolute; - right: 3px; + inset-inline-end: 3px; top: 1px; padding: 10px; padding-bottom: 9px; @@ -604,7 +604,7 @@ code { display: block; position: absolute; top: 0; - right: 0; + inset-inline-end: 0; bottom: 1px; width: 5px; background-image: linear-gradient( @@ -778,7 +778,7 @@ code { li { display: inline-block; - margin-right: 10px; + margin-inline-end: 10px; } a { @@ -864,7 +864,8 @@ code { flex: 0 0 auto; background: $simple-background-color; padding: 4px; - margin: 0 10px 20px 0; + margin-inline-end: 10px; + margin-bottom: 20px; box-shadow: 0 0 15px rgba($base-shadow-color, 0.2); display: inline-block; @@ -937,7 +938,7 @@ code { .actions { padding: 30px 0; - padding-right: 20px; + padding-inline-end: 20px; flex: 0 0 auto; } } @@ -990,7 +991,7 @@ code { border-radius: 4px; display: flex; align-items: center; - padding-right: 4px; + padding-inline-end: 4px; position: relative; top: 1px; transition: border-color 300ms linear; @@ -1114,3 +1115,89 @@ code { white-space: nowrap; } } + +.progress-tracker { + display: flex; + align-items: center; + padding-bottom: 30px; + margin-bottom: 30px; + + li { + flex: 0 0 auto; + position: relative; + } + + .separator { + height: 2px; + background: $ui-base-lighter-color; + flex: 1 1 auto; + + &.completed { + background: $highlight-text-color; + } + } + + .circle { + box-sizing: border-box; + position: relative; + width: 30px; + height: 30px; + border-radius: 50%; + border: 2px solid $ui-base-lighter-color; + flex: 0 0 auto; + display: flex; + align-items: center; + justify-content: center; + + svg { + width: 16px; + } + } + + .label { + position: absolute; + font-size: 14px; + font-weight: 500; + color: $secondary-text-color; + padding-top: 10px; + text-align: center; + width: 100px; + left: 50%; + transform: translateX(-50%); + } + + li:first-child .label { + left: auto; + inset-inline-start: 0; + text-align: start; + transform: none; + } + + li:last-child .label { + left: auto; + inset-inline-end: 0; + text-align: end; + transform: none; + } + + .active .circle { + border-color: $highlight-text-color; + + &::before { + content: ''; + width: 10px; + height: 10px; + border-radius: 50%; + background: $highlight-text-color; + position: absolute; + left: 50%; + top: 50%; + transform: translate(-50%, -50%); + } + } + + .completed .circle { + border-color: $highlight-text-color; + background: $highlight-text-color; + } +} diff --git a/app/javascript/flavours/glitch/styles/modal.scss b/app/javascript/flavours/glitch/styles/modal.scss index 6170877b2..29b1f162b 100644 --- a/app/javascript/flavours/glitch/styles/modal.scss +++ b/app/javascript/flavours/glitch/styles/modal.scss @@ -25,7 +25,7 @@ height: 100%; position: absolute; bottom: 0; - left: 0; + inset-inline-start: 0; } } } diff --git a/app/javascript/flavours/glitch/styles/polls.scss b/app/javascript/flavours/glitch/styles/polls.scss index a4ce14a09..6f1cf0589 100644 --- a/app/javascript/flavours/glitch/styles/polls.scss +++ b/app/javascript/flavours/glitch/styles/polls.scss @@ -277,7 +277,7 @@ border: 1px solid darken($simple-background-color, 14%); border-radius: 4px; padding: 6px 10px; - padding-right: 30px; + padding-inline-end: 30px; } .icon-button.disabled { diff --git a/app/javascript/flavours/glitch/styles/rich_text.scss b/app/javascript/flavours/glitch/styles/rich_text.scss index 081641f0b..70138809a 100644 --- a/app/javascript/flavours/glitch/styles/rich_text.scss +++ b/app/javascript/flavours/glitch/styles/rich_text.scss @@ -13,8 +13,8 @@ } blockquote { - padding-left: 10px; - border-left: 3px solid $darker-text-color; + padding-inline-start: 10px; + border-inline-start: 3px solid $darker-text-color; color: $darker-text-color; white-space: normal; @@ -75,7 +75,7 @@ ul, ol { - margin-left: 2em; + margin-inline-start: 2em; p { margin: 0; diff --git a/app/javascript/flavours/glitch/styles/rtl.scss b/app/javascript/flavours/glitch/styles/rtl.scss index 64a5c2c03..ebc35bb0c 100644 --- a/app/javascript/flavours/glitch/styles/rtl.scss +++ b/app/javascript/flavours/glitch/styles/rtl.scss @@ -1,131 +1,43 @@ body.rtl { direction: rtl; - .column-header > button { - text-align: right; - padding-left: 0; - padding-right: 15px; - } - - .radio-button__input { - margin-right: 0; - margin-left: 10px; - } - - .display-name { - text-align: right; - } - - .notification__message { - margin-left: 0; - margin-right: 68px; + .reactions-bar { + direction: rtl; } .drawer__inner__mastodon > img { transform: scaleX(-1); } - .notification__favourite-icon-wrapper { - left: auto; - right: -26px; - } - - .column-link__icon, - .column-header__icon { - margin-right: 0; - margin-left: 5px; - } - - .compose-form .character-counter__wrapper { - margin-right: 0; - margin-left: 4px; - } - .boost-modal__status-time { float: left; } - .navigation-bar__profile { - margin-left: 0; - margin-right: 8px; - } - - .search__input { + .compose-form .autosuggest-textarea__textarea { padding-right: 10px; - padding-left: 30px; - } - - .search__icon .fa { - right: auto; - left: 10px; + padding-left: 10px + 22px; } .columns-area { direction: rtl; } - .column-header__buttons { - left: 0; - right: auto; - margin-left: 0; - margin-right: -15px; - } - - .column-inline-form .icon-button { - margin-left: 0; - margin-right: 5px; - } - - .column-header__links .text-btn { - margin-left: 10px; - margin-right: 0; + .react-swipeable-view-container > * { + direction: rtl; } .account__avatar-wrapper { float: right; } - .column-header__back-button { - padding-left: 5px; - padding-right: 0; - } - .column-header__setting-arrows { float: left; - - .column-header__setting-btn { - &:first-child { - padding-left: 7px; - padding-right: 5px; - } - - &:last-child { - padding-right: 7px; - padding-left: 5px; - margin-right: 5px; - margin-left: 0; - } - } - } - - .setting-toggle__label { - margin-left: 0; - margin-right: 8px; } .setting-meta__label { float: left; } - .status__avatar { - margin-left: 10px; - margin-right: 0; - - // Those are used for public pages - left: auto; - right: 10px; - } - .activity-stream .status.light { padding-left: 10px; padding-right: 68px; @@ -142,16 +54,6 @@ body.rtl { padding-left: 0; } - .status__prepend { - margin-left: 0; - margin-right: 58px; - } - - .status__prepend-icon-wrapper { - left: auto; - right: -26px; - } - .activity-stream .pre-header .pre-header__icon { left: auto; right: 42px; @@ -162,138 +64,34 @@ body.rtl { margin-left: 8px; } - .account__avatar-overlay-overlay { - right: auto; - left: 0; - } - - .column-back-button--slim-button { - right: auto; - left: 0; - } - .status__relative-time, .activity-stream .status.light .status__header .status__meta { float: left; text-align: left; } - .status__action-bar { - &__counter { - margin-right: 0; - margin-left: 11px; - - .status__action-bar-button { - margin-right: 0; - margin-left: 4px; - } - } - } - .status__action-bar-button { float: right; - margin-right: 0; - margin-left: 18px; } .status__action-bar-dropdown { float: right; } - .privacy-dropdown__dropdown { - margin-left: 0; - margin-right: 40px; - } - - .privacy-dropdown__option__icon { - margin-left: 10px; - margin-right: 0; - } - .detailed-status__display-name .display-name { text-align: right; } .detailed-status__display-avatar { - margin-right: 0; - margin-left: 10px; float: right; } - .detailed-status__favorites, - .detailed-status__reblogs { - margin-left: 0; - margin-right: 6px; - } - - .fa-ul { - margin-left: 2.14285714em; - } - - .fa-li { - left: auto; - right: -2.14285714em; - } - .admin-wrapper { direction: rtl; } - .admin-wrapper .sidebar ul a i.fa, - a.table-action-link i.fa { - margin-right: 0; - margin-left: 5px; - } - - .simple_form .check_boxes .checkbox label { - padding-left: 0; - padding-right: 25px; - } - - .simple_form .input.with_label.boolean label.checkbox { - padding-left: 25px; - padding-right: 0; - } - - .simple_form .check_boxes .checkbox input[type='checkbox'], - .simple_form .input.boolean input[type='checkbox'] { - left: auto; - right: 0; - } - - .simple_form .input.radio_buttons .radio { - left: auto; - right: 0; - } - - .simple_form .input.radio_buttons .radio > label { - padding-right: 28px; - padding-left: 0; - } - - .simple_form .input-with-append .input input { - padding-left: 142px; - padding-right: 0; - } - - .simple_form .input.boolean label.checkbox { - left: auto; - right: 0; - } - - .simple_form .input.boolean .label_input, - .simple_form .input.boolean .hint { - padding-left: 0; - padding-right: 28px; - } - .simple_form .label_input__append { - right: auto; - left: 3px; - &::after { - right: auto; - left: 0; background-image: linear-gradient( to left, rgba(darken($ui-base-color, 10%), 0), @@ -308,49 +106,6 @@ body.rtl { no-repeat left 8px center / auto 16px; } - .table th, - .table td { - text-align: right; - } - - .filters .filter-subset { - margin-right: 0; - margin-left: 45px; - } - - @media screen and (min-width: 631px) { - .column, - .drawer { - padding-left: 5px; - padding-right: 5px; - - &:first-child { - padding-left: 5px; - padding-right: 10px; - } - } - - .columns-area > div { - .column, - .drawer { - padding-left: 5px; - padding-right: 5px; - } - } - } - - .columns-area--mobile .column, - .columns-area--mobile .drawer { - padding-left: 0; - padding-right: 0; - } - - .card__bar .display-name { - margin-left: 0; - margin-right: 15px; - text-align: right; - } - .fa-chevron-left::before { content: '\F054'; } @@ -358,14 +113,4 @@ body.rtl { .fa-chevron-right::before { content: '\F053'; } - - .column-back-button__icon { - margin-right: 0; - margin-left: 5px; - } - - .simple_form .input.radio_buttons .radio > label input { - left: auto; - right: 0; - } } diff --git a/app/javascript/flavours/glitch/styles/statuses.scss b/app/javascript/flavours/glitch/styles/statuses.scss index f7037d9dc..77e9d38bd 100644 --- a/app/javascript/flavours/glitch/styles/statuses.scss +++ b/app/javascript/flavours/glitch/styles/statuses.scss @@ -93,7 +93,7 @@ width: 20px; height: auto; vertical-align: middle; - margin-right: 5px; + margin-inline-end: 5px; fill: $primary-text-color; } @@ -154,11 +154,12 @@ a.button.logo-button { } .status { - padding: 15px 15px 15px (48px + 15px * 2); + padding: 15px; + padding-inline-start: (48px + 15px * 2); min-height: 48px + 2px; &__avatar { - left: 15px; + inset-inline-start: 15px; top: 17px; .account__avatar { @@ -175,7 +176,7 @@ a.button.logo-button { padding: 8px 0; padding-bottom: 2px; margin: initial; - margin-left: 48px + 15px * 2; + margin-inline-start: 48px + 15px * 2; padding-top: 15px; } @@ -184,7 +185,7 @@ a.button.logo-button { margin: initial; float: initial; width: auto; - left: -32px; + inset-inline-start: -32px; } .media-gallery, diff --git a/app/javascript/flavours/glitch/styles/tables.scss b/app/javascript/flavours/glitch/styles/tables.scss index 14daf591e..0c730f1a7 100644 --- a/app/javascript/flavours/glitch/styles/tables.scss +++ b/app/javascript/flavours/glitch/styles/tables.scss @@ -10,7 +10,7 @@ line-height: 18px; vertical-align: top; border-top: 1px solid $ui-base-color; - text-align: left; + text-align: start; background: darken($ui-base-color, 4%); } @@ -91,12 +91,12 @@ &:first-child { border-radius: 4px 0 0; - border-left: 1px solid darken($ui-base-color, 8%); + border-inline-start: 1px solid darken($ui-base-color, 8%); } &:last-child { border-radius: 0 4px 0 0; - border-right: 1px solid darken($ui-base-color, 8%); + border-inline-end: 1px solid darken($ui-base-color, 8%); } } } @@ -125,7 +125,7 @@ button.table-action-link, a.table-action-link { text-decoration: none; display: inline-block; - margin-right: 5px; + margin-inline-end: 5px; padding: 0 10px; color: $darker-text-color; font-weight: 500; @@ -136,11 +136,11 @@ a.table-action-link { i.fa { font-weight: 400; - margin-right: 5px; + margin-inline-end: 5px; } &:first-child { - padding-left: 0; + padding-inline-start: 0; } } @@ -172,7 +172,7 @@ a.table-action-link { &__actions, &__content { padding: 8px 0; - padding-right: 16px; + padding-inline-end: 16px; flex: 1 1 auto; } } @@ -188,8 +188,8 @@ a.table-action-link { align-items: center; &__actions { - text-align: right; - padding-right: 16px - 5px; + text-align: end; + padding-inline-end: 16px - 5px; } } @@ -296,7 +296,7 @@ a.table-action-link { display: flex; justify-content: center; align-items: center; - margin-right: 10px; + margin-inline-end: 10px; .emojione { width: 32px; @@ -315,7 +315,7 @@ a.table-action-link { &__extra { flex: 0 0 auto; - text-align: right; + text-align: end; color: $darker-text-color; font-weight: 500; } diff --git a/app/javascript/flavours/glitch/styles/widgets.scss b/app/javascript/flavours/glitch/styles/widgets.scss index 0f2b7ac5b..f54d2f2e5 100644 --- a/app/javascript/flavours/glitch/styles/widgets.scss +++ b/app/javascript/flavours/glitch/styles/widgets.scss @@ -165,7 +165,7 @@ margin-bottom: 15px; .fa { - margin-right: 5px; + margin-inline-end: 5px; color: $darker-text-color; } } @@ -298,7 +298,7 @@ padding: 10px; &:first-child { - text-align: left; + text-align: start; } } @@ -329,9 +329,9 @@ tbody td.accounts-table__extra { width: 120px; - text-align: right; + text-align: end; color: $darker-text-color; - padding-right: 16px; + padding-inline-end: 16px; a { text-decoration: none; |