From 3e9dc4044bb7e1ef6131fbd6430ed85b3cc2fcfa Mon Sep 17 00:00:00 2001 From: Eugen Rochko <eugen@zeonfederated.com> Date: Sun, 14 Jun 2020 22:29:40 +0200 Subject: [PATCH] Add hints about incomplete remote content to web UI (#14031) --- .../mastodon/components/scrollable_list.js | 5 ++- .../mastodon/components/timeline_hint.js | 18 +++++++++ .../features/account_timeline/index.js | 28 ++++++++++++- .../mastodon/features/followers/index.js | 28 ++++++++++++- .../mastodon/features/following/index.js | 28 ++++++++++++- app/javascript/mastodon/locales/ar.json | 6 +++ app/javascript/mastodon/locales/ast.json | 6 +++ app/javascript/mastodon/locales/bg.json | 6 +++ app/javascript/mastodon/locales/bn.json | 6 +++ app/javascript/mastodon/locales/br.json | 6 +++ app/javascript/mastodon/locales/ca.json | 6 +++ app/javascript/mastodon/locales/co.json | 6 +++ app/javascript/mastodon/locales/cs.json | 6 +++ app/javascript/mastodon/locales/cy.json | 6 +++ app/javascript/mastodon/locales/da.json | 6 +++ app/javascript/mastodon/locales/de.json | 6 +++ .../mastodon/locales/defaultMessages.json | 40 ++++++++++++++++++- app/javascript/mastodon/locales/el.json | 6 +++ app/javascript/mastodon/locales/en.json | 6 +++ app/javascript/mastodon/locales/eo.json | 6 +++ app/javascript/mastodon/locales/es-AR.json | 6 +++ app/javascript/mastodon/locales/es.json | 6 +++ app/javascript/mastodon/locales/et.json | 6 +++ app/javascript/mastodon/locales/eu.json | 6 +++ app/javascript/mastodon/locales/fa.json | 6 +++ app/javascript/mastodon/locales/fi.json | 6 +++ app/javascript/mastodon/locales/fr.json | 6 +++ app/javascript/mastodon/locales/ga.json | 6 +++ app/javascript/mastodon/locales/gl.json | 6 +++ app/javascript/mastodon/locales/he.json | 6 +++ app/javascript/mastodon/locales/hi.json | 6 +++ app/javascript/mastodon/locales/hr.json | 6 +++ app/javascript/mastodon/locales/hu.json | 6 +++ app/javascript/mastodon/locales/hy.json | 6 +++ app/javascript/mastodon/locales/id.json | 6 +++ app/javascript/mastodon/locales/io.json | 6 +++ app/javascript/mastodon/locales/is.json | 6 +++ app/javascript/mastodon/locales/it.json | 6 +++ app/javascript/mastodon/locales/ja.json | 6 +++ app/javascript/mastodon/locales/ka.json | 6 +++ app/javascript/mastodon/locales/kab.json | 6 +++ app/javascript/mastodon/locales/kk.json | 6 +++ app/javascript/mastodon/locales/kn.json | 6 +++ app/javascript/mastodon/locales/ko.json | 6 +++ app/javascript/mastodon/locales/lt.json | 6 +++ app/javascript/mastodon/locales/lv.json | 6 +++ app/javascript/mastodon/locales/mk.json | 6 +++ app/javascript/mastodon/locales/ml.json | 6 +++ app/javascript/mastodon/locales/mr.json | 6 +++ app/javascript/mastodon/locales/ms.json | 6 +++ app/javascript/mastodon/locales/nl.json | 6 +++ app/javascript/mastodon/locales/nn.json | 6 +++ app/javascript/mastodon/locales/no.json | 6 +++ app/javascript/mastodon/locales/oc.json | 6 +++ app/javascript/mastodon/locales/pl.json | 6 +++ app/javascript/mastodon/locales/pt-BR.json | 6 +++ app/javascript/mastodon/locales/pt-PT.json | 6 +++ app/javascript/mastodon/locales/ro.json | 6 +++ app/javascript/mastodon/locales/ru.json | 6 +++ app/javascript/mastodon/locales/sc.json | 6 +++ app/javascript/mastodon/locales/sk.json | 6 +++ app/javascript/mastodon/locales/sl.json | 6 +++ app/javascript/mastodon/locales/sq.json | 6 +++ app/javascript/mastodon/locales/sr-Latn.json | 6 +++ app/javascript/mastodon/locales/sr.json | 6 +++ app/javascript/mastodon/locales/sv.json | 6 +++ app/javascript/mastodon/locales/ta.json | 6 +++ app/javascript/mastodon/locales/te.json | 6 +++ app/javascript/mastodon/locales/th.json | 6 +++ app/javascript/mastodon/locales/tr.json | 6 +++ app/javascript/mastodon/locales/uk.json | 6 +++ app/javascript/mastodon/locales/ur.json | 6 +++ app/javascript/mastodon/locales/vi.json | 6 +++ app/javascript/mastodon/locales/zh-CN.json | 6 +++ app/javascript/mastodon/locales/zh-HK.json | 6 +++ app/javascript/mastodon/locales/zh-TW.json | 6 +++ .../styles/mastodon/components.scss | 25 ++++++++++++ 77 files changed, 584 insertions(+), 8 deletions(-) create mode 100644 app/javascript/mastodon/components/timeline_hint.js diff --git a/app/javascript/mastodon/components/scrollable_list.js b/app/javascript/mastodon/components/scrollable_list.js index 65ca43911c..7eb0910c90 100644 --- a/app/javascript/mastodon/components/scrollable_list.js +++ b/app/javascript/mastodon/components/scrollable_list.js @@ -32,6 +32,7 @@ export default class ScrollableList extends PureComponent { hasMore: PropTypes.bool, numPending: PropTypes.number, prepend: PropTypes.node, + append: PropTypes.node, alwaysPrepend: PropTypes.bool, emptyMessage: PropTypes.node, children: PropTypes.node, @@ -280,7 +281,7 @@ export default class ScrollableList extends PureComponent { } render () { - const { children, scrollKey, trackScroll, shouldUpdateScroll, showLoading, isLoading, hasMore, numPending, prepend, alwaysPrepend, emptyMessage, onLoadMore } = this.props; + const { children, scrollKey, trackScroll, shouldUpdateScroll, showLoading, isLoading, hasMore, numPending, prepend, alwaysPrepend, append, emptyMessage, onLoadMore } = this.props; const { fullscreen } = this.state; const childrenCount = React.Children.count(children); @@ -327,6 +328,8 @@ export default class ScrollableList extends PureComponent { ))} {loadMore} + + {!hasMore && append} </div> </div> ); diff --git a/app/javascript/mastodon/components/timeline_hint.js b/app/javascript/mastodon/components/timeline_hint.js new file mode 100644 index 0000000000..fb55a62cca --- /dev/null +++ b/app/javascript/mastodon/components/timeline_hint.js @@ -0,0 +1,18 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import { FormattedMessage } from 'react-intl'; + +const TimelineHint = ({ resource, url }) => ( + <div className='timeline-hint'> + <strong><FormattedMessage id='timeline_hint.remote_resource_not_displayed' defaultMessage='{resource} from other servers are not displayed.' values={{ resource }} /></strong> + <br /> + <a href={url} target='_blank'><FormattedMessage id='account.browse_more_on_origin_server' defaultMessage='Browse more on the original profile' /></a> + </div> +); + +TimelineHint.propTypes = { + resource: PropTypes.node.isRequired, + url: PropTypes.string.isRequired, +}; + +export default TimelineHint; diff --git a/app/javascript/mastodon/features/account_timeline/index.js b/app/javascript/mastodon/features/account_timeline/index.js index 37622d4c0b..6740e8adb3 100644 --- a/app/javascript/mastodon/features/account_timeline/index.js +++ b/app/javascript/mastodon/features/account_timeline/index.js @@ -14,6 +14,7 @@ import ImmutablePureComponent from 'react-immutable-pure-component'; import { FormattedMessage } from 'react-intl'; import { fetchAccountIdentityProofs } from '../../actions/identity_proofs'; import MissingIndicator from 'mastodon/components/missing_indicator'; +import TimelineHint from 'mastodon/components/timeline_hint'; const emptyList = ImmutableList(); @@ -21,6 +22,8 @@ const mapStateToProps = (state, { params: { accountId }, withReplies = false }) const path = withReplies ? `${accountId}:with_replies` : accountId; return { + remote: !!state.getIn(['accounts', accountId, 'acct']) !== state.getIn(['accounts', accountId, 'username']), + remoteUrl: state.getIn(['accounts', accountId, 'url']), isAccount: !!state.getIn(['accounts', accountId]), statusIds: state.getIn(['timelines', `account:${path}`, 'items'], emptyList), featuredStatusIds: withReplies ? ImmutableList() : state.getIn(['timelines', `account:${accountId}:pinned`, 'items'], emptyList), @@ -30,6 +33,14 @@ const mapStateToProps = (state, { params: { accountId }, withReplies = false }) }; }; +const RemoteHint = ({ url }) => ( + <TimelineHint url={url} resource={<FormattedMessage id='timeline_hint.resources.statuses' defaultMessage='Older toots' />} /> +); + +RemoteHint.propTypes = { + url: PropTypes.string.isRequired, +}; + export default @connect(mapStateToProps) class AccountTimeline extends ImmutablePureComponent { @@ -44,6 +55,8 @@ class AccountTimeline extends ImmutablePureComponent { withReplies: PropTypes.bool, blockedBy: PropTypes.bool, isAccount: PropTypes.bool, + remote: PropTypes.bool, + remoteUrl: PropTypes.string, multiColumn: PropTypes.bool, }; @@ -78,7 +91,7 @@ class AccountTimeline extends ImmutablePureComponent { } render () { - const { shouldUpdateScroll, statusIds, featuredStatusIds, isLoading, hasMore, blockedBy, isAccount, multiColumn } = this.props; + const { shouldUpdateScroll, statusIds, featuredStatusIds, isLoading, hasMore, blockedBy, isAccount, multiColumn, remote, remoteUrl } = this.props; if (!isAccount) { return ( @@ -97,7 +110,17 @@ class AccountTimeline extends ImmutablePureComponent { ); } - const emptyMessage = blockedBy ? <FormattedMessage id='empty_column.account_unavailable' defaultMessage='Profile unavailable' /> : <FormattedMessage id='empty_column.account_timeline' defaultMessage='No toots here!' />; + let emptyMessage; + + if (blockedBy) { + emptyMessage = <FormattedMessage id='empty_column.account_unavailable' defaultMessage='Profile unavailable' />; + } else if (remote && statusIds.isEmpty()) { + emptyMessage = <RemoteHint url={remoteUrl} />; + } else { + emptyMessage = <FormattedMessage id='empty_column.account_timeline' defaultMessage='No toots here!' />; + } + + const remoteMessage = remote ? <RemoteHint url={remoteUrl} /> : null; return ( <Column> @@ -106,6 +129,7 @@ class AccountTimeline extends ImmutablePureComponent { <StatusList prepend={<HeaderContainer accountId={this.props.params.accountId} />} alwaysPrepend + append={remoteMessage} scrollKey='account_timeline' statusIds={blockedBy ? emptyList : statusIds} featuredStatusIds={featuredStatusIds} diff --git a/app/javascript/mastodon/features/followers/index.js b/app/javascript/mastodon/features/followers/index.js index 302ccffdde..4391611188 100644 --- a/app/javascript/mastodon/features/followers/index.js +++ b/app/javascript/mastodon/features/followers/index.js @@ -17,8 +17,11 @@ import HeaderContainer from '../account_timeline/containers/header_container'; import ColumnBackButton from '../../components/column_back_button'; import ScrollableList from '../../components/scrollable_list'; import MissingIndicator from 'mastodon/components/missing_indicator'; +import TimelineHint from 'mastodon/components/timeline_hint'; const mapStateToProps = (state, props) => ({ + remote: !!state.getIn(['accounts', props.params.accountId, 'acct']) !== state.getIn(['accounts', props.params.accountId, 'username']), + remoteUrl: state.getIn(['accounts', props.params.accountId, 'url']), isAccount: !!state.getIn(['accounts', props.params.accountId]), accountIds: state.getIn(['user_lists', 'followers', props.params.accountId, 'items']), hasMore: !!state.getIn(['user_lists', 'followers', props.params.accountId, 'next']), @@ -26,6 +29,14 @@ const mapStateToProps = (state, props) => ({ blockedBy: state.getIn(['relationships', props.params.accountId, 'blocked_by'], false), }); +const RemoteHint = ({ url }) => ( + <TimelineHint url={url} resource={<FormattedMessage id='timeline_hint.resources.followers' defaultMessage='Followers' />} /> +); + +RemoteHint.propTypes = { + url: PropTypes.string.isRequired, +}; + export default @connect(mapStateToProps) class Followers extends ImmutablePureComponent { @@ -38,6 +49,8 @@ class Followers extends ImmutablePureComponent { isLoading: PropTypes.bool, blockedBy: PropTypes.bool, isAccount: PropTypes.bool, + remote: PropTypes.bool, + remoteUrl: PropTypes.string, multiColumn: PropTypes.bool, }; @@ -60,7 +73,7 @@ class Followers extends ImmutablePureComponent { }, 300, { leading: true }); render () { - const { shouldUpdateScroll, accountIds, hasMore, blockedBy, isAccount, multiColumn, isLoading } = this.props; + const { shouldUpdateScroll, accountIds, hasMore, blockedBy, isAccount, multiColumn, isLoading, remote, remoteUrl } = this.props; if (!isAccount) { return ( @@ -78,7 +91,17 @@ class Followers extends ImmutablePureComponent { ); } - const emptyMessage = blockedBy ? <FormattedMessage id='empty_column.account_unavailable' defaultMessage='Profile unavailable' /> : <FormattedMessage id='account.followers.empty' defaultMessage='No one follows this user yet.' />; + let emptyMessage; + + if (blockedBy) { + emptyMessage = <FormattedMessage id='empty_column.account_unavailable' defaultMessage='Profile unavailable' />; + } else if (remote && accountIds.isEmpty()) { + emptyMessage = <RemoteHint url={remoteUrl} />; + } else { + emptyMessage = <FormattedMessage id='account.followers.empty' defaultMessage='No one follows this user yet.' />; + } + + const remoteMessage = remote ? <RemoteHint url={remoteUrl} /> : null; return ( <Column> @@ -92,6 +115,7 @@ class Followers extends ImmutablePureComponent { shouldUpdateScroll={shouldUpdateScroll} prepend={<HeaderContainer accountId={this.props.params.accountId} hideTabs />} alwaysPrepend + append={remoteMessage} emptyMessage={emptyMessage} bindToDocument={!multiColumn} > diff --git a/app/javascript/mastodon/features/following/index.js b/app/javascript/mastodon/features/following/index.js index 06311bbdc9..2d2ed7be4f 100644 --- a/app/javascript/mastodon/features/following/index.js +++ b/app/javascript/mastodon/features/following/index.js @@ -17,8 +17,11 @@ import HeaderContainer from '../account_timeline/containers/header_container'; import ColumnBackButton from '../../components/column_back_button'; import ScrollableList from '../../components/scrollable_list'; import MissingIndicator from 'mastodon/components/missing_indicator'; +import TimelineHint from 'mastodon/components/timeline_hint'; const mapStateToProps = (state, props) => ({ + remote: !!state.getIn(['accounts', props.params.accountId, 'acct']) !== state.getIn(['accounts', props.params.accountId, 'username']), + remoteUrl: state.getIn(['accounts', props.params.accountId, 'url']), isAccount: !!state.getIn(['accounts', props.params.accountId]), accountIds: state.getIn(['user_lists', 'following', props.params.accountId, 'items']), hasMore: !!state.getIn(['user_lists', 'following', props.params.accountId, 'next']), @@ -26,6 +29,14 @@ const mapStateToProps = (state, props) => ({ blockedBy: state.getIn(['relationships', props.params.accountId, 'blocked_by'], false), }); +const RemoteHint = ({ url }) => ( + <TimelineHint url={url} resource={<FormattedMessage id='timeline_hint.resources.follows' defaultMessage='Follows' />} /> +); + +RemoteHint.propTypes = { + url: PropTypes.string.isRequired, +}; + export default @connect(mapStateToProps) class Following extends ImmutablePureComponent { @@ -38,6 +49,8 @@ class Following extends ImmutablePureComponent { isLoading: PropTypes.bool, blockedBy: PropTypes.bool, isAccount: PropTypes.bool, + remote: PropTypes.bool, + remoteUrl: PropTypes.string, multiColumn: PropTypes.bool, }; @@ -60,7 +73,7 @@ class Following extends ImmutablePureComponent { }, 300, { leading: true }); render () { - const { shouldUpdateScroll, accountIds, hasMore, blockedBy, isAccount, multiColumn, isLoading } = this.props; + const { shouldUpdateScroll, accountIds, hasMore, blockedBy, isAccount, multiColumn, isLoading, remote, remoteUrl } = this.props; if (!isAccount) { return ( @@ -78,7 +91,17 @@ class Following extends ImmutablePureComponent { ); } - const emptyMessage = blockedBy ? <FormattedMessage id='empty_column.account_unavailable' defaultMessage='Profile unavailable' /> : <FormattedMessage id='account.follows.empty' defaultMessage="This user doesn't follow anyone yet." />; + let emptyMessage; + + if (blockedBy) { + emptyMessage = <FormattedMessage id='empty_column.account_unavailable' defaultMessage='Profile unavailable' />; + } else if (remote && accountIds.isEmpty()) { + emptyMessage = <RemoteHint url={remoteUrl} />; + } else { + emptyMessage = <FormattedMessage id='account.follows.empty' defaultMessage="This user doesn't follow anyone yet." />; + } + + const remoteMessage = remote ? <RemoteHint url={remoteUrl} /> : null; return ( <Column> @@ -92,6 +115,7 @@ class Following extends ImmutablePureComponent { shouldUpdateScroll={shouldUpdateScroll} prepend={<HeaderContainer accountId={this.props.params.accountId} hideTabs />} alwaysPrepend + append={remoteMessage} emptyMessage={emptyMessage} bindToDocument={!multiColumn} > diff --git a/app/javascript/mastodon/locales/ar.json b/app/javascript/mastodon/locales/ar.json index 70868e3974..e1871b31a1 100644 --- a/app/javascript/mastodon/locales/ar.json +++ b/app/javascript/mastodon/locales/ar.json @@ -5,6 +5,7 @@ "account.block": "Øظر @{name}", "account.block_domain": "إخÙاء كل شيء قادم من اسم النطاق {domain}", "account.blocked": "Ù…Øظور", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "إلغاء طلب المتابَعة", "account.direct": "رسالة خاصة إلى @{name}", "account.domain_blocked": "النطاق مخÙÙŠ", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "للردّ", "keyboard_shortcuts.requests": "Ù„ÙØªØ Ù‚Ø§Ø¦Ù…Ø© طلبات المتابعة", "keyboard_shortcuts.search": "للتركيز على البØØ«", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "Ù„ÙØªØ Ø¹Ù…ÙˆØ¯ \"هيا نبدأ\"", "keyboard_shortcuts.toggle_hidden": "لعرض أو إخÙاء النص Ù…ÙÙ† وراء التØذير", "keyboard_shortcuts.toggle_sensitivity": "لعرض/إخÙاء الوسائط", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# دقيقة} other {# دقائق}} متبقية", "time_remaining.moments": "Ù„Øظات متبقية", "time_remaining.seconds": "{number, plural, one {# ثانية} other {# ثوانÙ}} متبقية", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, zero {} one {شخص واØد} two {شخصين} few {أشخاص} many {أشخاص} other {أشخاص}} تتØدّث", "trends.trending_now": "المتداولة الآن", "ui.beforeunload": "سو٠تÙقد مسودتك إن تركت ماستدون.", diff --git a/app/javascript/mastodon/locales/ast.json b/app/javascript/mastodon/locales/ast.json index 6c53e33dbd..3989978a0a 100644 --- a/app/javascript/mastodon/locales/ast.json +++ b/app/javascript/mastodon/locales/ast.json @@ -5,6 +5,7 @@ "account.block": "Bloquiar a @{name}", "account.block_domain": "Anubrir tolo de {domain}", "account.blocked": "Blocked", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Encaboxar la solicitú de siguimientu", "account.direct": "Unviar un mensaxe direutu a @{name}", "account.domain_blocked": "Dominiu anubrÃu", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "pa responder", "keyboard_shortcuts.requests": "p'abrir la llista de solicitúes de siguimientu", "keyboard_shortcuts.search": "pa enfocar la gueta", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "p'abrir la columna «entamar»", "keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW", "keyboard_shortcuts.toggle_sensitivity": "to show/hide media", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minutu restante} other {# minutos restantes}}", "time_remaining.moments": "Moments remaining", "time_remaining.seconds": "{number, plural, one {# segundu restante} other {# segundos restantes}}", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {persona} other {persones}} falando", "trends.trending_now": "Trending now", "ui.beforeunload": "El borrador va perdese si coles de Mastodon.", diff --git a/app/javascript/mastodon/locales/bg.json b/app/javascript/mastodon/locales/bg.json index b571d8c0e7..e8bf05b13b 100644 --- a/app/javascript/mastodon/locales/bg.json +++ b/app/javascript/mastodon/locales/bg.json @@ -5,6 +5,7 @@ "account.block": "Блокирай", "account.block_domain": "Ñкрий вÑичко от (домейн)", "account.blocked": "Блокирани", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Откажи иÑкането за Ñледване", "account.direct": "Direct Message @{name}", "account.domain_blocked": "Скрит домейн", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "to reply", "keyboard_shortcuts.requests": "to open follow requests list", "keyboard_shortcuts.search": "to focus search", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "to open \"get started\" column", "keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW", "keyboard_shortcuts.toggle_sensitivity": "to show/hide media", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left", "time_remaining.moments": "Moments remaining", "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking", "trends.trending_now": "Trending now", "ui.beforeunload": "Your draft will be lost if you leave Mastodon.", diff --git a/app/javascript/mastodon/locales/bn.json b/app/javascript/mastodon/locales/bn.json index 20a64b7e36..7f27f58f2f 100644 --- a/app/javascript/mastodon/locales/bn.json +++ b/app/javascript/mastodon/locales/bn.json @@ -5,6 +5,7 @@ "account.block": "@{name} কে বà§à¦²à¦• করà§à¦¨", "account.block_domain": "{domain} থেকে সব আড়াল করà§à¦¨", "account.blocked": "অবরà§à¦¦à§à¦§", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "অনà§à¦¸à¦°à¦£ অনà§à¦°à§‹à¦§ বাতিল করà§à¦¨", "account.direct": "@{name} কে সরাসরি বারà§à¦¤à¦¾", "account.domain_blocked": "ডোমেন গোপন করà§à¦¨", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "মতামত দিতে", "keyboard_shortcuts.requests": "অনà§à¦¸à¦°à¦£ অনà§à¦°à§‹à¦§à§‡à¦° তালিকা দেখতে", "keyboard_shortcuts.search": "খোà¦à¦œà¦¾à¦° অংশে ফোকাস করতে", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "\"পà§à¦°à¦¥à¦® শà§à¦°à§à¦°\" কলাম বের করতে", "keyboard_shortcuts.toggle_hidden": "CW লেখা দেখতে বা লà§à¦•à¦¾à¦¤à§‡", "keyboard_shortcuts.toggle_sensitivity": "à¦à¦¿à¦¡à¦¿à¦“/ছবি দেখতে বা বনà§à¦§ করতে", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# মিনিট} other {# মিনিট}} বাকি আছে", "time_remaining.moments": "সময় বাকি আছে", "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} বাকি আছে", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} কথা বলছে", "trends.trending_now": "বরà§à¦¤à¦®à¦¾à¦¨à§‡ জনপà§à¦°à¦¿à§Ÿ", "ui.beforeunload": "যে পরà§à¦¯à¦¨à§à¦¤ à¦à¦Ÿà¦¾ লেখা হয়েছে, মাসà§à¦Ÿà¦¾à¦¡à¦¨ থেকে চলে গেলে à¦à¦Ÿà¦¾ মà§à¦›à§‡ যাবে।", diff --git a/app/javascript/mastodon/locales/br.json b/app/javascript/mastodon/locales/br.json index 5bf8cdb1c6..ae7283573c 100644 --- a/app/javascript/mastodon/locales/br.json +++ b/app/javascript/mastodon/locales/br.json @@ -5,6 +5,7 @@ "account.block": "Berzañ @{name}", "account.block_domain": "Berzañ pep tra eus {domain}", "account.blocked": "Stanket", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Nullañ ar bedadenn heuliañ", "account.direct": "Kas ur gemennadenn da @{name}", "account.domain_blocked": "Domani berzet", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "da respont", "keyboard_shortcuts.requests": "to open follow requests list", "keyboard_shortcuts.search": "to focus search", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "to open \"get started\" column", "keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW", "keyboard_shortcuts.toggle_sensitivity": "to show/hide media", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left", "time_remaining.moments": "Moments remaining", "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking", "trends.trending_now": "Luskad ar mare", "ui.beforeunload": "Your draft will be lost if you leave Mastodon.", diff --git a/app/javascript/mastodon/locales/ca.json b/app/javascript/mastodon/locales/ca.json index 00965f1533..d5e5ce565f 100644 --- a/app/javascript/mastodon/locales/ca.json +++ b/app/javascript/mastodon/locales/ca.json @@ -5,6 +5,7 @@ "account.block": "Bloqueja @{name}", "account.block_domain": "Amaga-ho tot de {domain}", "account.blocked": "Bloquejat", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Anul·la la sol·licitud de seguiment", "account.direct": "Missatge directe @{name}", "account.domain_blocked": "Domini ocult", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "respondre", "keyboard_shortcuts.requests": "per a obrir la llista de sol·licituds de seguiment", "keyboard_shortcuts.search": "per a centrar la cerca", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "per a obrir la columna \"Començar\"", "keyboard_shortcuts.toggle_hidden": "per a mostrar o amagar text sota CW", "keyboard_shortcuts.toggle_sensitivity": "per a mostrar o amagar contingut multimèdia", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minut} other {# minuts}} restants", "time_remaining.moments": "Moments restants", "time_remaining.seconds": "{number, plural, one {# segon} other {# segons}} restants", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {persona} other {persones}} parlant-hi", "trends.trending_now": "Ara en tendència", "ui.beforeunload": "El teu esborrany es perdrà si surts de Mastodon.", diff --git a/app/javascript/mastodon/locales/co.json b/app/javascript/mastodon/locales/co.json index 2e8b8e1a4d..76b4abd507 100644 --- a/app/javascript/mastodon/locales/co.json +++ b/app/javascript/mastodon/locales/co.json @@ -5,6 +5,7 @@ "account.block": "Bluccà @{name}", "account.block_domain": "Piattà u duminiu {domain}", "account.blocked": "Bluccatu", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Annullà a dumanda d'abbunamentu", "account.direct": "Missaghju direttu @{name}", "account.domain_blocked": "Duminiu piattatu", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "risponde", "keyboard_shortcuts.requests": "per apre a lista di dumande d'abbunamentu", "keyboard_shortcuts.search": "fucalizà nant'à l'area di circata", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "per apre a culonna \"per principià \"", "keyboard_shortcuts.toggle_hidden": "vede/piattà u testu daretu à l'avertimentu CW", "keyboard_shortcuts.toggle_sensitivity": "vede/piattà i media", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minuta ferma} other {# minute fermanu}} left", "time_remaining.moments": "Ci fermanu qualchi mumentu", "time_remaining.seconds": "{number, plural, one {# siconda ferma} other {# siconde fermanu}}", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} parlanu", "trends.trending_now": "Tindenze d'avà ", "ui.beforeunload": "A bruttacopia sarà persa s'ellu hè chjosu Mastodon.", diff --git a/app/javascript/mastodon/locales/cs.json b/app/javascript/mastodon/locales/cs.json index 3c51b7f9c8..0b092a9c76 100644 --- a/app/javascript/mastodon/locales/cs.json +++ b/app/javascript/mastodon/locales/cs.json @@ -5,6 +5,7 @@ "account.block": "Zablokovat uživatele @{name}", "account.block_domain": "Skrýt vÅ¡e ze serveru {domain}", "account.blocked": "Blokováno", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "ZruÅ¡it žádost o sledovánÃ", "account.direct": "Poslat uživateli @{name} pÅ™Ãmou zprávu", "account.domain_blocked": "Doména skryta", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "odpovÄ›dÄ›t", "keyboard_shortcuts.requests": "otevÅ™enà seznamu požadavků o sledovánÃ", "keyboard_shortcuts.search": "zaměřenà na hledánÃ", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "otevÅ™enà sloupce „zaÄÃnáme“", "keyboard_shortcuts.toggle_hidden": "zobrazenÃ/skrytà textu za varovánÃm o obsahu", "keyboard_shortcuts.toggle_sensitivity": "zobrazenÃ/skrytà médiÃ", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {Zbývá # minuta} few {Zbývajà # minuty} many {Zbývá # minut} other {Zbývá # minut}}", "time_remaining.moments": "Zbývá nÄ›kolik sekund", "time_remaining.seconds": "{number, plural, one {Zbývá # sekunda} few {Zbývajà # sekundy} many {Zbývá # sekund} other {Zbývá # sekund}}", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {ÄlovÄ›k} few {lidé} many {lidÃ} other {lidÃ}} hovoÅ™Ã", "trends.trending_now": "Aktuálnà trendy", "ui.beforeunload": "Pokud Mastodon opustÃte, váš koncept se ztratÃ.", diff --git a/app/javascript/mastodon/locales/cy.json b/app/javascript/mastodon/locales/cy.json index d8b8b56f49..0dbc91b8d8 100644 --- a/app/javascript/mastodon/locales/cy.json +++ b/app/javascript/mastodon/locales/cy.json @@ -5,6 +5,7 @@ "account.block": "Blocio @{name}", "account.block_domain": "Cuddio popeth rhag {domain}", "account.blocked": "Blociwyd", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Canslo cais dilyn", "account.direct": "Neges breifat @{name}", "account.domain_blocked": "Parth wedi ei guddio", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "i ateb", "keyboard_shortcuts.requests": "i agor rhestr ceisiadau dilyn", "keyboard_shortcuts.search": "i ffocysu chwilio", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "i agor colofn \"dechrau arni\"", "keyboard_shortcuts.toggle_hidden": "i ddangos/cuddio testun tu ôl i CW", "keyboard_shortcuts.toggle_sensitivity": "i ddangos/gyddio cyfryngau", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# funud} other {# o funudau}} ar ôl", "time_remaining.moments": "Munudau ar ôl", "time_remaining.seconds": "{number, plural, one {# eiliad} other {# o eiliadau}} ar ôl", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} yn siarad", "trends.trending_now": "Yn tueddu nawr", "ui.beforeunload": "Mi fyddwch yn colli eich drafft os gadewch Mastodon.", diff --git a/app/javascript/mastodon/locales/da.json b/app/javascript/mastodon/locales/da.json index d93a73dee4..5fb6ea4d73 100644 --- a/app/javascript/mastodon/locales/da.json +++ b/app/javascript/mastodon/locales/da.json @@ -5,6 +5,7 @@ "account.block": "Bloker @{name}", "account.block_domain": "Skjul alt fra {domain}", "account.blocked": "Blokeret", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Annullér følgeranmodning", "account.direct": "Send en direkte besked til @{name}", "account.domain_blocked": "Domænet er blevet skjult", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "for at svare", "keyboard_shortcuts.requests": "for at Ã¥bne listen over følgeranmodninger", "keyboard_shortcuts.search": "for at fokusere søgningen", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "for at Ã¥bne \"kom igen\" kolonnen", "keyboard_shortcuts.toggle_hidden": "for at vise/skjule tekst bag CW", "keyboard_shortcuts.toggle_sensitivity": "for at vise/skjule medier", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minut} other {# minutter}} tilbage", "time_remaining.moments": "FÃ¥ øjeblikke tilbage", "time_remaining.seconds": "{number, plural, one {# sekund} other {# sekunder}} tilbage", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {personer}} snakker", "trends.trending_now": "Hot lige nu", "ui.beforeunload": "Din kladde vil gÃ¥ tabt hvis du forlader Mastodon.", diff --git a/app/javascript/mastodon/locales/de.json b/app/javascript/mastodon/locales/de.json index 35bc3025b9..5220772cdf 100644 --- a/app/javascript/mastodon/locales/de.json +++ b/app/javascript/mastodon/locales/de.json @@ -5,6 +5,7 @@ "account.block": "@{name} blockieren", "account.block_domain": "Alles von {domain} blockieren", "account.blocked": "Blockiert", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Folgeanfrage abbrechen", "account.direct": "Direktnachricht an @{name}", "account.domain_blocked": "Domain versteckt", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "antworten", "keyboard_shortcuts.requests": "Liste der Folge-Anfragen öffnen", "keyboard_shortcuts.search": "Suche fokussieren", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "\"Erste Schritte\"-Spalte öffnen", "keyboard_shortcuts.toggle_hidden": "Text hinter einer Inhaltswarnung verstecken/anzeigen", "keyboard_shortcuts.toggle_sensitivity": "Medien hinter einer Inhaltswarnung verstecken/anzeigen", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# Minute} other {# Minuten}} verbleibend", "time_remaining.moments": "Schließt in Kürze", "time_remaining.seconds": "{number, plural, one {# Sekunde} other {# Sekunden}} verbleibend", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, eine {Person} other {Personen}} reden darüber", "trends.trending_now": "In den Trends", "ui.beforeunload": "Dein Entwurf geht verloren, wenn du Mastodon verlässt.", diff --git a/app/javascript/mastodon/locales/defaultMessages.json b/app/javascript/mastodon/locales/defaultMessages.json index c9ced64491..1c194dae19 100644 --- a/app/javascript/mastodon/locales/defaultMessages.json +++ b/app/javascript/mastodon/locales/defaultMessages.json @@ -507,6 +507,19 @@ ], "path": "app/javascript/mastodon/components/status.json" }, + { + "descriptors": [ + { + "defaultMessage": "{resource} from other servers are not displayed.", + "id": "timeline_hint.remote_resource_not_displayed" + }, + { + "defaultMessage": "Browse more on the original profile", + "id": "account.browse_more_on_origin_server" + } + ], + "path": "app/javascript/mastodon/components/timeline_hint.json" + }, { "descriptors": [ { @@ -619,6 +632,10 @@ }, { "descriptors": [ + { + "defaultMessage": "Older toots", + "id": "timeline_hint.resources.statuses" + }, { "defaultMessage": "Profile unavailable", "id": "empty_column.account_unavailable" @@ -1542,6 +1559,10 @@ }, { "descriptors": [ + { + "defaultMessage": "Followers", + "id": "timeline_hint.resources.followers" + }, { "defaultMessage": "Profile unavailable", "id": "empty_column.account_unavailable" @@ -1555,6 +1576,10 @@ }, { "descriptors": [ + { + "defaultMessage": "Follows", + "id": "timeline_hint.resources.follows" + }, { "defaultMessage": "Profile unavailable", "id": "empty_column.account_unavailable" @@ -1920,6 +1945,10 @@ "defaultMessage": "to start a brand new toot", "id": "keyboard_shortcuts.toot" }, + { + "defaultMessage": "to show/hide CW field", + "id": "keyboard_shortcuts.spoilers" + }, { "defaultMessage": "to navigate back", "id": "keyboard_shortcuts.back" @@ -2427,6 +2456,15 @@ ], "path": "app/javascript/mastodon/features/status/components/action_bar.json" }, + { + "descriptors": [ + { + "defaultMessage": "Sensitive content", + "id": "status.sensitive_warning" + } + ], + "path": "app/javascript/mastodon/features/status/components/card.json" + }, { "descriptors": [ { @@ -2969,4 +3007,4 @@ ], "path": "app/javascript/mastodon/features/video/index.json" } -] +] \ No newline at end of file diff --git a/app/javascript/mastodon/locales/el.json b/app/javascript/mastodon/locales/el.json index 202c91f90f..31d2892075 100644 --- a/app/javascript/mastodon/locales/el.json +++ b/app/javascript/mastodon/locales/el.json @@ -5,6 +5,7 @@ "account.block": "Αποκλεισμός @{name}", "account.block_domain": "ΑπόκÏυψη όλων από {domain}", "account.blocked": "ΑποκλεισμÎνος/η", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "ΑκÏÏωση αιτήματος παÏακολοÏθησης", "account.direct": "Î Ïοσωπικό μήνυμα Ï€Ïος @{name}", "account.domain_blocked": "ΚÏυμμÎνος τομÎας", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "απάντηση", "keyboard_shortcuts.requests": "άνοιγμα λίστας αιτημάτων παÏακολοÏθησης", "keyboard_shortcuts.search": "εστίαση αναζήτησης", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "άνοιγμα κολώνας \"Ξεκινώντας\"", "keyboard_shortcuts.toggle_hidden": "εμφάνιση/απόκÏυψη κειμÎνου πίσω από την Ï€Ïοειδοποίηση", "keyboard_shortcuts.toggle_sensitivity": "εμφάνιση/απόκÏυψη πολυμÎσων", @@ -412,6 +414,10 @@ "time_remaining.minutes": "απομÎνουν {number, plural, one {# λεπτό} other {# λεπτά}}", "time_remaining.moments": "ΑπομÎνουν στιγμÎÏ‚", "time_remaining.seconds": "απομÎνουν {number, plural, one {# δευτεÏόλεπτο} other {# δευτεÏόλεπτα}}", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {άτομο μιλάει} other {άτομα μιλάνε}}", "trends.trending_now": "Δημοφιλή Ï„ÏŽÏα", "ui.beforeunload": "Το Ï€ÏοσχÎδιό σου θα χαθεί αν φÏγεις από το Mastodon.", diff --git a/app/javascript/mastodon/locales/en.json b/app/javascript/mastodon/locales/en.json index 4a3526200c..248219f093 100644 --- a/app/javascript/mastodon/locales/en.json +++ b/app/javascript/mastodon/locales/en.json @@ -5,6 +5,7 @@ "account.block": "Block @{name}", "account.block_domain": "Block domain {domain}", "account.blocked": "Blocked", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Cancel follow request", "account.direct": "Direct message @{name}", "account.domain_blocked": "Domain blocked", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "to reply", "keyboard_shortcuts.requests": "to open follow requests list", "keyboard_shortcuts.search": "to focus search", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "to open \"get started\" column", "keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW", "keyboard_shortcuts.toggle_sensitivity": "to show/hide media", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left", "time_remaining.moments": "Moments remaining", "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking", "trends.trending_now": "Trending now", "ui.beforeunload": "Your draft will be lost if you leave Mastodon.", diff --git a/app/javascript/mastodon/locales/eo.json b/app/javascript/mastodon/locales/eo.json index e476538be2..fff7508ae6 100644 --- a/app/javascript/mastodon/locales/eo.json +++ b/app/javascript/mastodon/locales/eo.json @@ -5,6 +5,7 @@ "account.block": "Bloki @{name}", "account.block_domain": "KaÅi ĉion de {domain}", "account.blocked": "Blokita", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Nuligi peton de sekvado", "account.direct": "Rekte mesaÄi @{name}", "account.domain_blocked": "Domajno kaÅita", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "respondi", "keyboard_shortcuts.requests": "malfermi la liston de petoj de sekvado", "keyboard_shortcuts.search": "enfokusigi la serĉilon", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "malfermi la kolumnon «por komenci»", "keyboard_shortcuts.toggle_hidden": "montri/kaÅi tekston malantaÅ enhava averto", "keyboard_shortcuts.toggle_sensitivity": "montri/kaÅi aÅdovidaĵojn", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minuto} other {# minutoj}} restas", "time_remaining.moments": "Momenteto restas", "time_remaining.seconds": "{number, plural, one {# sekundo} other {# sekundoj}} restas", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {persono} other {personoj}} parolas", "trends.trending_now": "Nunaj furoraĵoj", "ui.beforeunload": "Via malneto perdiÄos se vi eliras de Mastodon.", diff --git a/app/javascript/mastodon/locales/es-AR.json b/app/javascript/mastodon/locales/es-AR.json index 15ef9afa98..a5ccea076a 100644 --- a/app/javascript/mastodon/locales/es-AR.json +++ b/app/javascript/mastodon/locales/es-AR.json @@ -5,6 +5,7 @@ "account.block": "Bloquear a @{name}", "account.block_domain": "Ocultar todo de {domain}", "account.blocked": "Bloqueado", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Cancelar la solicitud de seguimiento", "account.direct": "Mensaje directo a @{name}", "account.domain_blocked": "Dominio oculto", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "para responder", "keyboard_shortcuts.requests": "para abrir la lista de solicitudes de seguimiento", "keyboard_shortcuts.search": "para enfocar la búsqueda", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "para abrir la columna \"Introducción\"", "keyboard_shortcuts.toggle_hidden": "para mostrar/ocultar el texto detrás de la advertencia de contenido", "keyboard_shortcuts.toggle_sensitivity": "para mostrar/ocultar los medios", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural,one {queda # minuto} other {quedan # minutos}}", "time_remaining.moments": "Momentos restantes", "time_remaining.seconds": "{number, plural,one {queda # segundo} other {quedan # segundos}}", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {persona} other {personas}} hablando", "trends.trending_now": "Tendencia ahora", "ui.beforeunload": "Tu borrador se perderá si abandonás Mastodon.", diff --git a/app/javascript/mastodon/locales/es.json b/app/javascript/mastodon/locales/es.json index e8767cd353..a3a7a110d9 100644 --- a/app/javascript/mastodon/locales/es.json +++ b/app/javascript/mastodon/locales/es.json @@ -5,6 +5,7 @@ "account.block": "Bloquear a @{name}", "account.block_domain": "Ocultar todo de {domain}", "account.blocked": "Bloqueado", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Cancelar la solicitud de seguimiento", "account.direct": "Mensaje directo a @{name}", "account.domain_blocked": "Dominio oculto", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "para responder", "keyboard_shortcuts.requests": "abrir la lista de peticiones de seguidores", "keyboard_shortcuts.search": "para poner el foco en la búsqueda", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "abrir la columna \"comenzar\"", "keyboard_shortcuts.toggle_hidden": "mostrar/ocultar texto tras aviso de contenido (CW)", "keyboard_shortcuts.toggle_sensitivity": "mostrar/ocultar medios", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minuto restante} other {# minutos restantes}}", "time_remaining.moments": "Momentos restantes", "time_remaining.seconds": "{number, plural, one {# segundo restante} other {# segundos restantes}}", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {persona} other {personas}} hablando", "trends.trending_now": "Tendencia ahora", "ui.beforeunload": "Tu borrador se perderá si sales de Mastodon.", diff --git a/app/javascript/mastodon/locales/et.json b/app/javascript/mastodon/locales/et.json index be3ee148bf..bedba181df 100644 --- a/app/javascript/mastodon/locales/et.json +++ b/app/javascript/mastodon/locales/et.json @@ -5,6 +5,7 @@ "account.block": "Blokeeri @{name}", "account.block_domain": "Peida kõik domeenist {domain}", "account.blocked": "Blokeeritud", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Tühista jälgimistaotlus", "account.direct": "Otsesõnum @{name}", "account.domain_blocked": "Domeen peidetud", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "vastamiseks", "keyboard_shortcuts.requests": "avamaks jälgimistaotluste nimistut", "keyboard_shortcuts.search": "otsingu fokuseerimiseks", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "avamaks \"Alusta\" tulpa", "keyboard_shortcuts.toggle_hidden": "näitamaks/peitmaks teksti CW taga", "keyboard_shortcuts.toggle_sensitivity": "et peita/näidata meediat", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minut} other {# minutit}} left", "time_remaining.moments": "Hetked jäänud", "time_remaining.seconds": "{number, plural, one {# sekund} other {# sekundit}} left", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {inimene} other {inimesed}} talking", "trends.trending_now": "Praegu populaarne", "ui.beforeunload": "Teie mustand läheb kaotsi, kui lahkute Mastodonist.", diff --git a/app/javascript/mastodon/locales/eu.json b/app/javascript/mastodon/locales/eu.json index 7f777eeaf9..f9bd3e090b 100644 --- a/app/javascript/mastodon/locales/eu.json +++ b/app/javascript/mastodon/locales/eu.json @@ -5,6 +5,7 @@ "account.block": "Blokeatu @{name}", "account.block_domain": "Ezkutatu {domain} domeinuko guztia", "account.blocked": "Blokeatuta", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Ezeztatu jarraitzeko eskaria", "account.direct": "Mezu zuzena @{name}(r)i", "account.domain_blocked": "Ezkutatutako domeinua", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "erantzutea", "keyboard_shortcuts.requests": "jarraitzeko eskarien zerrenda irekitzeko", "keyboard_shortcuts.search": "bilaketan fokua jartzea", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "\"Menua\" zutabea irekitzeko", "keyboard_shortcuts.toggle_hidden": "testua erakustea/ezkutatzea abisu baten atzean", "keyboard_shortcuts.toggle_sensitivity": "multimedia erakutsi/ezkutatzeko", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {minutu #} other {# minutu}} amaitzeko", "time_remaining.moments": "Amaitzekotan", "time_remaining.seconds": "{number, plural, one {segundo #} other {# segundo}} amaitzeko", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {pertsona} other {pertsona}} hitz egiten", "trends.trending_now": "Joera orain", "ui.beforeunload": "Zure zirriborroa galduko da Mastodon uzten baduzu.", diff --git a/app/javascript/mastodon/locales/fa.json b/app/javascript/mastodon/locales/fa.json index 7eca45e42d..714e8a30d2 100644 --- a/app/javascript/mastodon/locales/fa.json +++ b/app/javascript/mastodon/locales/fa.json @@ -5,6 +5,7 @@ "account.block": "مسدودسازی @{name}", "account.block_domain": "نهÙتن همه چیز از {domain}", "account.blocked": "مسدود", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "لغو درخواست پیگیری", "account.direct": "پیام خصوصی به @{name}", "account.domain_blocked": "دامنهٔ نهÙته", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "برای پاسخ", "keyboard_shortcuts.requests": "برای گشودن Ùهرست درخواست‌های پیگیری", "keyboard_shortcuts.search": "برای تمرکز روی جستجو", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "برای گشودن ستون «آغاز کنید»", "keyboard_shortcuts.toggle_hidden": "برای نمایش/نهÙتن نوشتهٔ پشت هشدار Ù…Øتوا", "keyboard_shortcuts.toggle_sensitivity": "برای نمایش/نهÙتن رسانه", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# دقیقه} other {# دقیقه}} باقی مانده", "time_remaining.moments": "زمان باقی‌مانده", "time_remaining.seconds": "{number, plural, one {# ثانیه} other {# ثانیه}} باقی مانده", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {Ù†Ùر نوشته است} other {Ù†Ùر نوشته‌اند}}", "trends.trending_now": "پرطرÙدار", "ui.beforeunload": "اگر از ماستودون خارج شوید پیش‌نویس شما از دست خواهد رÙت.", diff --git a/app/javascript/mastodon/locales/fi.json b/app/javascript/mastodon/locales/fi.json index 3b7b4e9099..3ff7a3cb14 100644 --- a/app/javascript/mastodon/locales/fi.json +++ b/app/javascript/mastodon/locales/fi.json @@ -5,6 +5,7 @@ "account.block": "Estä @{name}", "account.block_domain": "Piilota kaikki sisältö verkkotunnuksesta {domain}", "account.blocked": "Estetty", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Peruuta seurauspyyntö", "account.direct": "Viesti käyttäjälle @{name}", "account.domain_blocked": "Verkko-osoite piilotettu", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "vastaa", "keyboard_shortcuts.requests": "avaa lista seurauspyynnöistä", "keyboard_shortcuts.search": "siirry hakukenttään", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "avaa \"Aloitus\" -sarake", "keyboard_shortcuts.toggle_hidden": "näytä/piilota sisältövaroituksella merkitty teksti", "keyboard_shortcuts.toggle_sensitivity": "näytä/piilota media", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minuutti} other {# minuuttia}} jäljellä", "time_remaining.moments": "Hetki jäljellä", "time_remaining.seconds": "{number, plural, one {# sekunti} other {# sekuntia}} jäljellä", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {henkilö} other {henkilöä}} keskustelee", "trends.trending_now": "Suosittua nyt", "ui.beforeunload": "Luonnos häviää, jos poistut Mastodonista.", diff --git a/app/javascript/mastodon/locales/fr.json b/app/javascript/mastodon/locales/fr.json index 5e03386f67..fe98a8e97c 100644 --- a/app/javascript/mastodon/locales/fr.json +++ b/app/javascript/mastodon/locales/fr.json @@ -5,6 +5,7 @@ "account.block": "Bloquer @{name}", "account.block_domain": "Bloquer le domaine {domain}", "account.blocked": "Bloqué·e", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Annuler la demande de suivi", "account.direct": "Envoyer un message direct à @{name}", "account.domain_blocked": "Domaine bloqué", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "répondre", "keyboard_shortcuts.requests": "ouvrir la liste de demandes d’abonnement", "keyboard_shortcuts.search": "cibler la zone de recherche", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "ouvrir la colonne « Pour commencer »", "keyboard_shortcuts.toggle_hidden": "déplier/replier le texte derrière un CW", "keyboard_shortcuts.toggle_sensitivity": "afficher/cacher les médias", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} restantes", "time_remaining.moments": "Encore quelques instants", "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} restantes", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {personne discute} other {personnes discutent}}", "trends.trending_now": "Tendance en ce moment", "ui.beforeunload": "Votre brouillon sera perdu si vous quittez Mastodon.", diff --git a/app/javascript/mastodon/locales/ga.json b/app/javascript/mastodon/locales/ga.json index 81a1fbae0f..19054f7168 100644 --- a/app/javascript/mastodon/locales/ga.json +++ b/app/javascript/mastodon/locales/ga.json @@ -5,6 +5,7 @@ "account.block": "Block @{name}", "account.block_domain": "Hide everything from {domain}", "account.blocked": "Blocked", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Cancel follow request", "account.direct": "Direct message @{name}", "account.domain_blocked": "Domain hidden", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "to reply", "keyboard_shortcuts.requests": "to open follow requests list", "keyboard_shortcuts.search": "to focus search", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "to open \"get started\" column", "keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW", "keyboard_shortcuts.toggle_sensitivity": "to show/hide media", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left", "time_remaining.moments": "Moments remaining", "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking", "trends.trending_now": "Trending now", "ui.beforeunload": "Your draft will be lost if you leave Mastodon.", diff --git a/app/javascript/mastodon/locales/gl.json b/app/javascript/mastodon/locales/gl.json index 73a3b744eb..c3140182c8 100644 --- a/app/javascript/mastodon/locales/gl.json +++ b/app/javascript/mastodon/locales/gl.json @@ -5,6 +5,7 @@ "account.block": "Bloquear @{name}", "account.block_domain": "Agochar todo de {domain}", "account.blocked": "Bloqueada", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Desbotar solicitude de seguimento", "account.direct": "Mensaxe directa @{name}", "account.domain_blocked": "Dominio agochado", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "para responder", "keyboard_shortcuts.requests": "para abrir a listaxe das peticións de seguimento", "keyboard_shortcuts.search": "para destacar a procura", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "para abrir a columna dos \"primeiros pasos\"", "keyboard_shortcuts.toggle_hidden": "para amosar/agochar texto detrás do aviso de contido (AC)", "keyboard_shortcuts.toggle_sensitivity": "para amosar/agochar contido multimedia", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minuto} other {# minutos}} restantes", "time_remaining.moments": "Momentos restantes", "time_remaining.seconds": "{number, plural, one {# segundo} other {# segundos}} restantes", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {persoa} other {persoas}} falando", "trends.trending_now": "Tendencias actuais", "ui.beforeunload": "O borrador perderase se saes de Mastodon.", diff --git a/app/javascript/mastodon/locales/he.json b/app/javascript/mastodon/locales/he.json index 02fddcc72e..4b65cd967e 100644 --- a/app/javascript/mastodon/locales/he.json +++ b/app/javascript/mastodon/locales/he.json @@ -5,6 +5,7 @@ "account.block": "חסימת @{name}", "account.block_domain": "להסתיר הכל מהקהילה {domain}", "account.blocked": "חסו×", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "בטל בקשת מעקב", "account.direct": "Direct Message @{name}", "account.domain_blocked": "הדומיין חסוי", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "×œ×¢× ×•×ª", "keyboard_shortcuts.requests": "to open follow requests list", "keyboard_shortcuts.search": "להתמקד בחלון החיפוש", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "to open \"get started\" column", "keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW", "keyboard_shortcuts.toggle_sensitivity": "to show/hide media", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left", "time_remaining.moments": "Moments remaining", "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking", "trends.trending_now": "Trending now", "ui.beforeunload": "×”×˜×™×•×˜× ×ª×בד ×× ×ª×¢×–×‘×• ×ת מסטודון.", diff --git a/app/javascript/mastodon/locales/hi.json b/app/javascript/mastodon/locales/hi.json index 438c846108..e26b607bb6 100644 --- a/app/javascript/mastodon/locales/hi.json +++ b/app/javascript/mastodon/locales/hi.json @@ -5,6 +5,7 @@ "account.block": "@{name} को बà¥à¤²à¥‰à¤• करें", "account.block_domain": "{domain} के सारी चीज़े छà¥à¤ªà¤¾à¤à¤‚", "account.blocked": "बà¥à¤²à¥‰à¤•", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "फ़ॉलो रिकà¥à¤µà¥‡à¤¸à¥à¤Ÿ रदà¥à¤¦ करें", "account.direct": "पà¥à¤°à¤¤à¥à¤¯à¤•à¥à¤· संदेश @{name}", "account.domain_blocked": "छिपा हà¥à¤† डोमेन", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "जवाब के लिà¤", "keyboard_shortcuts.requests": "फॉलो रिकà¥à¤µà¥‡à¤¸à¥à¤Ÿ लिसà¥à¤Ÿ खोलने के लिà¤", "keyboard_shortcuts.search": "गहरी खोज के लिà¤", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "to open \"get started\" column", "keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW", "keyboard_shortcuts.toggle_sensitivity": "to show/hide media", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left", "time_remaining.moments": "Moments remaining", "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking", "trends.trending_now": "Trending now", "ui.beforeunload": "Your draft will be lost if you leave Mastodon.", diff --git a/app/javascript/mastodon/locales/hr.json b/app/javascript/mastodon/locales/hr.json index 10daf96f35..f12450d7b4 100644 --- a/app/javascript/mastodon/locales/hr.json +++ b/app/javascript/mastodon/locales/hr.json @@ -5,6 +5,7 @@ "account.block": "Blokiraj @{name}", "account.block_domain": "Sakrij sve sa {domain}", "account.blocked": "Blocked", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Cancel follow request", "account.direct": "Direct Message @{name}", "account.domain_blocked": "Domain hidden", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "to reply", "keyboard_shortcuts.requests": "to open follow requests list", "keyboard_shortcuts.search": "to focus search", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "to open \"get started\" column", "keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW", "keyboard_shortcuts.toggle_sensitivity": "to show/hide media", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left", "time_remaining.moments": "Moments remaining", "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking", "trends.trending_now": "Trending now", "ui.beforeunload": "Your draft will be lost if you leave Mastodon.", diff --git a/app/javascript/mastodon/locales/hu.json b/app/javascript/mastodon/locales/hu.json index 241f074a6a..eb824f4ae3 100644 --- a/app/javascript/mastodon/locales/hu.json +++ b/app/javascript/mastodon/locales/hu.json @@ -5,6 +5,7 @@ "account.block": "@{name} letiltása", "account.block_domain": "Minden elrejtése innen: {domain}", "account.blocked": "Letiltva", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Követési kérelem törlése", "account.direct": "Közvetlen üzenet @{name} számára", "account.domain_blocked": "Rejtett domain", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "válasz", "keyboard_shortcuts.requests": "követési kérések listájának megnyitása", "keyboard_shortcuts.search": "fókuszálás a keresÅ‘re", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "\"ElsÅ‘ lépések\" megnyitása", "keyboard_shortcuts.toggle_hidden": "tartalmi figyelmeztetéssel ellátott szöveg mutatása/elrejtése", "keyboard_shortcuts.toggle_sensitivity": "média mutatása/elrejtése", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# perc} other {# perc}} van hátra", "time_remaining.moments": "Pillanatok vannak hátra", "time_remaining.seconds": "{number, plural, one {# másodperc} other {# másodperc}} van hátra", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {résztvevÅ‘} other {résztvevÅ‘}} beszélget", "trends.trending_now": "Most felkapott", "ui.beforeunload": "A piszkozatod el fog veszni, ha elhagyod a Mastodont.", diff --git a/app/javascript/mastodon/locales/hy.json b/app/javascript/mastodon/locales/hy.json index 1cdccd6013..5520f70410 100644 --- a/app/javascript/mastodon/locales/hy.json +++ b/app/javascript/mastodon/locales/hy.json @@ -5,6 +5,7 @@ "account.block": "Ô±Ö€Õ£Õ¥Õ¬Õ¡ÖƒÕ¡Õ¯Õ¥Õ¬ @{name}ÖŠÕ«Õ¶", "account.block_domain": "Ô¹Õ¡Ö„ÖÕ¶Õ¥Õ¬ Õ¡Õ´Õ§Õ¶Õ¨ Õ°Õ¥Õ¿Õ¥Ö‚Õ¥Õ¡Õ¬ Õ¿Õ«Ö€Õ¸ÕµÕ©Õ«ÖÕ {domain}", "account.blocked": "Ô±Ö€Õ£Õ¥Õ¬Õ¡ÖƒÕ¡Õ¯Õ¸Ö‚Õ¡Õ® Õ§", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Õ¹Õ¥Õ²Õ¡Ö€Õ¯Õ¥Õ¬ Õ°Õ¥Õ¿Õ¥Ö‚Õ¥Õ¬Õ¸Ö‚ Õ°Õ¡ÕµÖÕ¨", "account.direct": "Õ†Õ¡Õ´Õ¡Õ¯ Õ£Ö€Õ¥Õ¬ @{name} -Õ«Õ¶", "account.domain_blocked": "ÕÕ«Ö€Õ¸ÕµÕ©Õ¨ Õ¡Ö€Õ£Õ¥Õ¬Õ¡ÖƒÕ¡Õ¯Õ¸Ö‚Õ¡Õ® Õ§", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "ÕºÕ¡Õ¿Õ¡Õ½ÕÕ¡Õ¶Õ¥Õ¬Õ¸Ö‚ Õ°Õ¡Õ´Õ¡Ö€", "keyboard_shortcuts.requests": "Õ°Õ¥Õ¿Õ¥Ö‚Õ¥Õ¬Õ¸Ö‚ Õ°Õ¡ÕµÖÕ¥Ö€Õ« ÖÕ¡Õ¶Õ¯Õ¨ Õ¤Õ«Õ¿Õ¥Õ¬Õ¸Ö‚ Õ°Õ¡Õ´Õ¡Ö€", "keyboard_shortcuts.search": "Õ¸Ö€Õ¸Õ¶Õ´Õ¡Õ¶ Õ¤Õ¡Õ·Õ¿Õ«Õ¶ Õ½Õ¥Ö‚Õ¥Õ¼Õ¾Õ¥Õ¬Õ¸Ö‚ Õ°Õ¡Õ´Õ¡Ö€", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "«սկսել» Õ½Õ«Ö‚Õ¶Õ¡Õ¯Õ¨ Õ¢Õ¡ÖÕ¥Õ¬Õ¸Ö‚ Õ°Õ¡Õ´Õ¡Ö€", "keyboard_shortcuts.toggle_hidden": "CWÖŠÕ« Õ¥Õ¿Õ¥Ö‚Õ« Õ¿Õ¥Ö„Õ½Õ¿Õ¨ ÖÕ¸Ö‚ÖÕ¡Õ¤Ö€Õ¥Õ¬ÖŠÕ©Õ¡Ö„ÖÕ¶Õ¥Õ¬Õ¸Ö‚ Õ°Õ¡Õ´Õ¡Ö€", "keyboard_shortcuts.toggle_sensitivity": "Õ´Õ¥Õ¤Õ«Õ¡Õ¶ ÖÕ¸Ö‚ÖÕ¡Õ¤Ö€Õ¥Õ¬ÖŠÕ©Õ¡Ö„ÖÕ¶Õ¥Õ¬Õ¸Ö‚ Õ°Õ¡Õ´Õ¡Ö€", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# Ö€Õ¸ÕºÕ¥} other {# Ö€Õ¸ÕºÕ¥}} Õ¡Õ¶Ö", "time_remaining.moments": "Õ„Õ¶Õ¡ÖÕ¥Õ¬ Õ§ Õ´Õ« Ö„Õ¡Õ¶Õ« Õ¾Õ¡Ö€Õ¯ÕµÕ¡Õ¶", "time_remaining.seconds": "{number, plural, one {# Õ¾Õ¡ÕµÖ€Õ¯ÕµÕ¡Õ¶} other {# Õ¾Õ¡ÕµÖ€Õ¯ÕµÕ¡Õ¶}} Õ¡Õ¶Ö", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {Õ°Õ¸Õ£Õ«} other {Õ°Õ¸Õ£Õ«}} ÕÕ¸Õ½Õ¸Ö‚Õ´ Õ§ Õ½Ö€Õ¡ Õ´Õ¡Õ½Õ«Õ¶", "trends.trending_now": "Ô±ÕµÕªÕ´ Õ¡Ö€Õ¤Õ«Õ¡Õ¯Õ¡Õ¶", "ui.beforeunload": "Õ”Õ¸ Õ½Õ¥Ö‚Õ¡Õ£Õ«Ö€Õ¨ Õ¯Õ¯Õ¸Ö€Õ«, Õ¥Õ©Õ¥ Õ¬Ö„Õ¥Õ½ Õ„Õ¡Õ½Õ¿Õ¸Õ¤Õ¸Õ¶Õ¨Ö‰", diff --git a/app/javascript/mastodon/locales/id.json b/app/javascript/mastodon/locales/id.json index 09f5fdee79..df3775cf9b 100644 --- a/app/javascript/mastodon/locales/id.json +++ b/app/javascript/mastodon/locales/id.json @@ -5,6 +5,7 @@ "account.block": "Blokir @{name}", "account.block_domain": "Sembunyikan segalanya dari {domain}", "account.blocked": "Terblokir", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Batalkan permintaan ikuti", "account.direct": "Direct Message @{name}", "account.domain_blocked": "Domain disembunyikan", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "balas", "keyboard_shortcuts.requests": "buka daftar permintaan ikuti", "keyboard_shortcuts.search": "untuk fokus mencari", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "buka kolom \"memulai\"", "keyboard_shortcuts.toggle_hidden": "tampilkan/sembunyikan teks di belakang CW", "keyboard_shortcuts.toggle_sensitivity": "tampilkan/sembunyikan media", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, other {# menit}} tersisa", "time_remaining.moments": "Momen tersisa", "time_remaining.seconds": "{number, plural, other {# detik}} tersisa", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, other {orang}} berbicara", "trends.trending_now": "Sedang tren sekarang", "ui.beforeunload": "Naskah anda akan hilang jika anda keluar dari Mastodon.", diff --git a/app/javascript/mastodon/locales/io.json b/app/javascript/mastodon/locales/io.json index 696ef694f9..a7bc54e859 100644 --- a/app/javascript/mastodon/locales/io.json +++ b/app/javascript/mastodon/locales/io.json @@ -5,6 +5,7 @@ "account.block": "Blokusar @{name}", "account.block_domain": "Hide everything from {domain}", "account.blocked": "Blocked", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Cancel follow request", "account.direct": "Direct Message @{name}", "account.domain_blocked": "Domain hidden", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "to reply", "keyboard_shortcuts.requests": "to open follow requests list", "keyboard_shortcuts.search": "to focus search", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "to open \"get started\" column", "keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW", "keyboard_shortcuts.toggle_sensitivity": "to show/hide media", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left", "time_remaining.moments": "Moments remaining", "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking", "trends.trending_now": "Trending now", "ui.beforeunload": "Your draft will be lost if you leave Mastodon.", diff --git a/app/javascript/mastodon/locales/is.json b/app/javascript/mastodon/locales/is.json index 5c5c9edadd..ada0a37af8 100644 --- a/app/javascript/mastodon/locales/is.json +++ b/app/javascript/mastodon/locales/is.json @@ -5,6 +5,7 @@ "account.block": "Útiloka @{name}", "account.block_domain": "Fela allt frá {domain}", "account.blocked": "Útilokaður", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Hætta við beiðni um að fylgjast með", "account.direct": "Bein skilaboð til @{name}", "account.domain_blocked": "Lén falið", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "að svara", "keyboard_shortcuts.requests": "að opna lista yfir fylgjendabeiðnir", "keyboard_shortcuts.search": "að setja virkni à leit", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "að opna \"komast à gang\" dálk", "keyboard_shortcuts.toggle_hidden": "að birta/fela texta á bak við aðvörun vegna efnis", "keyboard_shortcuts.toggle_sensitivity": "að birta/fela myndir", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# mÃnúta} other {# mÃnútur}} eftir", "time_remaining.moments": "TÃmi eftir", "time_remaining.seconds": "{number, plural, one {# sekúnda} other {# sekúndur}} eftir", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {aðili} other {aðilar}} að tala", "trends.trending_now": "à umræðunni núna", "ui.beforeunload": "Drögin tapast ef þú ferð út úr Mastodon.", diff --git a/app/javascript/mastodon/locales/it.json b/app/javascript/mastodon/locales/it.json index 5ae34551d1..1fab8f17c3 100644 --- a/app/javascript/mastodon/locales/it.json +++ b/app/javascript/mastodon/locales/it.json @@ -5,6 +5,7 @@ "account.block": "Blocca @{name}", "account.block_domain": "Nascondi tutto da {domain}", "account.blocked": "Bloccato", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Annulla richiesta di seguire", "account.direct": "Invia messaggio privato a @{name}", "account.domain_blocked": "Dominio nascosto", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "per rispondere", "keyboard_shortcuts.requests": "per aprire l'elenco delle richieste di seguirti", "keyboard_shortcuts.search": "per spostare il focus sulla ricerca", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "per aprire la colonna \"Come iniziare\"", "keyboard_shortcuts.toggle_hidden": "per mostrare/nascondere il testo dei CW", "keyboard_shortcuts.toggle_sensitivity": "mostrare/nascondere media", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minuto} other {# minuti}} left", "time_remaining.moments": "Restano pochi istanti", "time_remaining.seconds": "{number, plural, one {# secondo} other {# secondi}} left", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {persona ne sta} other {persone ne stanno}} parlando", "trends.trending_now": "Di tendenza ora", "ui.beforeunload": "La bozza andrà persa se esci da Mastodon.", diff --git a/app/javascript/mastodon/locales/ja.json b/app/javascript/mastodon/locales/ja.json index 026d32834f..5858eada9b 100644 --- a/app/javascript/mastodon/locales/ja.json +++ b/app/javascript/mastodon/locales/ja.json @@ -5,6 +5,7 @@ "account.block": "@{name}ã•ã‚“をブãƒãƒƒã‚¯", "account.block_domain": "{domain}全体をブãƒãƒƒã‚¯", "account.blocked": "ブãƒãƒƒã‚¯æ¸ˆã¿", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "フォãƒãƒ¼ãƒªã‚¯ã‚¨ã‚¹ãƒˆã‚’å–り消ã™", "account.direct": "@{name}ã•ã‚“ã«ãƒ€ã‚¤ãƒ¬ã‚¯ãƒˆãƒ¡ãƒƒã‚»ãƒ¼ã‚¸", "account.domain_blocked": "ドメインブãƒãƒƒã‚¯ä¸", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "返信", "keyboard_shortcuts.requests": "フォãƒãƒ¼ãƒªã‚¯ã‚¨ã‚¹ãƒˆã®ãƒªã‚¹ãƒˆã‚’é–‹ã", "keyboard_shortcuts.search": "検索欄ã«ç§»å‹•", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "\"スタート\" カラムを開ã", "keyboard_shortcuts.toggle_hidden": "CWã§éš ã‚ŒãŸæ–‡ã‚’見る/éš ã™", "keyboard_shortcuts.toggle_sensitivity": "éžè¡¨ç¤ºã®ãƒ¡ãƒ‡ã‚£ã‚¢ã‚’見る/éš ã™", @@ -412,6 +414,10 @@ "time_remaining.minutes": "残り{number}分", "time_remaining.moments": "ã¾ã‚‚ãªã終了", "time_remaining.seconds": "残り{number}秒", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count}人ãŒãƒˆã‚¥ãƒ¼ãƒˆ", "trends.trending_now": "トレンドタグ", "ui.beforeunload": "Mastodonã‹ã‚‰é›¢ã‚Œã‚‹ã¨é€ä¿¡å‰ã®æŠ•ç¨¿ã¯å¤±ã‚ã‚Œã¾ã™ã€‚", diff --git a/app/javascript/mastodon/locales/ka.json b/app/javascript/mastodon/locales/ka.json index 2c487a9b63..d7913dd2a9 100644 --- a/app/javascript/mastodon/locales/ka.json +++ b/app/javascript/mastodon/locales/ka.json @@ -5,6 +5,7 @@ "account.block": "დáƒáƒ‘ლáƒáƒ™áƒ” @{name}", "account.block_domain": "დáƒáƒ˜áƒ›áƒáƒšáƒáƒ¡ ყველáƒáƒ¤áƒ”რი დáƒáƒ›áƒ”ნიდáƒáƒœ {domain}", "account.blocked": "დáƒáƒ˜áƒ‘ლáƒáƒ™áƒ", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Cancel follow request", "account.direct": "პირდáƒáƒžáƒ˜áƒ ი წერილი @{name}-ს", "account.domain_blocked": "დáƒáƒ›áƒ”ნი დáƒáƒ›áƒáƒšáƒ£áƒšáƒ˜áƒ", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "პáƒáƒ¡áƒ£áƒ®áƒ˜áƒ¡áƒ—ვის", "keyboard_shortcuts.requests": "to open follow requests list", "keyboard_shortcuts.search": "ძიებáƒáƒ–ე ფáƒáƒ™áƒ£áƒ¡áƒ˜áƒ ებისთვის", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "to open \"get started\" column", "keyboard_shortcuts.toggle_hidden": "გáƒáƒ¤áƒ თხილების უკáƒáƒœ ტექსტის გáƒáƒ›áƒáƒ¡áƒáƒ©áƒ”ნáƒáƒ“/დáƒáƒ¡áƒáƒ›áƒáƒšáƒ•áƒáƒ“", "keyboard_shortcuts.toggle_sensitivity": "to show/hide media", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left", "time_remaining.moments": "Moments remaining", "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} სáƒáƒ£áƒ‘რáƒáƒ‘ს", "trends.trending_now": "Trending now", "ui.beforeunload": "თქვენი დრáƒáƒ¤áƒ¢áƒ˜ გáƒáƒ£áƒ¥áƒ›áƒ“ებრთუ დáƒáƒ¢áƒáƒ•áƒ”ბთ მáƒáƒ¡áƒ¢áƒáƒ“áƒáƒœáƒ¡.", diff --git a/app/javascript/mastodon/locales/kab.json b/app/javascript/mastodon/locales/kab.json index abf6cbbca9..9237f486b5 100644 --- a/app/javascript/mastodon/locales/kab.json +++ b/app/javascript/mastodon/locales/kab.json @@ -5,6 +5,7 @@ "account.block": "Seḥbes @{name}", "account.block_domain": "Ffer kra i d-yekkan seg {domain}", "account.blocked": "Yettuseḥbes", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Sefsex asuter n uá¸faá¹›", "account.direct": "Izen usrid i @{name}", "account.domain_blocked": "TaÉ£ult yeffren", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "i tririt", "keyboard_shortcuts.requests": "akken ad d-teldiḠumuγ n yisuturen n teá¸feá¹›t", "keyboard_shortcuts.search": "to focus search", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "akken ad d-teldiḠajgu n \"bdu\"", "keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW", "keyboard_shortcuts.toggle_sensitivity": "i teskent/tuffra n yimidyaten", @@ -412,6 +414,10 @@ "time_remaining.minutes": "Mazal {number, plural, one {# n tesdat} other {# n tesdatin}}", "time_remaining.moments": "Moments remaining", "time_remaining.seconds": "Mazal {number, plural, one {# n tasint} other {# n tsinin}} id yugran", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {n umdan} other {n yemdanen}} i yettmeslayen", "trends.trending_now": "Trending now", "ui.beforeunload": "Arewway-ik·im ad iruḥ ma yella tefeÉ£-d deg Maá¹£á¹udun.", diff --git a/app/javascript/mastodon/locales/kk.json b/app/javascript/mastodon/locales/kk.json index f1782424c6..48e6e414d4 100644 --- a/app/javascript/mastodon/locales/kk.json +++ b/app/javascript/mastodon/locales/kk.json @@ -5,6 +5,7 @@ "account.block": "Бұғаттау @{name}", "account.block_domain": "Домендегі барлығын бұғатта {domain}", "account.blocked": "Бұғатталды", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Жазылуға Ñұранымды қайтару", "account.direct": "Жеке хат @{name}", "account.domain_blocked": "Домен жабық", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "жауап жазу", "keyboard_shortcuts.requests": "жазылу Ñұранымдарын қарау", "keyboard_shortcuts.search": "іздеу", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "баÑтапқы бағанға бару", "keyboard_shortcuts.toggle_hidden": "жабық мәтінді CW ашу/жабу", "keyboard_shortcuts.toggle_sensitivity": "көрÑет/жап", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# минут} other {# минут}}", "time_remaining.moments": "Қалған уақыт", "time_remaining.seconds": "{number, plural, one {# Ñекунд} other {# Ñекунд}}", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} жазған екен", "trends.trending_now": "Тренд тақырыптар", "ui.beforeunload": "Mastodon желіÑінен шықÑаңыз, нобайыңыз Ñақталмайды.", diff --git a/app/javascript/mastodon/locales/kn.json b/app/javascript/mastodon/locales/kn.json index d0757efbf9..33fec4a4cd 100644 --- a/app/javascript/mastodon/locales/kn.json +++ b/app/javascript/mastodon/locales/kn.json @@ -5,6 +5,7 @@ "account.block": "Block @{name}", "account.block_domain": "Hide everything from {domain}", "account.blocked": "Blocked", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Cancel follow request", "account.direct": "Direct message @{name}", "account.domain_blocked": "Domain hidden", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "to reply", "keyboard_shortcuts.requests": "to open follow requests list", "keyboard_shortcuts.search": "to focus search", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "to open \"get started\" column", "keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW", "keyboard_shortcuts.toggle_sensitivity": "to show/hide media", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left", "time_remaining.moments": "Moments remaining", "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking", "trends.trending_now": "Trending now", "ui.beforeunload": "Your draft will be lost if you leave Mastodon.", diff --git a/app/javascript/mastodon/locales/ko.json b/app/javascript/mastodon/locales/ko.json index 54a24376c2..c8e470b38b 100644 --- a/app/javascript/mastodon/locales/ko.json +++ b/app/javascript/mastodon/locales/ko.json @@ -5,6 +5,7 @@ "account.block": "@{name}ì„ ì°¨ë‹¨", "account.block_domain": "{domain} ì „ì²´ë¥¼ 숨김", "account.blocked": "차단ë¨", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "팔로우 ìš”ì² ì·¨ì†Œ", "account.direct": "@{name}ì˜ ë‹¤ì´ë ‰íŠ¸ 메시지", "account.domain_blocked": "ë„ë©”ì¸ ìˆ¨ê²¨ì§", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "답장", "keyboard_shortcuts.requests": "팔로우 ìš”ì² ë¦¬ìŠ¤íŠ¸ 열기", "keyboard_shortcuts.search": "ê²€ìƒ‰ì°½ì— í¬ì»¤ìŠ¤", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "\"시작하기\" 컬럼 열기", "keyboard_shortcuts.toggle_hidden": "CWë¡œ ê°€ë ¤ì§„ í…스트를 표시/비표시", "keyboard_shortcuts.toggle_sensitivity": "ì´ë¯¸ì§€ ë³´ì´ê¸°/숨기기", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number} 분 남ìŒ", "time_remaining.moments": "ë‚¨ì€ ì‹œê°„", "time_remaining.seconds": "{number} ì´ˆ 남ìŒ", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} ëª…ì˜ ì‚¬ëžŒë“¤ì´ ë§í•˜ê³ 있습니다", "trends.trending_now": "지금 ìœ í–‰ì¤‘", "ui.beforeunload": "지금 나가면 ì €ìž¥ë˜ì§€ ì•Šì€ í•ëª©ì„ 잃게 ë©ë‹ˆë‹¤.", diff --git a/app/javascript/mastodon/locales/lt.json b/app/javascript/mastodon/locales/lt.json index d0757efbf9..33fec4a4cd 100644 --- a/app/javascript/mastodon/locales/lt.json +++ b/app/javascript/mastodon/locales/lt.json @@ -5,6 +5,7 @@ "account.block": "Block @{name}", "account.block_domain": "Hide everything from {domain}", "account.blocked": "Blocked", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Cancel follow request", "account.direct": "Direct message @{name}", "account.domain_blocked": "Domain hidden", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "to reply", "keyboard_shortcuts.requests": "to open follow requests list", "keyboard_shortcuts.search": "to focus search", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "to open \"get started\" column", "keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW", "keyboard_shortcuts.toggle_sensitivity": "to show/hide media", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left", "time_remaining.moments": "Moments remaining", "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking", "trends.trending_now": "Trending now", "ui.beforeunload": "Your draft will be lost if you leave Mastodon.", diff --git a/app/javascript/mastodon/locales/lv.json b/app/javascript/mastodon/locales/lv.json index 241d7c0806..d4288f96bc 100644 --- a/app/javascript/mastodon/locales/lv.json +++ b/app/javascript/mastodon/locales/lv.json @@ -5,6 +5,7 @@ "account.block": "BloÄ·Ä“t @{name}", "account.block_domain": "SlÄ“pt visu no {domain}", "account.blocked": "BloÄ·Ä“ts", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Cancel follow request", "account.direct": "PrivÄtÄ ziņa @{name}", "account.domain_blocked": "DomÄ“ns ir paslÄ“pts", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "to reply", "keyboard_shortcuts.requests": "to open follow requests list", "keyboard_shortcuts.search": "to focus search", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "to open \"get started\" column", "keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW", "keyboard_shortcuts.toggle_sensitivity": "to show/hide media", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left", "time_remaining.moments": "Moments remaining", "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking", "trends.trending_now": "Trending now", "ui.beforeunload": "Your draft will be lost if you leave Mastodon.", diff --git a/app/javascript/mastodon/locales/mk.json b/app/javascript/mastodon/locales/mk.json index bc5f91264c..61202ec197 100644 --- a/app/javascript/mastodon/locales/mk.json +++ b/app/javascript/mastodon/locales/mk.json @@ -5,6 +5,7 @@ "account.block": "Блокирај @{name}", "account.block_domain": "Сокријај Ñе од {domain}", "account.blocked": "Блокиран", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Одкажи барање за Ñледење", "account.direct": "Директна порана @{name}", "account.domain_blocked": "Скриен домен", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "одговори", "keyboard_shortcuts.requests": "to open follow requests list", "keyboard_shortcuts.search": "to focus search", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "to open \"get started\" column", "keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW", "keyboard_shortcuts.toggle_sensitivity": "to show/hide media", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# минута} other {# минути}} {number, plural, one {оÑтана} other {оÑтанаа}}", "time_remaining.moments": "Уште некои мига", "time_remaining.seconds": "{number, plural, one {# Ñекунда} other {# Ñекунди}} {number, plural, one {оÑтана} other {оÑтанаа}}", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking", "trends.trending_now": "Trending now", "ui.beforeunload": "Your draft will be lost if you leave Mastodon.", diff --git a/app/javascript/mastodon/locales/ml.json b/app/javascript/mastodon/locales/ml.json index 788200c872..7b74c10ee5 100644 --- a/app/javascript/mastodon/locales/ml.json +++ b/app/javascript/mastodon/locales/ml.json @@ -5,6 +5,7 @@ "account.block": "@{name} നെ à´¬àµà´²àµ‹à´•àµà´•àµ ചെയàµà´¯àµà´•", "account.block_domain": "{domain} ൽ നിനàµà´¨àµà´³àµà´³ à´Žà´²àµà´²à´¾à´‚ മറയàµà´•àµà´•", "account.blocked": "തടഞàµà´žàµ", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "പിനàµà´¤àµà´Ÿà´°à´¾à´¨àµà´³àµà´³ അപേകàµà´· നിരസികàµà´•àµà´•", "account.direct": "@{name} നൠനേരിടàµà´Ÿàµ മെസേജൠഅയകàµà´•àµà´•", "account.domain_blocked": "മേഖല മറയàµà´•àµà´•à´ªàµà´ªàµ†à´Ÿàµà´Ÿà´¿à´°à´¿à´•àµà´•àµà´¨àµà´¨àµ", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "to reply", "keyboard_shortcuts.requests": "to open follow requests list", "keyboard_shortcuts.search": "to focus search", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "to open \"get started\" column", "keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW", "keyboard_shortcuts.toggle_sensitivity": "to show/hide media", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left", "time_remaining.moments": "Moments remaining", "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking", "trends.trending_now": "Trending now", "ui.beforeunload": "Your draft will be lost if you leave Mastodon.", diff --git a/app/javascript/mastodon/locales/mr.json b/app/javascript/mastodon/locales/mr.json index f213c29423..46fd5acc5d 100644 --- a/app/javascript/mastodon/locales/mr.json +++ b/app/javascript/mastodon/locales/mr.json @@ -5,6 +5,7 @@ "account.block": "@{name} यांना बà¥à¤²à¥‰à¤• करा", "account.block_domain": "{domain} पासून सरà¥à¤µ लपवा", "account.blocked": "बà¥à¤²à¥‰à¤• केले आहे", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "अनà¥à¤¯à¤¾à¤¯à¥€ होणà¥à¤¯à¤¾à¤šà¥€ विनंती रदà¥à¤¦ करा", "account.direct": "थेट संदेश @{name}", "account.domain_blocked": "Domain hidden", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "to reply", "keyboard_shortcuts.requests": "to open follow requests list", "keyboard_shortcuts.search": "to focus search", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "to open \"get started\" column", "keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW", "keyboard_shortcuts.toggle_sensitivity": "to show/hide media", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left", "time_remaining.moments": "Moments remaining", "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking", "trends.trending_now": "Trending now", "ui.beforeunload": "Your draft will be lost if you leave Mastodon.", diff --git a/app/javascript/mastodon/locales/ms.json b/app/javascript/mastodon/locales/ms.json index a5b4d199a8..9a9fc975ad 100644 --- a/app/javascript/mastodon/locales/ms.json +++ b/app/javascript/mastodon/locales/ms.json @@ -5,6 +5,7 @@ "account.block": "Block @{name}", "account.block_domain": "Hide everything from {domain}", "account.blocked": "Blocked", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Cancel follow request", "account.direct": "Direct message @{name}", "account.domain_blocked": "Domain hidden", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "to reply", "keyboard_shortcuts.requests": "to open follow requests list", "keyboard_shortcuts.search": "to focus search", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "to open \"get started\" column", "keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW", "keyboard_shortcuts.toggle_sensitivity": "to show/hide media", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left", "time_remaining.moments": "Moments remaining", "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking", "trends.trending_now": "Trending now", "ui.beforeunload": "Your draft will be lost if you leave Mastodon.", diff --git a/app/javascript/mastodon/locales/nl.json b/app/javascript/mastodon/locales/nl.json index 6cdd02c02d..ca5be51644 100644 --- a/app/javascript/mastodon/locales/nl.json +++ b/app/javascript/mastodon/locales/nl.json @@ -5,6 +5,7 @@ "account.block": "@{name} blokkeren", "account.block_domain": "Alles van {domain} verbergen", "account.blocked": "Geblokkeerd", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Volgverzoek annuleren", "account.direct": "@{name} een direct bericht sturen", "account.domain_blocked": "Domein verborgen", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "om te reageren", "keyboard_shortcuts.requests": "om jouw volgverzoeken te tonen", "keyboard_shortcuts.search": "om het zoekvak te focussen", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "om de \"Aan de slag\"-kolom te tonen", "keyboard_shortcuts.toggle_hidden": "om tekst achter een waarschuwing (CW) te tonen/verbergen", "keyboard_shortcuts.toggle_sensitivity": "om media te tonen/verbergen", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minuut} other {# minuten}} te gaan", "time_remaining.moments": "Nog enkele ogenblikken resterend", "time_remaining.seconds": "{number, plural, one {# seconde} other {# seconden}} te gaan", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {persoon praat} other {mensen praten}} hierover", "trends.trending_now": "Trends", "ui.beforeunload": "Je concept zal verloren gaan als je Mastodon verlaat.", diff --git a/app/javascript/mastodon/locales/nn.json b/app/javascript/mastodon/locales/nn.json index 0c1fd8bbf0..dee0cd8368 100644 --- a/app/javascript/mastodon/locales/nn.json +++ b/app/javascript/mastodon/locales/nn.json @@ -5,6 +5,7 @@ "account.block": "Blokker @{name}", "account.block_domain": "Skjul alt frÃ¥ {domain}", "account.blocked": "Blokkert", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Fjern fylgjeførespurnad", "account.direct": "Send melding til @{name}", "account.domain_blocked": "Domenet er gøymt", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "for Ã¥ svara", "keyboard_shortcuts.requests": "for Ã¥ opna lista med fylgjeførespurnader", "keyboard_shortcuts.search": "for Ã¥ fokusera søket", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "for Ã¥ opna \"kom i gang\"-feltet", "keyboard_shortcuts.toggle_hidden": "for Ã¥ visa/gøyma tekst bak innhaldsvarsel", "keyboard_shortcuts.toggle_sensitivity": "for Ã¥ visa/gøyma media", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minutt} other {# minutt}} igjen", "time_remaining.moments": "Kort tid igjen", "time_remaining.seconds": "{number, plural, one {# sekund} other {# sekund}} igjen", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {folk}} snakkar", "trends.trending_now": "Populært no", "ui.beforeunload": "Kladden din forsvinn om du forlèt Mastodon no.", diff --git a/app/javascript/mastodon/locales/no.json b/app/javascript/mastodon/locales/no.json index f7d47f7f7e..71cfdfe14b 100644 --- a/app/javascript/mastodon/locales/no.json +++ b/app/javascript/mastodon/locales/no.json @@ -5,6 +5,7 @@ "account.block": "Blokkér @{name}", "account.block_domain": "Skjul alt fra {domain}", "account.blocked": "Blokkert", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Avbryt følge forespørsel", "account.direct": "Direct Message @{name}", "account.domain_blocked": "Domenet skjult", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "for Ã¥ svare", "keyboard_shortcuts.requests": "Ã¥pne følgingsforespørselslisten", "keyboard_shortcuts.search": "Ã¥ fokusere søk", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "Ã¥pne «Sett i gang»-kolonnen", "keyboard_shortcuts.toggle_hidden": "Ã¥ vise/skjule tekst bak en innholdsadvarsel", "keyboard_shortcuts.toggle_sensitivity": "Ã¥ vise/skjule media", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minutt} other {# minutter}} igjen", "time_remaining.moments": "Gjenværende øyeblikk", "time_remaining.seconds": "{number, plural, one {# sekund} other {# sekunder}} igjen", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {personer}} snakker om det", "trends.trending_now": "Trender nÃ¥", "ui.beforeunload": "Din kladd vil bli forkastet om du forlater Mastodon.", diff --git a/app/javascript/mastodon/locales/oc.json b/app/javascript/mastodon/locales/oc.json index 5dc7bf61c2..370a734759 100644 --- a/app/javascript/mastodon/locales/oc.json +++ b/app/javascript/mastodon/locales/oc.json @@ -5,6 +5,7 @@ "account.block": "Blocar @{name}", "account.block_domain": "Tot amagar del domeni {domain}", "account.blocked": "Blocat", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Anullar la demanda de seguiment", "account.direct": "Escriure un MP a @{name}", "account.domain_blocked": "Domeni amagat", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "respondre", "keyboard_shortcuts.requests": "dorbir la lista de demanda d’abonament", "keyboard_shortcuts.search": "anar a la recèrca", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "dobrir la colomna « Per començar »", "keyboard_shortcuts.toggle_hidden": "mostrar/amagar lo tèxte dels avertiments", "keyboard_shortcuts.toggle_sensitivity": "mostrar/rescondre los mèdias", @@ -412,6 +414,10 @@ "time_remaining.minutes": "demòra{number, plural, one { # minuta} other {n # minutas}}", "time_remaining.moments": "Moments restants", "time_remaining.seconds": "demòra{number, plural, one { # segonda} other {n # segondas}}", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} ne charra other {people}} ne charran", "trends.trending_now": "Tendéncia del moment", "ui.beforeunload": "Vòstre brolhon serà perdut se quitatz Mastodon.", diff --git a/app/javascript/mastodon/locales/pl.json b/app/javascript/mastodon/locales/pl.json index 30756a5a50..4d210541e2 100644 --- a/app/javascript/mastodon/locales/pl.json +++ b/app/javascript/mastodon/locales/pl.json @@ -5,6 +5,7 @@ "account.block": "Blokuj @{name}", "account.block_domain": "Blokuj wszystko z {domain}", "account.blocked": "Zablokowany(-a)", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Zrezygnuj z proÅ›by o możliwość Å›ledzenia", "account.direct": "WyÅ›lij wiadomość bezpoÅ›redniÄ… do @{name}", "account.domain_blocked": "Ukryto domenÄ™", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "aby odpowiedzieć", "keyboard_shortcuts.requests": "aby przejść do listy próśb o możliwość Å›ledzenia", "keyboard_shortcuts.search": "aby przejść do pola wyszukiwania", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "aby otworzyć kolumnÄ™ „Rozpocznijâ€", "keyboard_shortcuts.toggle_hidden": "aby wyÅ›wietlić lub ukryć wpis spod CW", "keyboard_shortcuts.toggle_sensitivity": "by pokazać/ukryć multimedia", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {PozostaÅ‚a # minuta} few {PozostaÅ‚y # minuty} many {PozostaÅ‚o # minut} other {PozostaÅ‚o # minut}}", "time_remaining.moments": "PozostaÅ‚a chwila", "time_remaining.seconds": "{number, plural, one {PozostaÅ‚a # sekunda} few {PozostaÅ‚y # sekundy} many {PozostaÅ‚o # sekund} other {PozostaÅ‚o # sekund}}", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {osoba rozmawia} few {osoby rozmawiajÄ…} other {osób rozmawia}} o tym", "trends.trending_now": "Popularne teraz", "ui.beforeunload": "Utracisz tworzony wpis, jeżeli opuÅ›cisz Mastodona.", diff --git a/app/javascript/mastodon/locales/pt-BR.json b/app/javascript/mastodon/locales/pt-BR.json index 4eb61279a7..334e0e8c6c 100644 --- a/app/javascript/mastodon/locales/pt-BR.json +++ b/app/javascript/mastodon/locales/pt-BR.json @@ -5,6 +5,7 @@ "account.block": "Bloquear @{name}", "account.block_domain": "Bloquear domÃnio {domain}", "account.blocked": "Bloqueado", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Cancelar solicitação para seguir", "account.direct": "Enviar toot direto para @{name}", "account.domain_blocked": "DomÃnio bloqueado", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "para responder", "keyboard_shortcuts.requests": "para abrir lista de pedidos para seguir", "keyboard_shortcuts.search": "para focar pesquisa", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "para abrir coluna \"primeiros passos\"", "keyboard_shortcuts.toggle_hidden": "mostrar/ocultar o toot com Aviso de Conteúdo", "keyboard_shortcuts.toggle_sensitivity": "mostrar/ocultar mÃdia", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minuto restante} other {# minutos restantes}}", "time_remaining.moments": "Momentos faltantes", "time_remaining.seconds": "{number, plural, one {# segundo restante} other {# segundos restantes}}", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {pessoa} other {pessoas}} falando", "trends.trending_now": "Em alta no momento", "ui.beforeunload": "Seu rascunho vai ser perdido se você sair do Mastodon.", diff --git a/app/javascript/mastodon/locales/pt-PT.json b/app/javascript/mastodon/locales/pt-PT.json index 41433a43f0..a888f7a583 100644 --- a/app/javascript/mastodon/locales/pt-PT.json +++ b/app/javascript/mastodon/locales/pt-PT.json @@ -5,6 +5,7 @@ "account.block": "Bloquear @{name}", "account.block_domain": "Esconder tudo do domÃnio {domain}", "account.blocked": "Bloqueado", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Cancelar pedido de seguidor", "account.direct": "Mensagem directa @{name}", "account.domain_blocked": "DomÃnio escondido", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "para responder", "keyboard_shortcuts.requests": "para abrir a lista dos pedidos de seguidor", "keyboard_shortcuts.search": "para focar na pesquisa", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "para abrir a coluna dos \"primeiros passos\"", "keyboard_shortcuts.toggle_hidden": "para mostrar/esconder texto atrás de CW", "keyboard_shortcuts.toggle_sensitivity": "mostrar/ocultar media", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{número, plural, um {# minute} outro {# minutes}} faltam", "time_remaining.moments": "Momentos restantes", "time_remaining.seconds": "{número, plural, um {# second} outro {# seconds}} faltam", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, uma {person} outra {people}} a falar", "trends.trending_now": "Tendências atuais", "ui.beforeunload": "O teu rascunho será perdido se abandonares o Mastodon.", diff --git a/app/javascript/mastodon/locales/ro.json b/app/javascript/mastodon/locales/ro.json index f7143a2e2a..1a998e8fb7 100644 --- a/app/javascript/mastodon/locales/ro.json +++ b/app/javascript/mastodon/locales/ro.json @@ -5,6 +5,7 @@ "account.block": "BlocaÈ›i @{name}", "account.block_domain": "BlocaÈ›i domeniul {domain}", "account.blocked": "Blocat", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "AnulaÈ›i cererea de urmărire", "account.direct": "Mesaj direct @{name}", "account.domain_blocked": "Domeniu blocat", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "să răspundă", "keyboard_shortcuts.requests": "să deschidă lista cu cereri de urmărire", "keyboard_shortcuts.search": "să focalizeze căutarea", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "să deschidă coloana \"ÃŽncepere\"", "keyboard_shortcuts.toggle_hidden": "să arate/ascundă textul în spatele CW", "keyboard_shortcuts.toggle_sensitivity": "pentru a afiÈ™a/ascunde media", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minut} other {# minute}} rămase", "time_remaining.moments": "Momente rămase", "time_remaining.seconds": "{number, plural, one {# secundă} other {# secunde}} rămase", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {persoană} other {persoane}} vorbeÈ™te/ecs", "trends.trending_now": "ÃŽn tendință acum", "ui.beforeunload": "Postarea se va pierde dacă părăseÈ™ti pagina.", diff --git a/app/javascript/mastodon/locales/ru.json b/app/javascript/mastodon/locales/ru.json index fa81bdc361..ed1518d024 100644 --- a/app/javascript/mastodon/locales/ru.json +++ b/app/javascript/mastodon/locales/ru.json @@ -5,6 +5,7 @@ "account.block": "Заблокировать @{name}", "account.block_domain": "Заблокировать {domain}", "account.blocked": "Заблокирован(а)", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Отменить запроÑ", "account.direct": "ÐапиÑать @{name}", "account.domain_blocked": "Домен Ñкрыт", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "ответить", "keyboard_shortcuts.requests": "перейти к запроÑам на подпиÑку", "keyboard_shortcuts.search": "перейти к поиÑку", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "перейти к разделу \"добро пожаловать\"", "keyboard_shortcuts.toggle_hidden": "показать/Ñкрыть текÑÑ‚ за предупреждением", "keyboard_shortcuts.toggle_sensitivity": "показать/Ñкрыть медиафайлы", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {оÑталаÑÑŒ # минута} few {оÑталоÑÑŒ # минуты} many {оÑталоÑÑŒ # минут} other {оÑталоÑÑŒ # минут}}", "time_remaining.moments": "оÑталиÑÑŒ Ñчитанные мгновениÑ", "time_remaining.seconds": "{number, plural, one {# Ñекунда} many {# Ñекунд} other {# Ñекунды}}", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {человек говорит} few {человека говорÑÑ‚} other {человек говорÑÑ‚}} про Ñто", "trends.trending_now": "Самое актуальное", "ui.beforeunload": "Ваш черновик будет утерÑн, еÑли вы покинете Mastodon.", diff --git a/app/javascript/mastodon/locales/sc.json b/app/javascript/mastodon/locales/sc.json index db2bb0dac5..dadc34cdef 100644 --- a/app/javascript/mastodon/locales/sc.json +++ b/app/javascript/mastodon/locales/sc.json @@ -5,6 +5,7 @@ "account.block": "Bloca @{name}", "account.block_domain": "Bloca domìniu{domain}", "account.blocked": "Blocadu", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Annulla rechesta de sighidura", "account.direct": "Messà giu deretu a @{name}", "account.domain_blocked": "Domìniu blocadu", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "pro rispòndere", "keyboard_shortcuts.requests": "pro abèrrere sa lista de rechestas de sighidura", "keyboard_shortcuts.search": "pro atzentrare sa chirca", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "pro abèrrere sa colunna \"Cumintza\"", "keyboard_shortcuts.toggle_hidden": "pro ammustrare o cuare testu de is CW", "keyboard_shortcuts.toggle_sensitivity": "pro ammustrare o cuare mèdias", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {abarrat # minutu} other {abarrant # minutos}}", "time_remaining.moments": "Abarrant pagu momentos", "time_remaining.seconds": "{number, plural, one {abarrat # segundu} other {abarrant # segundos}}", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {persone} other {persones}} nde sunt chistionende", "trends.trending_now": "Est tendèntzia immoe", "ui.beforeunload": "S'abbotzu tuo at a èssere pèrdidu si essis dae Mastodon.", diff --git a/app/javascript/mastodon/locales/sk.json b/app/javascript/mastodon/locales/sk.json index ec34bb29e5..d37a7db6fd 100644 --- a/app/javascript/mastodon/locales/sk.json +++ b/app/javascript/mastodon/locales/sk.json @@ -5,6 +5,7 @@ "account.block": "Blokuj @{name}", "account.block_domain": "Ukry vÅ¡etko z {domain}", "account.blocked": "Blokovaný/á", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "ZruÅ¡ žiadosÅ¥ o sledovanie", "account.direct": "Priama správa pre @{name}", "account.domain_blocked": "Doména ukrytá", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "odpovedaÅ¥", "keyboard_shortcuts.requests": "otvor zoznam žiadostà o sledovanie", "keyboard_shortcuts.search": "zameraj sa na vyhľadávanie", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "otvor panel ''zaÄÃname''", "keyboard_shortcuts.toggle_hidden": "ukáž/skry text za CW", "keyboard_shortcuts.toggle_sensitivity": "pre zobrazenie/skrytie médiÃ", @@ -412,6 +414,10 @@ "time_remaining.minutes": "Ostáva {number, plural, one {# minúta} few {# minút} many {# minút} other {# minúty}}", "time_remaining.moments": "Ostáva už iba chviľka", "time_remaining.seconds": "Ostáva {number, plural, one {# sekunda} few {# sekúnd} many {# sekúnd} other {# sekúnd}}", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {Älovek spomÃna} other {ľudà spomÃna}}", "trends.trending_now": "Teraz populárne", "ui.beforeunload": "ÄŒo máš rozpÃsané sa stratÃ, ak opustÃÅ¡ Mastodon.", diff --git a/app/javascript/mastodon/locales/sl.json b/app/javascript/mastodon/locales/sl.json index 3d8bcc5715..e969b9ad21 100644 --- a/app/javascript/mastodon/locales/sl.json +++ b/app/javascript/mastodon/locales/sl.json @@ -5,6 +5,7 @@ "account.block": "Blokiraj @{name}", "account.block_domain": "Skrij vse iz {domain}", "account.blocked": "Blokirano", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Cancel follow request", "account.direct": "Neposredno sporoÄilo @{name}", "account.domain_blocked": "Skrita domena", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "odgovori", "keyboard_shortcuts.requests": "odpri seznam s proÅ¡njami za sledenje", "keyboard_shortcuts.search": "fokusiraj na iskanje", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "odpri stolpec \"zaÄni\"", "keyboard_shortcuts.toggle_hidden": "prikaži/skrij besedilo za CW", "keyboard_shortcuts.toggle_sensitivity": "prikaži/skrij medije", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minuta} other {# minut}} je ostalo", "time_remaining.moments": "Preostali trenutki", "time_remaining.seconds": "{number, plural, one {# sekunda} other {# sekund}} je ostalo", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {oseba} other {ljudi}} govori", "trends.trending_now": "Trending now", "ui.beforeunload": "VaÅ¡ osnutek bo izgubljen, Äe zapustite Mastodona.", diff --git a/app/javascript/mastodon/locales/sq.json b/app/javascript/mastodon/locales/sq.json index 8626b9ce71..2729c02667 100644 --- a/app/javascript/mastodon/locales/sq.json +++ b/app/javascript/mastodon/locales/sq.json @@ -5,6 +5,7 @@ "account.block": "Blloko @{name}", "account.block_domain": "Fshih gjithçka prej {domain}", "account.blocked": "E bllokuar", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Anulo kërkesën e ndjekjes", "account.direct": "Mesazh i drejtpërdrejt për @{name}", "account.domain_blocked": "Përkatësi e fshehur", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "për t’u përgjigjur", "keyboard_shortcuts.requests": "për hapje liste kërkesash për ndjekje", "keyboard_shortcuts.search": "për kalim fokusi te kërkimi", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "për hapjen e shtyllës \"fillojani\"", "keyboard_shortcuts.toggle_hidden": "për shfaqje/fshehje teksti pas CW", "keyboard_shortcuts.toggle_sensitivity": "për të shfaqur/të fshehur media", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural,one {# minutë}other {# minuta}} mbetur", "time_remaining.moments": "Momente të mbetura", "time_remaining.seconds": "{number, plural,one {# sekond}other {# sekonda}} mbetur", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, një {person} {people} të tjerë} po flasin", "trends.trending_now": "Në trend", "ui.beforeunload": "Skica juaj do të humbë nëse dilni nga Mastodon-i.", diff --git a/app/javascript/mastodon/locales/sr-Latn.json b/app/javascript/mastodon/locales/sr-Latn.json index d1b4ee7ec9..6e0bd4d1ed 100644 --- a/app/javascript/mastodon/locales/sr-Latn.json +++ b/app/javascript/mastodon/locales/sr-Latn.json @@ -5,6 +5,7 @@ "account.block": "Blokiraj korisnika @{name}", "account.block_domain": "Sakrij sve sa domena {domain}", "account.blocked": "Blocked", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Cancel follow request", "account.direct": "Direct Message @{name}", "account.domain_blocked": "Domain hidden", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "da odgovorite", "keyboard_shortcuts.requests": "to open follow requests list", "keyboard_shortcuts.search": "da se prebacite na pretragu", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "to open \"get started\" column", "keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW", "keyboard_shortcuts.toggle_sensitivity": "to show/hide media", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left", "time_remaining.moments": "Moments remaining", "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking", "trends.trending_now": "Trending now", "ui.beforeunload": "Ako napustite Mastodont, izgubićete napisani nacrt.", diff --git a/app/javascript/mastodon/locales/sr.json b/app/javascript/mastodon/locales/sr.json index 277ef356f7..356ff85bc4 100644 --- a/app/javascript/mastodon/locales/sr.json +++ b/app/javascript/mastodon/locales/sr.json @@ -5,6 +5,7 @@ "account.block": "Блокирај @{name}", "account.block_domain": "Сакриј Ñве Ñа домена {domain}", "account.blocked": "Блокиран", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Поништи захтеве за праћење", "account.direct": "Директна порука @{name}", "account.domain_blocked": "Домен Ñакривен", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "да одговорите", "keyboard_shortcuts.requests": "да отворите лиÑту примљених захтева за праћење", "keyboard_shortcuts.search": "да Ñе пребаците на претрагу", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "да отворите колону \"почнимо\"", "keyboard_shortcuts.toggle_hidden": "да прикажете/Ñакријте текÑÑ‚ иза CW-а", "keyboard_shortcuts.toggle_sensitivity": "to show/hide media", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left", "time_remaining.moments": "Moments remaining", "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {човек} other {људи}} прича", "trends.trending_now": "Trending now", "ui.beforeunload": "Ðко напуÑтите МаÑтодонт, изгубићете напиÑани нацрт.", diff --git a/app/javascript/mastodon/locales/sv.json b/app/javascript/mastodon/locales/sv.json index c83ede5bcb..11b72db36b 100644 --- a/app/javascript/mastodon/locales/sv.json +++ b/app/javascript/mastodon/locales/sv.json @@ -5,6 +5,7 @@ "account.block": "Blockera @{name}", "account.block_domain": "Dölj allt frÃ¥n {domain}", "account.blocked": "Blockerad", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Avbryt följarförfrÃ¥gan", "account.direct": "Skicka ett direktmeddelande till @{name}", "account.domain_blocked": "Domän dold", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "för att svara", "keyboard_shortcuts.requests": "för att öppna FöljförfrÃ¥gningar", "keyboard_shortcuts.search": "för att fokusera sökfältet", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "för att öppna \"Kom igÃ¥ng\"-kolumnen", "keyboard_shortcuts.toggle_hidden": "för att visa/gömma text bakom CW", "keyboard_shortcuts.toggle_sensitivity": "för att visa/gömma media", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{minutes, plural, one {1 minut} other {# minuter}} kvar", "time_remaining.moments": "Ã…terstÃ¥ende tillfällen", "time_remaining.seconds": "{hours, plural, one {# sekund} other {# sekunder}} kvar", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, en {person} andra {people}} pratar", "trends.trending_now": "Trendar nu", "ui.beforeunload": "Ditt utkast kommer att förloras om du lämnar Mastodon.", diff --git a/app/javascript/mastodon/locales/ta.json b/app/javascript/mastodon/locales/ta.json index 22d24639f7..117fa08394 100644 --- a/app/javascript/mastodon/locales/ta.json +++ b/app/javascript/mastodon/locales/ta.json @@ -5,6 +5,7 @@ "account.block": "@{name} -à®à®¤à¯ தடà¯", "account.block_domain": "{domain} யில௠இரà¯à®¨à¯à®¤à¯ வரà¯à®®à¯ எலà¯à®²à®¾à®µà®±à¯à®±à¯ˆà®¯à¯à®®à¯ மறை", "account.blocked": "à®®à¯à®Ÿà®•à¯à®•à®ªà¯à®ªà®Ÿà¯à®Ÿà®¤à¯", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "பினà¯à®¤à¯Šà®Ÿà®°à¯à®®à¯ கோரிகà¯à®•à¯ˆà®¯à¯ˆ நிராகரி", "account.direct": "நேரடி செயà¯à®¤à®¿ @{name}", "account.domain_blocked": "மறைகà¯à®•à®ªà¯à®ªà®Ÿà¯à®Ÿà®¤à¯ தளஙà¯à®•à®³à¯", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "பதிலளிகà¯à®•", "keyboard_shortcuts.requests": "கோரிகà¯à®•à¯ˆà®•à®³à¯ படà¯à®Ÿà®¿à®¯à®²à¯ˆà®¤à¯ திறகà¯à®•", "keyboard_shortcuts.search": "தேடல௠கவனம௠செலà¯à®¤à¯à®¤", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "'தொடஙà¯à®•à¯à®µà®¤à®±à¯à®•à¯' நெடà¯à®µà®°à®¿à®šà¯ˆ திறகà¯à®•", "keyboard_shortcuts.toggle_hidden": "CW கà¯à®•à¯ பினà¯à®©à®¾à®²à¯ உரையை மறைகà¯à®• / மறைகà¯à®•", "keyboard_shortcuts.toggle_sensitivity": "படிமஙà¯à®•à®³à¯ˆà®•à¯ காடà¯à®Ÿ/மறைகà¯à®•", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minute} மறà¯à®± {# minutes}} left", "time_remaining.moments": "தரà¯à®£à®™à¯à®•à®³à¯ மீதமà¯à®³à¯à®³à®©", "time_remaining.seconds": "{number, plural, one {# second} மறà¯à®± {# seconds}} left", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} மறà¯à®± {people}} உரையாடà¯", "trends.trending_now": "இபà¯à®ªà¯‹à®¤à¯ செலà¯à®¤à®¿à®šà¯ˆà®¯à®¿à®²à¯ இரà¯à®ªà¯à®ªà®µà¯ˆ", "ui.beforeunload": "நீஙà¯à®•à®³à¯ வெளியே செனà¯à®±à®¾à®²à¯ உஙà¯à®•à®³à¯ வரைவ௠இழகà¯à®•à®ªà¯à®ªà®Ÿà¯à®®à¯ மஸà¯à®¤à¯‹à®Ÿà¯‹à®©à¯.", diff --git a/app/javascript/mastodon/locales/te.json b/app/javascript/mastodon/locales/te.json index 031d1fad75..bd94f84982 100644 --- a/app/javascript/mastodon/locales/te.json +++ b/app/javascript/mastodon/locales/te.json @@ -5,6 +5,7 @@ "account.block": "@{name} నౠబà±à°²à°¾à°•à± చేయి", "account.block_domain": "{domain} à°¨à±à°‚à°šà°¿ à°…à°¨à±à°¨à±€ దాచిపెటà±à°Ÿà±", "account.blocked": "à°¬à±à°²à°¾à°•à± అయినవి", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Cancel follow request", "account.direct": "@{name}కౠనేరà±à°—à°¾ సందేశం పంపà±", "account.domain_blocked": "డొమైనౠదాచిపెటà±à°Ÿà°¬à°¡à°¿à°¨à°¦à°¿", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "à°ªà±à°°à°¤à±à°¯à±à°¤à±à°¤à°°à°‚ ఇవà±à°µà°¡à°¾à°¨à°¿à°•à°¿", "keyboard_shortcuts.requests": "ఫాలో à°°à°¿à°•à±à°µà±†à°¸à±à°Ÿà±à°² జాబితానౠతెరవడానికి", "keyboard_shortcuts.search": "శోధనపై దృషà±à°Ÿà°¿ పెటà±à°Ÿà°‚à°¡à°¿", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "\"ఇకà±à°•à°¡ à°ªà±à°°à°¾à°°à°‚à°à°¿à°‚à°šà°‚à°¡à°¿\" నిలà±à°µà± వరà±à°¸à°¨à± తెరవడానికి", "keyboard_shortcuts.toggle_hidden": "CW వెనà±à°• ఉనà±à°¨ పాఠà±à°¯à°¾à°¨à±à°¨à°¿ చూపడానికి / దాచడానికి", "keyboard_shortcuts.toggle_sensitivity": "to show/hide media", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left", "time_remaining.moments": "కొనà±à°¨à°¿ à°•à±à°·à°£à°¾à°²à± మాతà±à°°à°®à±‡ మిగిలి ఉనà±à°¨à°¾à°¯à°¿", "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} మాటà±à°²à°¾à°¡à±à°¤à±à°¨à±à°¨à°¾à°°à±", "trends.trending_now": "Trending now", "ui.beforeunload": "మీరౠమాసà±à°Ÿà±Šà°¡à±Šà°¨à±à°¨à± వదిలివేసà±à°¤à±‡ మీ à°¡à±à°°à°¾à°«à±à°Ÿà±à°²à± పోతాయి.", diff --git a/app/javascript/mastodon/locales/th.json b/app/javascript/mastodon/locales/th.json index 8ba698e4e1..a95fc55b91 100644 --- a/app/javascript/mastodon/locales/th.json +++ b/app/javascript/mastodon/locales/th.json @@ -5,6 +5,7 @@ "account.block": "ปิดà¸à¸±à¹‰à¸™ @{name}", "account.block_domain": "ปิดà¸à¸±à¹‰à¸™à¹‚ดเมน {domain}", "account.blocked": "ปิดà¸à¸±à¹‰à¸™à¸à¸¢à¸¹à¹ˆ", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "ยà¸à¹€à¸¥à¸´à¸à¸„ำขà¸à¸•à¸´à¸”ตาม", "account.direct": "ส่งข้à¸à¸„วามโดยตรงถึง @{name}", "account.domain_blocked": "ปิดà¸à¸±à¹‰à¸™à¹‚ดเมนà¸à¸¢à¸¹à¹ˆ", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "เพื่à¸à¸•à¸à¸šà¸à¸¥à¸±à¸š", "keyboard_shortcuts.requests": "เพื่à¸à¹€à¸›à¸´à¸”รายà¸à¸²à¸£à¸„ำขà¸à¸•à¸´à¸”ตาม", "keyboard_shortcuts.search": "เพื่à¸à¹‚ฟà¸à¸±à¸ªà¸à¸²à¸£à¸„้นหา", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "เพื่à¸à¹€à¸›à¸´à¸”คà¸à¸¥à¸±à¸¡à¸™à¹Œ \"เริ่มต้นใช้งาน\"", "keyboard_shortcuts.toggle_hidden": "เพื่à¸à¹à¸ªà¸”ง/ซ่à¸à¸™à¸‚้à¸à¸„วามที่à¸à¸¢à¸¹à¹ˆà¸«à¸¥à¸±à¸‡à¸„ำเตืà¸à¸™à¹€à¸™à¸·à¹‰à¸à¸«à¸²", "keyboard_shortcuts.toggle_sensitivity": "เพื่à¸à¹à¸ªà¸”ง/ซ่à¸à¸™à¸ªà¸·à¹ˆà¸", @@ -412,6 +414,10 @@ "time_remaining.minutes": "เหลืà¸à¸à¸µà¸ {number, plural, other {# นาที}}", "time_remaining.moments": "ช่วงเวลาที่เหลืà¸", "time_remaining.seconds": "เหลืà¸à¸à¸µà¸ {number, plural, other {# วินาที}}", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, other {คน}}à¸à¸³à¸¥à¸±à¸‡à¸žà¸¹à¸”คุย", "trends.trending_now": "à¸à¸³à¸¥à¸±à¸‡à¸™à¸´à¸¢à¸¡", "ui.beforeunload": "à¹à¸šà¸šà¸£à¹ˆà¸²à¸‡à¸‚à¸à¸‡à¸„ุณจะหายไปหาà¸à¸„ุณà¸à¸à¸à¸ˆà¸²à¸ Mastodon", diff --git a/app/javascript/mastodon/locales/tr.json b/app/javascript/mastodon/locales/tr.json index c6c1c8d8c8..17d8a54ff5 100644 --- a/app/javascript/mastodon/locales/tr.json +++ b/app/javascript/mastodon/locales/tr.json @@ -5,6 +5,7 @@ "account.block": "@{name} adlı kiÅŸiyi engelle", "account.block_domain": "{domain} alanından her ÅŸeyi gizle", "account.blocked": "EngellenmiÅŸ", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Takip isteÄŸini iptal et", "account.direct": "Mesaj gönder @{name}", "account.domain_blocked": "Alan adı gizlendi", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "cevaplamak için", "keyboard_shortcuts.requests": "takip istekleri listesini açmak için", "keyboard_shortcuts.search": "aramaya odaklanmak için", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "\"baÅŸlayın\" sütununu açmak için", "keyboard_shortcuts.toggle_hidden": "CW'den önceki yazıyı göstermek/gizlemek için", "keyboard_shortcuts.toggle_sensitivity": "medyayı göstermek/gizlemek için", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# dakika} other {# dakika}} kaldı", "time_remaining.moments": "Sadece birkaç dakika kaldı", "time_remaining.seconds": "{number, plural, one {# saniye} other {# saniye}} kaldı", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {kiÅŸi} other {kiÅŸi}} konuÅŸuyor", "trends.trending_now": "Åžu an popüler", "ui.beforeunload": "Mastodon'dan ayrılırsanız taslağınız kaybolacak.", diff --git a/app/javascript/mastodon/locales/uk.json b/app/javascript/mastodon/locales/uk.json index 2bf264395f..9735f2b833 100644 --- a/app/javascript/mastodon/locales/uk.json +++ b/app/javascript/mastodon/locales/uk.json @@ -5,6 +5,7 @@ "account.block": "Заблокувати @{name}", "account.block_domain": "Заглушити {domain}", "account.blocked": "Заблоковані", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "СкаÑувати запит на підпиÑку", "account.direct": "ПрÑме Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ @{name}", "account.domain_blocked": "Домен приховано", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "відповіÑти", "keyboard_shortcuts.requests": "відкрити ÑпиÑок бажаючих підпиÑатиÑÑ", "keyboard_shortcuts.search": "ÑфокуÑуватиÑÑ Ð½Ð° пошуку", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "відкрити колонку \"Початок\"", "keyboard_shortcuts.toggle_hidden": "показати/приховати текÑÑ‚ під попередженнÑм", "keyboard_shortcuts.toggle_sensitivity": "показати/приховати медіа", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# хвилина} few {# хвилини} other {# хвилин}}", "time_remaining.moments": "ЗалишилоÑÑŒ Ñекунд", "time_remaining.seconds": "{number, plural, one {# Ñекунда} few {# Ñекунди} other {# Ñекунд}}", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {людина} few {людини} many {людей} other {людей}} обговорюють це", "trends.trending_now": "Ðктуальні", "ui.beforeunload": "Вашу чернетку буде втрачено, Ñкщо ви покинете Mastodon.", diff --git a/app/javascript/mastodon/locales/ur.json b/app/javascript/mastodon/locales/ur.json index b4989afb74..e3639d4774 100644 --- a/app/javascript/mastodon/locales/ur.json +++ b/app/javascript/mastodon/locales/ur.json @@ -5,6 +5,7 @@ "account.block": "مسدود @{name}", "account.block_domain": "{domain} سے سب چھپائیں", "account.blocked": "مسدود کردÛ", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "درخواست٠پیروی منسوخ کریں", "account.direct": "راست پیغام @{name}", "account.domain_blocked": "Ù¾ÙˆØ´ÛŒØ¯Û ÚˆÙˆÙ…ÛŒÙ†", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "to reply", "keyboard_shortcuts.requests": "to open follow requests list", "keyboard_shortcuts.search": "to focus search", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "to open \"get started\" column", "keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW", "keyboard_shortcuts.toggle_sensitivity": "to show/hide media", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, one {# minute} other {# minutes}} left", "time_remaining.moments": "Moments remaining", "time_remaining.seconds": "{number, plural, one {# second} other {# seconds}} left", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking", "trends.trending_now": "Trending now", "ui.beforeunload": "Your draft will be lost if you leave Mastodon.", diff --git a/app/javascript/mastodon/locales/vi.json b/app/javascript/mastodon/locales/vi.json index 126fbc5618..2d16526c47 100644 --- a/app/javascript/mastodon/locales/vi.json +++ b/app/javascript/mastodon/locales/vi.json @@ -5,6 +5,7 @@ "account.block": "Chặn @{name}", "account.block_domain": "Ẩn má»i thứ từ {domain}", "account.blocked": "Äã chặn", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "Hủy theo yêu cầu", "account.direct": "Nhắn riêng @{name}", "account.domain_blocked": "Miá»n đã ẩn", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "để trả lá»i", "keyboard_shortcuts.requests": "để mở danh sách các yêu cầu", "keyboard_shortcuts.search": "để và o ô tìm kiếm", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "để mở cá»™t \"Bắt đầu\"", "keyboard_shortcuts.toggle_hidden": "để ẩn/hiện đằng sau văn bản CW", "keyboard_shortcuts.toggle_sensitivity": "để hiển thị / ẩn media", @@ -412,6 +414,10 @@ "time_remaining.minutes": "{number, plural, other {}} left", "time_remaining.moments": "Còn lại", "time_remaining.seconds": "{number, plural, other {}} left", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{Count} {rawCount, số nhiá»u, má»™t {ngÆ°á»i} khác {ngÆ°á»i}} nói chuyện", "trends.trending_now": "Äang là xu hÆ°á»›ng", "ui.beforeunload": "Bản nháp của bạn sẽ bị mất nếu bạn rá»i của Mastodon.", diff --git a/app/javascript/mastodon/locales/zh-CN.json b/app/javascript/mastodon/locales/zh-CN.json index ccd69815d9..0069b90ae7 100644 --- a/app/javascript/mastodon/locales/zh-CN.json +++ b/app/javascript/mastodon/locales/zh-CN.json @@ -5,6 +5,7 @@ "account.block": "å±è”½ @{name}", "account.block_domain": "éšè—æ¥è‡ª {domain} 的内容", "account.blocked": "å·²å±è”½", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "å–消关注请求", "account.direct": "å‘é€ç§ä¿¡ç»™ @{name}", "account.domain_blocked": "网站已å±è”½", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "回å¤å˜Ÿæ–‡", "keyboard_shortcuts.requests": "打开关注请求列表", "keyboard_shortcuts.search": "选择æœç´¢æ¡†", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "打开“开始使用â€æ ", "keyboard_shortcuts.toggle_hidden": "显示或éšè—被折å çš„æ£æ–‡", "keyboard_shortcuts.toggle_sensitivity": "显示/éšè—媒体", @@ -412,6 +414,10 @@ "time_remaining.minutes": "剩余 {number, plural, one {# 分钟} other {# 分钟}}", "time_remaining.moments": "å³å°†ç»“æŸ", "time_remaining.seconds": "剩余 {number, plural, one {# 秒} other {# 秒}}", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} 人æ£åœ¨è®¨è®º", "trends.trending_now": "现在æµè¡Œ", "ui.beforeunload": "å¦‚æžœä½ çŽ°åœ¨ç¦»å¼€ Mastodonï¼Œä½ çš„è‰ç¨¿å†…容将会丢失。", diff --git a/app/javascript/mastodon/locales/zh-HK.json b/app/javascript/mastodon/locales/zh-HK.json index 1ae125ba08..f3212049b1 100644 --- a/app/javascript/mastodon/locales/zh-HK.json +++ b/app/javascript/mastodon/locales/zh-HK.json @@ -5,6 +5,7 @@ "account.block": "å°éŽ– @{name}", "account.block_domain": "éš±è—來自 {domain} çš„ä¸€åˆ‡æ–‡ç« ", "account.blocked": "å°éŽ–", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "å–消關注請求", "account.direct": "ç§è¨Š @{name}", "account.domain_blocked": "æœå‹™ç«™è¢«éš±è—", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "回覆", "keyboard_shortcuts.requests": "開啟關注請求åå–®", "keyboard_shortcuts.search": "把標示移動到æœç´¢", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "開啟「開始使用ã€æ¬„ä½", "keyboard_shortcuts.toggle_hidden": "顯示或隱è—被標為æ•æ„Ÿçš„æ–‡å—", "keyboard_shortcuts.toggle_sensitivity": "顯示 / éš±è—媒體", @@ -412,6 +414,10 @@ "time_remaining.minutes": "剩餘{number, plural, one {# 分é˜} other {# 分é˜}}", "time_remaining.moments": "剩餘時間", "time_remaining.seconds": "剩餘 {number, plural, one {# 秒} other {# 秒}}", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} ä½ç”¨æˆ¶åœ¨è¨Žè«–", "trends.trending_now": "ç›®å‰è¶¨å‹¢", "ui.beforeunload": "å¦‚æžœä½ ç¾åœ¨é›¢é–‹ Mastodonï¼Œä½ çš„è‰ç¨¿å…§å®¹å°‡æœƒè¢«ä¸Ÿæ£„。", diff --git a/app/javascript/mastodon/locales/zh-TW.json b/app/javascript/mastodon/locales/zh-TW.json index f4862cf86a..62ef113ed8 100644 --- a/app/javascript/mastodon/locales/zh-TW.json +++ b/app/javascript/mastodon/locales/zh-TW.json @@ -5,6 +5,7 @@ "account.block": "å°éŽ– @{name}", "account.block_domain": "éš±è—來自 {domain} 的所有內容", "account.blocked": "å·²å°éŽ–", + "account.browse_more_on_origin_server": "Browse more on the original profile", "account.cancel_follow_request": "å–消關注請求", "account.direct": "傳ç§è¨Šçµ¦ @{name}", "account.domain_blocked": "已隱è—網域", @@ -236,6 +237,7 @@ "keyboard_shortcuts.reply": "回覆", "keyboard_shortcuts.requests": "開啟關注請求åå–®", "keyboard_shortcuts.search": "將焦點移至æœå°‹æ¡†", + "keyboard_shortcuts.spoilers": "to show/hide CW field", "keyboard_shortcuts.start": "開啟「開始使用ã€æ¬„ä½", "keyboard_shortcuts.toggle_hidden": "顯示/éš±è—在內容è¦å‘Šä¹‹å¾Œçš„æ£æ–‡", "keyboard_shortcuts.toggle_sensitivity": "顯示 / éš±è—媒體", @@ -412,6 +414,10 @@ "time_remaining.minutes": "剩餘{number, plural, one {# 分é˜} other {# 分é˜}}", "time_remaining.moments": "剩餘時間", "time_remaining.seconds": "剩餘 {number, plural, one {# 秒} other {# 秒}}", + "timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.", + "timeline_hint.resources.followers": "Followers", + "timeline_hint.resources.follows": "Follows", + "timeline_hint.resources.statuses": "Older toots", "trends.count_by_accounts": "{count} ä½ä½¿ç”¨è€…在討論", "trends.trending_now": "ç›®å‰è¶¨å‹¢", "ui.beforeunload": "如果離開 Mastodonï¼Œä½ çš„è‰ç¨¿å°‡æœƒä¸è¦‹ã€‚", diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index 5d725b908f..acd4b93b54 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -3227,6 +3227,31 @@ a.status-card.compact:hover { border-bottom: 1px solid lighten($ui-base-color, 8%); } +.timeline-hint { + text-align: center; + color: $darker-text-color; + padding: 15px; + box-sizing: border-box; + width: 100%; + cursor: default; + + strong { + font-weight: 500; + } + + a { + color: lighten($ui-highlight-color, 8%); + text-decoration: none; + + &:hover, + &:focus, + &:active { + text-decoration: underline; + color: lighten($ui-highlight-color, 12%); + } + } +} + .regeneration-indicator { text-align: center; font-size: 16px; -- GitLab