Merge tag 'v2.5.0rc2' into HEAD
This commit is contained in:
commit
4401b3a148
105 changed files with 1947 additions and 453 deletions
|
@ -1,3 +1,4 @@
|
||||||
https://github.com/heroku/heroku-buildpack-apt
|
https://github.com/heroku/heroku-buildpack-apt
|
||||||
|
https://github.com/Scalingo/ffmpeg-buildpack
|
||||||
https://github.com/Scalingo/nodejs-buildpack
|
https://github.com/Scalingo/nodejs-buildpack
|
||||||
https://github.com/Scalingo/ruby-buildpack
|
https://github.com/Scalingo/ruby-buildpack
|
||||||
|
|
|
@ -13,6 +13,7 @@ class Api::V1::FollowRequestsController < Api::BaseController
|
||||||
|
|
||||||
def authorize
|
def authorize
|
||||||
AuthorizeFollowService.new.call(account, current_account)
|
AuthorizeFollowService.new.call(account, current_account)
|
||||||
|
NotifyService.new.call(current_account, Follow.find_by(account: account, target_account: current_account))
|
||||||
render_empty
|
render_empty
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -54,6 +54,7 @@ class StatusesController < ApplicationController
|
||||||
skip_session!
|
skip_session!
|
||||||
expires_in 180, public: true
|
expires_in 180, public: true
|
||||||
response.headers['X-Frame-Options'] = 'ALLOWALL'
|
response.headers['X-Frame-Options'] = 'ALLOWALL'
|
||||||
|
@autoplay = ActiveModel::Type::Boolean.new.cast(params[:autoplay])
|
||||||
|
|
||||||
render 'stream_entries/embed', layout: 'embedded'
|
render 'stream_entries/embed', layout: 'embedded'
|
||||||
end
|
end
|
||||||
|
|
|
@ -8,6 +8,7 @@ module SettingsHelper
|
||||||
bg: 'Български',
|
bg: 'Български',
|
||||||
ca: 'Català',
|
ca: 'Català',
|
||||||
co: 'Corsu',
|
co: 'Corsu',
|
||||||
|
cy: 'Cymraeg',
|
||||||
da: 'Dansk',
|
da: 'Dansk',
|
||||||
de: 'Deutsch',
|
de: 'Deutsch',
|
||||||
el: 'Ελληνικά',
|
el: 'Ελληνικά',
|
||||||
|
|
|
@ -22,12 +22,12 @@ module StreamEntriesHelper
|
||||||
link_to account_unfollow_path(account), class: 'button logo-button button--destructive', data: { method: :post } do
|
link_to account_unfollow_path(account), class: 'button logo-button button--destructive', data: { method: :post } do
|
||||||
safe_join([render(file: Rails.root.join('app', 'javascript', 'images', 'logo.svg')), t('accounts.unfollow')])
|
safe_join([render(file: Rails.root.join('app', 'javascript', 'images', 'logo.svg')), t('accounts.unfollow')])
|
||||||
end
|
end
|
||||||
else
|
elsif !(account.memorial? || account.moved?)
|
||||||
link_to account_follow_path(account), class: 'button logo-button', data: { method: :post } do
|
link_to account_follow_path(account), class: 'button logo-button', data: { method: :post } do
|
||||||
safe_join([render(file: Rails.root.join('app', 'javascript', 'images', 'logo.svg')), t('accounts.follow')])
|
safe_join([render(file: Rails.root.join('app', 'javascript', 'images', 'logo.svg')), t('accounts.follow')])
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
else
|
elsif !(account.memorial? || account.moved?)
|
||||||
link_to account_remote_follow_path(account), class: 'button logo-button modal-button', target: '_new' do
|
link_to account_remote_follow_path(account), class: 'button logo-button modal-button', target: '_new' do
|
||||||
safe_join([render(file: Rails.root.join('app', 'javascript', 'images', 'logo.svg')), t('accounts.follow')])
|
safe_join([render(file: Rails.root.join('app', 'javascript', 'images', 'logo.svg')), t('accounts.follow')])
|
||||||
end
|
end
|
||||||
|
|
|
@ -26,6 +26,7 @@ export default class ScrollableList extends PureComponent {
|
||||||
hasMore: PropTypes.bool,
|
hasMore: PropTypes.bool,
|
||||||
prepend: PropTypes.node,
|
prepend: PropTypes.node,
|
||||||
alwaysPrepend: PropTypes.bool,
|
alwaysPrepend: PropTypes.bool,
|
||||||
|
alwaysShowScrollbar: PropTypes.bool,
|
||||||
emptyMessage: PropTypes.node,
|
emptyMessage: PropTypes.node,
|
||||||
children: PropTypes.node,
|
children: PropTypes.node,
|
||||||
};
|
};
|
||||||
|
@ -141,7 +142,7 @@ export default class ScrollableList extends PureComponent {
|
||||||
}
|
}
|
||||||
|
|
||||||
render () {
|
render () {
|
||||||
const { children, scrollKey, trackScroll, shouldUpdateScroll, isLoading, hasMore, prepend, alwaysPrepend, emptyMessage, onLoadMore } = this.props;
|
const { children, scrollKey, trackScroll, shouldUpdateScroll, isLoading, hasMore, prepend, alwaysPrepend, alwaysShowScrollbar, emptyMessage, onLoadMore } = this.props;
|
||||||
const { fullscreen } = this.state;
|
const { fullscreen } = this.state;
|
||||||
const childrenCount = React.Children.count(children);
|
const childrenCount = React.Children.count(children);
|
||||||
|
|
||||||
|
@ -172,11 +173,13 @@ export default class ScrollableList extends PureComponent {
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
|
const scrollable = alwaysShowScrollbar;
|
||||||
|
|
||||||
scrollableArea = (
|
scrollableArea = (
|
||||||
<div style={{ flex: '1 1 auto', display: 'flex', flexDirection: 'column' }}>
|
<div className={classNames({ scrollable, fullscreen })} ref={this.setRef} style={{ flex: '1 1 auto', display: 'flex', flexDirection: 'column' }}>
|
||||||
{alwaysPrepend && prepend}
|
{alwaysPrepend && prepend}
|
||||||
|
|
||||||
<div className='empty-column-indicator' ref={this.setRef}>
|
<div className='empty-column-indicator'>
|
||||||
{emptyMessage}
|
{emptyMessage}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -269,10 +269,10 @@ export default class Status extends ImmutablePureComponent {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<HotKeys handlers={handlers}>
|
<HotKeys handlers={handlers}>
|
||||||
<div className={classNames('status__wrapper', `status__wrapper-${status.get('visibility')}`, { focusable: !this.props.muted })} tabIndex={this.props.muted ? null : 0} data-featured={featured ? 'true' : null} aria-label={textForScreenReader(intl, status, rebloggedByText, !status.get('hidden'))}>
|
<div className={classNames('status__wrapper', `status__wrapper-${status.get('visibility')}`, { 'status__wrapper-reply': !!status.get('in_reply_to_id'), focusable: !this.props.muted })} tabIndex={this.props.muted ? null : 0} data-featured={featured ? 'true' : null} aria-label={textForScreenReader(intl, status, rebloggedByText, !status.get('hidden'))}>
|
||||||
{prepend}
|
{prepend}
|
||||||
|
|
||||||
<div className={classNames('status', `status-${status.get('visibility')}`, { muted: this.props.muted })} data-id={status.get('id')}>
|
<div className={classNames('status', `status-${status.get('visibility')}`, { 'status-reply': !!status.get('in_reply_to_id'), muted: this.props.muted })} data-id={status.get('id')}>
|
||||||
<div className='status__info'>
|
<div className='status__info'>
|
||||||
<a href={status.get('url')} className='status__relative-time' target='_blank' rel='noopener'><RelativeTimestamp timestamp={status.get('created_at')} /></a>
|
<a href={status.get('url')} className='status__relative-time' target='_blank' rel='noopener'><RelativeTimestamp timestamp={status.get('created_at')} /></a>
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||||
import ImmutablePropTypes from 'react-immutable-proptypes';
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||||
|
|
||||||
const messages = defineMessages({
|
const messages = defineMessages({
|
||||||
upload: { id: 'upload_button.label', defaultMessage: 'Add media (JPEG, PNG, GIF, WebM, MP4)' },
|
upload: { id: 'upload_button.label', defaultMessage: 'Add media (JPEG, PNG, GIF, WebM, MP4, MOV)' },
|
||||||
});
|
});
|
||||||
|
|
||||||
const makeMapStateToProps = () => {
|
const makeMapStateToProps = () => {
|
||||||
|
|
|
@ -66,13 +66,14 @@ export default class Followers extends ImmutablePureComponent {
|
||||||
<Column>
|
<Column>
|
||||||
<ColumnBackButton />
|
<ColumnBackButton />
|
||||||
|
|
||||||
<HeaderContainer accountId={this.props.params.accountId} hideTabs />
|
|
||||||
|
|
||||||
<ScrollableList
|
<ScrollableList
|
||||||
scrollKey='followers'
|
scrollKey='followers'
|
||||||
hasMore={hasMore}
|
hasMore={hasMore}
|
||||||
onLoadMore={this.handleLoadMore}
|
onLoadMore={this.handleLoadMore}
|
||||||
shouldUpdateScroll={shouldUpdateScroll}
|
shouldUpdateScroll={shouldUpdateScroll}
|
||||||
|
prepend={<HeaderContainer accountId={this.props.params.accountId} hideTabs />}
|
||||||
|
alwaysPrepend
|
||||||
|
alwaysShowScrollbar
|
||||||
emptyMessage={emptyMessage}
|
emptyMessage={emptyMessage}
|
||||||
>
|
>
|
||||||
{accountIds.map(id =>
|
{accountIds.map(id =>
|
||||||
|
|
|
@ -66,13 +66,14 @@ export default class Following extends ImmutablePureComponent {
|
||||||
<Column>
|
<Column>
|
||||||
<ColumnBackButton />
|
<ColumnBackButton />
|
||||||
|
|
||||||
<HeaderContainer accountId={this.props.params.accountId} hideTabs />
|
|
||||||
|
|
||||||
<ScrollableList
|
<ScrollableList
|
||||||
scrollKey='following'
|
scrollKey='following'
|
||||||
hasMore={hasMore}
|
hasMore={hasMore}
|
||||||
onLoadMore={this.handleLoadMore}
|
onLoadMore={this.handleLoadMore}
|
||||||
shouldUpdateScroll={shouldUpdateScroll}
|
shouldUpdateScroll={shouldUpdateScroll}
|
||||||
|
prepend={<HeaderContainer accountId={this.props.params.accountId} hideTabs />}
|
||||||
|
alwaysPrepend
|
||||||
|
alwaysShowScrollbar
|
||||||
emptyMessage={emptyMessage}
|
emptyMessage={emptyMessage}
|
||||||
>
|
>
|
||||||
{accountIds.map(id =>
|
{accountIds.map(id =>
|
||||||
|
|
|
@ -126,34 +126,36 @@ export default class GettingStarted extends ImmutablePureComponent {
|
||||||
</h1>
|
</h1>
|
||||||
</div>}
|
</div>}
|
||||||
|
|
||||||
<div className='getting-started__wrapper' style={{ height }}>
|
<div className='getting-started'>
|
||||||
{!multiColumn && <NavigationBar account={myAccount} />}
|
<div className='getting-started__wrapper' style={{ height }}>
|
||||||
{navItems}
|
{!multiColumn && <NavigationBar account={myAccount} />}
|
||||||
</div>
|
{navItems}
|
||||||
|
</div>
|
||||||
|
|
||||||
{!multiColumn && <div className='flex-spacer' />}
|
{!multiColumn && <div className='flex-spacer' />}
|
||||||
|
|
||||||
<div className='getting-started getting-started__footer'>
|
<div className='getting-started__footer'>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href='https://bridge.joinmastodon.org/' target='_blank'><FormattedMessage id='getting_started.find_friends' defaultMessage='Find friends from Twitter' /></a> · </li>
|
<li><a href='https://bridge.joinmastodon.org/' target='_blank'><FormattedMessage id='getting_started.find_friends' defaultMessage='Find friends from Twitter' /></a> · </li>
|
||||||
{invitesEnabled && <li><a href='/invites' target='_blank'><FormattedMessage id='getting_started.invite' defaultMessage='Invite people' /></a> · </li>}
|
{invitesEnabled && <li><a href='/invites' target='_blank'><FormattedMessage id='getting_started.invite' defaultMessage='Invite people' /></a> · </li>}
|
||||||
{multiColumn && <li><Link to='/keyboard-shortcuts'><FormattedMessage id='navigation_bar.keyboard_shortcuts' defaultMessage='Hotkeys' /></Link> · </li>}
|
{multiColumn && <li><Link to='/keyboard-shortcuts'><FormattedMessage id='navigation_bar.keyboard_shortcuts' defaultMessage='Hotkeys' /></Link> · </li>}
|
||||||
<li><a href='/auth/edit'><FormattedMessage id='getting_started.security' defaultMessage='Security' /></a> · </li>
|
<li><a href='/auth/edit'><FormattedMessage id='getting_started.security' defaultMessage='Security' /></a> · </li>
|
||||||
<li><a href='/about/more' target='_blank'><FormattedMessage id='navigation_bar.info' defaultMessage='About this instance' /></a> · </li>
|
<li><a href='/about/more' target='_blank'><FormattedMessage id='navigation_bar.info' defaultMessage='About this instance' /></a> · </li>
|
||||||
<li><a href='https://joinmastodon.org/apps' target='_blank'><FormattedMessage id='navigation_bar.apps' defaultMessage='Mobile apps' /></a> · </li>
|
<li><a href='https://joinmastodon.org/apps' target='_blank'><FormattedMessage id='navigation_bar.apps' defaultMessage='Mobile apps' /></a> · </li>
|
||||||
<li><a href='/terms' target='_blank'><FormattedMessage id='getting_started.terms' defaultMessage='Terms of service' /></a> · </li>
|
<li><a href='/terms' target='_blank'><FormattedMessage id='getting_started.terms' defaultMessage='Terms of service' /></a> · </li>
|
||||||
<li><a href='/settings/applications' target='_blank'><FormattedMessage id='getting_started.developers' defaultMessage='Developers' /></a> · </li>
|
<li><a href='/settings/applications' target='_blank'><FormattedMessage id='getting_started.developers' defaultMessage='Developers' /></a> · </li>
|
||||||
<li><a href='https://github.com/tootsuite/documentation#documentation' target='_blank'><FormattedMessage id='getting_started.documentation' defaultMessage='Documentation' /></a> · </li>
|
<li><a href='https://github.com/tootsuite/documentation#documentation' target='_blank'><FormattedMessage id='getting_started.documentation' defaultMessage='Documentation' /></a> · </li>
|
||||||
<li><a href='/auth/sign_out' data-method='delete'><FormattedMessage id='navigation_bar.logout' defaultMessage='Logout' /></a></li>
|
<li><a href='/auth/sign_out' data-method='delete'><FormattedMessage id='navigation_bar.logout' defaultMessage='Logout' /></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<FormattedMessage
|
<FormattedMessage
|
||||||
id='getting_started.open_source_notice'
|
id='getting_started.open_source_notice'
|
||||||
defaultMessage='Mastodon is open source software. You can contribute or report issues on GitHub at {github}.'
|
defaultMessage='Mastodon is open source software. You can contribute or report issues on GitHub at {github}.'
|
||||||
values={{ github: <span><a href='https://github.com/tootsuite/mastodon' rel='noopener' target='_blank'>tootsuite/mastodon</a> (v{version})</span> }}
|
values={{ github: <span><a href='https://github.com/tootsuite/mastodon' rel='noopener' target='_blank'>tootsuite/mastodon</a> (v{version})</span> }}
|
||||||
/>
|
/>
|
||||||
</p>
|
</p>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</Column>
|
</Column>
|
||||||
);
|
);
|
||||||
|
|
|
@ -4,6 +4,7 @@ import PropTypes from 'prop-types';
|
||||||
import ImmutablePropTypes from 'react-immutable-proptypes';
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||||
import StatusListContainer from '../ui/containers/status_list_container';
|
import StatusListContainer from '../ui/containers/status_list_container';
|
||||||
import Column from '../../components/column';
|
import Column from '../../components/column';
|
||||||
|
import ColumnBackButton from '../../components/column_back_button';
|
||||||
import ColumnHeader from '../../components/column_header';
|
import ColumnHeader from '../../components/column_header';
|
||||||
import { addColumn, removeColumn, moveColumn } from '../../actions/columns';
|
import { addColumn, removeColumn, moveColumn } from '../../actions/columns';
|
||||||
import { FormattedMessage, defineMessages, injectIntl } from 'react-intl';
|
import { FormattedMessage, defineMessages, injectIntl } from 'react-intl';
|
||||||
|
@ -129,9 +130,8 @@ export default class ListTimeline extends React.PureComponent {
|
||||||
} else if (list === false) {
|
} else if (list === false) {
|
||||||
return (
|
return (
|
||||||
<Column>
|
<Column>
|
||||||
<div className='scrollable'>
|
<ColumnBackButton />
|
||||||
<MissingIndicator />
|
<MissingIndicator />
|
||||||
</div>
|
|
||||||
</Column>
|
</Column>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,9 +10,9 @@
|
||||||
"account.endorse": "إبرازه على الملف الشخصي",
|
"account.endorse": "إبرازه على الملف الشخصي",
|
||||||
"account.follow": "تابِع",
|
"account.follow": "تابِع",
|
||||||
"account.followers": "المتابعون",
|
"account.followers": "المتابعون",
|
||||||
"account.followers.empty": "No one follows this user yet.",
|
"account.followers.empty": "لا أحد يتبع هذا الحساب بعد.",
|
||||||
"account.follows": "يتبع",
|
"account.follows": "يتبع",
|
||||||
"account.follows.empty": "This user doesn't follow anyone yet.",
|
"account.follows.empty": "هذا المستخدِم لا يتبع أحدًا بعد.",
|
||||||
"account.follows_you": "يتابعك",
|
"account.follows_you": "يتابعك",
|
||||||
"account.hide_reblogs": "إخفاء ترقيات @{name}",
|
"account.hide_reblogs": "إخفاء ترقيات @{name}",
|
||||||
"account.media": "وسائط",
|
"account.media": "وسائط",
|
||||||
|
@ -89,7 +89,7 @@
|
||||||
"confirmations.mute.confirm": "أكتم",
|
"confirmations.mute.confirm": "أكتم",
|
||||||
"confirmations.mute.message": "هل أنت متأكد أنك تريد كتم {name} ؟",
|
"confirmations.mute.message": "هل أنت متأكد أنك تريد كتم {name} ؟",
|
||||||
"confirmations.redraft.confirm": "إزالة و إعادة الصياغة",
|
"confirmations.redraft.confirm": "إزالة و إعادة الصياغة",
|
||||||
"confirmations.redraft.message": "هل أنت متأكد من أنك تريد حذف هذا المنشور و إعادة صياغته ؟ سوف تفقد جميع الردود و الترقيات و المفضلة المتصلة به.",
|
"confirmations.redraft.message": "هل أنت متأكد من أنك تريد حذف هذا المنشور و إعادة صياغته ؟ سوف تفقد جميع الإعجابات و الترقيات أما الردود المتصلة به فستُصبِح يتيمة.",
|
||||||
"confirmations.unfollow.confirm": "إلغاء المتابعة",
|
"confirmations.unfollow.confirm": "إلغاء المتابعة",
|
||||||
"confirmations.unfollow.message": "متأكد من أنك تريد إلغاء متابعة {name} ؟",
|
"confirmations.unfollow.message": "متأكد من أنك تريد إلغاء متابعة {name} ؟",
|
||||||
"embed.instructions": "يمكنكم إدماج هذا المنشور على موقعكم الإلكتروني عن طريق نسخ الشفرة أدناه.",
|
"embed.instructions": "يمكنكم إدماج هذا المنشور على موقعكم الإلكتروني عن طريق نسخ الشفرة أدناه.",
|
||||||
|
@ -108,10 +108,10 @@
|
||||||
"emoji_button.search_results": "نتائج البحث",
|
"emoji_button.search_results": "نتائج البحث",
|
||||||
"emoji_button.symbols": "رموز",
|
"emoji_button.symbols": "رموز",
|
||||||
"emoji_button.travel": "أماكن و أسفار",
|
"emoji_button.travel": "أماكن و أسفار",
|
||||||
"empty_column.blocks": "You haven't blocked any users yet.",
|
"empty_column.blocks": "لم تقم بحظر أي مستخدِم بعد.",
|
||||||
"empty_column.community": "الخط الزمني المحلي فارغ. أكتب شيئا ما للعامة كبداية !",
|
"empty_column.community": "الخط الزمني المحلي فارغ. أكتب شيئا ما للعامة كبداية !",
|
||||||
"empty_column.direct": "لم تتلق أية رسالة خاصة مباشِرة بعد. سوف يتم عرض الرسائل المباشرة هنا إن قمت بإرسال واحدة أو تلقيت البعض منها.",
|
"empty_column.direct": "لم تتلق أية رسالة خاصة مباشِرة بعد. سوف يتم عرض الرسائل المباشرة هنا إن قمت بإرسال واحدة أو تلقيت البعض منها.",
|
||||||
"empty_column.domain_blocks": "There are no hidden domains yet.",
|
"empty_column.domain_blocks": "ليس هناك نطاقات مخفية بعد.",
|
||||||
"empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
|
"empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
|
||||||
"empty_column.favourites": "No one has favourited this toot yet. When someone does, they will show up here.",
|
"empty_column.favourites": "No one has favourited this toot yet. When someone does, they will show up here.",
|
||||||
"empty_column.follow_requests": "You don't have any follow requests yet. When you receive one, it will show up here.",
|
"empty_column.follow_requests": "You don't have any follow requests yet. When you receive one, it will show up here.",
|
||||||
|
@ -119,8 +119,8 @@
|
||||||
"empty_column.home": "إنّ الخيط الزمني لصفحتك الرئيسية فارغ. قم بزيارة {public} أو استخدم حقل البحث لكي تكتشف مستخدمين آخرين.",
|
"empty_column.home": "إنّ الخيط الزمني لصفحتك الرئيسية فارغ. قم بزيارة {public} أو استخدم حقل البحث لكي تكتشف مستخدمين آخرين.",
|
||||||
"empty_column.home.public_timeline": "الخيط العام",
|
"empty_column.home.public_timeline": "الخيط العام",
|
||||||
"empty_column.list": "هذه القائمة فارغة مؤقتا و لكن سوف تمتلئ تدريجيا عندما يبدأ الأعضاء المُنتَمين إليها بنشر تبويقات.",
|
"empty_column.list": "هذه القائمة فارغة مؤقتا و لكن سوف تمتلئ تدريجيا عندما يبدأ الأعضاء المُنتَمين إليها بنشر تبويقات.",
|
||||||
"empty_column.lists": "You don't have any lists yet. When you create one, it will show up here.",
|
"empty_column.lists": "ليس عندك أية قائمة بعد. سوف تظهر قائمتك هنا إن قمت بإنشاء واحدة.",
|
||||||
"empty_column.mutes": "You haven't muted any users yet.",
|
"empty_column.mutes": "لم تقم بكتم أي مستخدم بعد.",
|
||||||
"empty_column.notifications": "لم تتلق أي إشعار بعدُ. تفاعل مع المستخدمين الآخرين لإنشاء محادثة.",
|
"empty_column.notifications": "لم تتلق أي إشعار بعدُ. تفاعل مع المستخدمين الآخرين لإنشاء محادثة.",
|
||||||
"empty_column.public": "لا يوجد أي شيء هنا ! قم بنشر شيء ما للعامة، أو إتبع مستخدمين آخرين في الخوادم المثيلة الأخرى لملء خيط المحادثات العام",
|
"empty_column.public": "لا يوجد أي شيء هنا ! قم بنشر شيء ما للعامة، أو إتبع مستخدمين آخرين في الخوادم المثيلة الأخرى لملء خيط المحادثات العام",
|
||||||
"follow_request.authorize": "ترخيص",
|
"follow_request.authorize": "ترخيص",
|
||||||
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "عرض الترقيات",
|
"home.column_settings.show_reblogs": "عرض الترقيات",
|
||||||
"home.column_settings.show_replies": "عرض الردود",
|
"home.column_settings.show_replies": "عرض الردود",
|
||||||
"keyboard_shortcuts.back": "للعودة",
|
"keyboard_shortcuts.back": "للعودة",
|
||||||
|
"keyboard_shortcuts.blocked": "لفتح قائمة المستخدمين المحظورين",
|
||||||
"keyboard_shortcuts.boost": "للترقية",
|
"keyboard_shortcuts.boost": "للترقية",
|
||||||
"keyboard_shortcuts.column": "للتركيز على منشور على أحد الأعمدة",
|
"keyboard_shortcuts.column": "للتركيز على منشور على أحد الأعمدة",
|
||||||
"keyboard_shortcuts.compose": "للتركيز على نافذة تحرير النصوص",
|
"keyboard_shortcuts.compose": "للتركيز على نافذة تحرير النصوص",
|
||||||
"keyboard_shortcuts.description": "Description",
|
"keyboard_shortcuts.description": "Description",
|
||||||
|
"keyboard_shortcuts.direct": "لفتح عمود الرسائل المباشرة",
|
||||||
"keyboard_shortcuts.down": "للإنتقال إلى أسفل القائمة",
|
"keyboard_shortcuts.down": "للإنتقال إلى أسفل القائمة",
|
||||||
"keyboard_shortcuts.enter": "to open status",
|
"keyboard_shortcuts.enter": "to open status",
|
||||||
"keyboard_shortcuts.favourite": "للإضافة إلى المفضلة",
|
"keyboard_shortcuts.favourite": "للإضافة إلى المفضلة",
|
||||||
|
"keyboard_shortcuts.favourites": "لفتح قائمة المفضلات",
|
||||||
|
"keyboard_shortcuts.federated": "لفتح الخيط الزمني الفديرالي",
|
||||||
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
||||||
|
"keyboard_shortcuts.home": "لفتح الخيط الرئيسي",
|
||||||
"keyboard_shortcuts.hotkey": "مفتاح الإختصار",
|
"keyboard_shortcuts.hotkey": "مفتاح الإختصار",
|
||||||
"keyboard_shortcuts.legend": "لعرض هذا المفتاح",
|
"keyboard_shortcuts.legend": "لعرض هذا المفتاح",
|
||||||
|
"keyboard_shortcuts.local": "لفتح الخيط الزمني المحلي",
|
||||||
"keyboard_shortcuts.mention": "لذِكر الناشر",
|
"keyboard_shortcuts.mention": "لذِكر الناشر",
|
||||||
|
"keyboard_shortcuts.muted": "لفتح قائمة المستخدِمين المكتومين",
|
||||||
|
"keyboard_shortcuts.my_profile": "لفتح ملفك الشخصي",
|
||||||
|
"keyboard_shortcuts.notifications": "لفتح عمود الإشعارات",
|
||||||
|
"keyboard_shortcuts.pinned": "لفتح قائمة التبويقات المدبسة",
|
||||||
"keyboard_shortcuts.profile": "لفتح رابط الناشر",
|
"keyboard_shortcuts.profile": "لفتح رابط الناشر",
|
||||||
"keyboard_shortcuts.reply": "للردّ",
|
"keyboard_shortcuts.reply": "للردّ",
|
||||||
|
"keyboard_shortcuts.requests": "لفتح قائمة طلبات المتابعة",
|
||||||
"keyboard_shortcuts.search": "للتركيز على البحث",
|
"keyboard_shortcuts.search": "للتركيز على البحث",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "لعرض أو إخفاء النص مِن وراء التحذير",
|
"keyboard_shortcuts.toggle_hidden": "لعرض أو إخفاء النص مِن وراء التحذير",
|
||||||
"keyboard_shortcuts.toot": "لتحرير تبويق جديد",
|
"keyboard_shortcuts.toot": "لتحرير تبويق جديد",
|
||||||
"keyboard_shortcuts.unfocus": "لإلغاء التركيز على حقل النص أو نافذة البحث",
|
"keyboard_shortcuts.unfocus": "لإلغاء التركيز على حقل النص أو نافذة البحث",
|
||||||
|
@ -171,10 +183,10 @@
|
||||||
"missing_indicator.label": "تعذر العثور عليه",
|
"missing_indicator.label": "تعذر العثور عليه",
|
||||||
"missing_indicator.sublabel": "تعذر العثور على هذا المورد",
|
"missing_indicator.sublabel": "تعذر العثور على هذا المورد",
|
||||||
"mute_modal.hide_notifications": "هل تود إخفاء الإخطارات القادمة من هذا المستخدم ؟",
|
"mute_modal.hide_notifications": "هل تود إخفاء الإخطارات القادمة من هذا المستخدم ؟",
|
||||||
"navigation_bar.apps": "Mobile apps",
|
"navigation_bar.apps": "تطبيقات الأجهزة المحمولة",
|
||||||
"navigation_bar.blocks": "الحسابات المحجوبة",
|
"navigation_bar.blocks": "الحسابات المحجوبة",
|
||||||
"navigation_bar.community_timeline": "الخيط العام المحلي",
|
"navigation_bar.community_timeline": "الخيط العام المحلي",
|
||||||
"navigation_bar.compose": "Compose new toot",
|
"navigation_bar.compose": "تحرير تبويق جديد",
|
||||||
"navigation_bar.direct": "الرسائل المباشِرة",
|
"navigation_bar.direct": "الرسائل المباشِرة",
|
||||||
"navigation_bar.discover": "إكتشف",
|
"navigation_bar.discover": "إكتشف",
|
||||||
"navigation_bar.domain_blocks": "النطاقات المخفية",
|
"navigation_bar.domain_blocks": "النطاقات المخفية",
|
||||||
|
@ -285,7 +297,7 @@
|
||||||
"status.reblog": "رَقِّي",
|
"status.reblog": "رَقِّي",
|
||||||
"status.reblog_private": "القيام بالترقية إلى الجمهور الأصلي",
|
"status.reblog_private": "القيام بالترقية إلى الجمهور الأصلي",
|
||||||
"status.reblogged_by": "رقّاه {name}",
|
"status.reblogged_by": "رقّاه {name}",
|
||||||
"status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
|
"status.reblogs.empty": "لم يقم أي أحد بترقية هذا التبويق بعد. عندما يقوم أحدهم بذلك سوف تظهر هنا.",
|
||||||
"status.redraft": "إزالة و إعادة الصياغة",
|
"status.redraft": "إزالة و إعادة الصياغة",
|
||||||
"status.reply": "ردّ",
|
"status.reply": "ردّ",
|
||||||
"status.replyAll": "رُد على الخيط",
|
"status.replyAll": "رُد على الخيط",
|
||||||
|
@ -307,7 +319,7 @@
|
||||||
"trends.count_by_accounts": "{count} {rawCount, plural, one {person} آخرون {people}} يتحدثون",
|
"trends.count_by_accounts": "{count} {rawCount, plural, one {person} آخرون {people}} يتحدثون",
|
||||||
"ui.beforeunload": "سوف تفقد مسودتك إن تركت ماستدون.",
|
"ui.beforeunload": "سوف تفقد مسودتك إن تركت ماستدون.",
|
||||||
"upload_area.title": "إسحب ثم أفلت للرفع",
|
"upload_area.title": "إسحب ثم أفلت للرفع",
|
||||||
"upload_button.label": "إضافة وسائط",
|
"upload_button.label": "إضافة وسائط (JPEG، PNG، GIF، WebM، MP4، MOV)",
|
||||||
"upload_form.description": "وصف للمعاقين بصريا",
|
"upload_form.description": "وصف للمعاقين بصريا",
|
||||||
"upload_form.focus": "قص",
|
"upload_form.focus": "قص",
|
||||||
"upload_form.undo": "حذف",
|
"upload_form.undo": "حذف",
|
||||||
|
|
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Show boosts",
|
"home.column_settings.show_reblogs": "Show boosts",
|
||||||
"home.column_settings.show_replies": "Show replies",
|
"home.column_settings.show_replies": "Show replies",
|
||||||
"keyboard_shortcuts.back": "to navigate back",
|
"keyboard_shortcuts.back": "to navigate back",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "to boost",
|
"keyboard_shortcuts.boost": "to boost",
|
||||||
"keyboard_shortcuts.column": "to focus a status in one of the columns",
|
"keyboard_shortcuts.column": "to focus a status in one of the columns",
|
||||||
"keyboard_shortcuts.compose": "to focus the compose textarea",
|
"keyboard_shortcuts.compose": "to focus the compose textarea",
|
||||||
"keyboard_shortcuts.description": "Description",
|
"keyboard_shortcuts.description": "Description",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "to move down in the list",
|
"keyboard_shortcuts.down": "to move down in the list",
|
||||||
"keyboard_shortcuts.enter": "to open status",
|
"keyboard_shortcuts.enter": "to open status",
|
||||||
"keyboard_shortcuts.favourite": "to favourite",
|
"keyboard_shortcuts.favourite": "to favourite",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "Hotkey",
|
"keyboard_shortcuts.hotkey": "Hotkey",
|
||||||
"keyboard_shortcuts.legend": "to display this legend",
|
"keyboard_shortcuts.legend": "to display this legend",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "to mention author",
|
"keyboard_shortcuts.mention": "to mention author",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "to open author's profile",
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "to reply",
|
"keyboard_shortcuts.reply": "to reply",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "to focus search",
|
"keyboard_shortcuts.search": "to focus search",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
"keyboard_shortcuts.toot": "to start a brand new toot",
|
"keyboard_shortcuts.toot": "to start a brand new toot",
|
||||||
"keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
|
"keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
|
||||||
|
|
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Show boosts",
|
"home.column_settings.show_reblogs": "Show boosts",
|
||||||
"home.column_settings.show_replies": "Show replies",
|
"home.column_settings.show_replies": "Show replies",
|
||||||
"keyboard_shortcuts.back": "to navigate back",
|
"keyboard_shortcuts.back": "to navigate back",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "to boost",
|
"keyboard_shortcuts.boost": "to boost",
|
||||||
"keyboard_shortcuts.column": "to focus a status in one of the columns",
|
"keyboard_shortcuts.column": "to focus a status in one of the columns",
|
||||||
"keyboard_shortcuts.compose": "to focus the compose textarea",
|
"keyboard_shortcuts.compose": "to focus the compose textarea",
|
||||||
"keyboard_shortcuts.description": "Description",
|
"keyboard_shortcuts.description": "Description",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "to move down in the list",
|
"keyboard_shortcuts.down": "to move down in the list",
|
||||||
"keyboard_shortcuts.enter": "to open status",
|
"keyboard_shortcuts.enter": "to open status",
|
||||||
"keyboard_shortcuts.favourite": "to favourite",
|
"keyboard_shortcuts.favourite": "to favourite",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "Hotkey",
|
"keyboard_shortcuts.hotkey": "Hotkey",
|
||||||
"keyboard_shortcuts.legend": "to display this legend",
|
"keyboard_shortcuts.legend": "to display this legend",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "to mention author",
|
"keyboard_shortcuts.mention": "to mention author",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "to open author's profile",
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "to reply",
|
"keyboard_shortcuts.reply": "to reply",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "to focus search",
|
"keyboard_shortcuts.search": "to focus search",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
"keyboard_shortcuts.toot": "to start a brand new toot",
|
"keyboard_shortcuts.toot": "to start a brand new toot",
|
||||||
"keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
|
"keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
|
||||||
|
|
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Mostrar impulsos",
|
"home.column_settings.show_reblogs": "Mostrar impulsos",
|
||||||
"home.column_settings.show_replies": "Mostrar respostes",
|
"home.column_settings.show_replies": "Mostrar respostes",
|
||||||
"keyboard_shortcuts.back": "navegar enrera",
|
"keyboard_shortcuts.back": "navegar enrera",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "impulsar",
|
"keyboard_shortcuts.boost": "impulsar",
|
||||||
"keyboard_shortcuts.column": "per centrar un estat en una de les columnes",
|
"keyboard_shortcuts.column": "per centrar un estat en una de les columnes",
|
||||||
"keyboard_shortcuts.compose": "per centrar l'area de composició de text",
|
"keyboard_shortcuts.compose": "per centrar l'area de composició de text",
|
||||||
"keyboard_shortcuts.description": "Description",
|
"keyboard_shortcuts.description": "Description",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "per baixar en la llista",
|
"keyboard_shortcuts.down": "per baixar en la llista",
|
||||||
"keyboard_shortcuts.enter": "ampliar estat",
|
"keyboard_shortcuts.enter": "ampliar estat",
|
||||||
"keyboard_shortcuts.favourite": "afavorir",
|
"keyboard_shortcuts.favourite": "afavorir",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "Tecla d'accés directe",
|
"keyboard_shortcuts.hotkey": "Tecla d'accés directe",
|
||||||
"keyboard_shortcuts.legend": "per a mostrar aquesta llegenda",
|
"keyboard_shortcuts.legend": "per a mostrar aquesta llegenda",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "per esmentar l'autor",
|
"keyboard_shortcuts.mention": "per esmentar l'autor",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "to open author's profile",
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "respondre",
|
"keyboard_shortcuts.reply": "respondre",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "per centrar la cerca",
|
"keyboard_shortcuts.search": "per centrar la cerca",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "per a mostrar/amagar text sota CW",
|
"keyboard_shortcuts.toggle_hidden": "per a mostrar/amagar text sota CW",
|
||||||
"keyboard_shortcuts.toot": "per a començar un toot nou de trinca",
|
"keyboard_shortcuts.toot": "per a començar un toot nou de trinca",
|
||||||
"keyboard_shortcuts.unfocus": "descentrar l'area de composició de text/cerca",
|
"keyboard_shortcuts.unfocus": "descentrar l'area de composició de text/cerca",
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
"account.disclaimer_full": "Ghjè pussibule chì l’infurmazione quì sottu ùn rifletta micca u prufile sanu di l’utilizatore.",
|
"account.disclaimer_full": "Ghjè pussibule chì l’infurmazione quì sottu ùn rifletta micca u prufile sanu di l’utilizatore.",
|
||||||
"account.domain_blocked": "Duminiu piattatu",
|
"account.domain_blocked": "Duminiu piattatu",
|
||||||
"account.edit_profile": "Mudificà u prufile",
|
"account.edit_profile": "Mudificà u prufile",
|
||||||
"account.endorse": "Feature on profile",
|
"account.endorse": "Fà figurà nant'à u prufilu",
|
||||||
"account.follow": "Siguità",
|
"account.follow": "Siguità",
|
||||||
"account.followers": "Abbunati",
|
"account.followers": "Abbunati",
|
||||||
"account.followers.empty": "No one follows this user yet.",
|
"account.followers.empty": "No one follows this user yet.",
|
||||||
|
@ -29,7 +29,7 @@
|
||||||
"account.show_reblogs": "Vede spartere da @{name}",
|
"account.show_reblogs": "Vede spartere da @{name}",
|
||||||
"account.unblock": "Sbluccà @{name}",
|
"account.unblock": "Sbluccà @{name}",
|
||||||
"account.unblock_domain": "Ùn piattà più {domain}",
|
"account.unblock_domain": "Ùn piattà più {domain}",
|
||||||
"account.unendorse": "Don't feature on profile",
|
"account.unendorse": "Ùn fà figurà nant'à u prufilu",
|
||||||
"account.unfollow": "Ùn siguità più",
|
"account.unfollow": "Ùn siguità più",
|
||||||
"account.unmute": "Ùn piattà più @{name}",
|
"account.unmute": "Ùn piattà più @{name}",
|
||||||
"account.unmute_notifications": "Ùn piattà più nutificazione da @{name}",
|
"account.unmute_notifications": "Ùn piattà più nutificazione da @{name}",
|
||||||
|
@ -89,7 +89,7 @@
|
||||||
"confirmations.mute.confirm": "Piattà",
|
"confirmations.mute.confirm": "Piattà",
|
||||||
"confirmations.mute.message": "Site sicuru·a che vulete piattà @{name}?",
|
"confirmations.mute.message": "Site sicuru·a che vulete piattà @{name}?",
|
||||||
"confirmations.redraft.confirm": "Sguassà è riscrive",
|
"confirmations.redraft.confirm": "Sguassà è riscrive",
|
||||||
"confirmations.redraft.message": "Site sicuru·a chè vulete sguassà stu statutu è riscrivelu? Tutti i favuriti, risposte è spartere saranu persi.",
|
"confirmations.redraft.message": "Site sicuru·a chè vulete sguassà stu statutu è riscrivelu? I favuriti è spartere saranu persi, è e risposte diventeranu orfane.",
|
||||||
"confirmations.unfollow.confirm": "Disabbunassi",
|
"confirmations.unfollow.confirm": "Disabbunassi",
|
||||||
"confirmations.unfollow.message": "Site sicuru·a ch'ùn vulete più siguità @{name}?",
|
"confirmations.unfollow.message": "Site sicuru·a ch'ùn vulete più siguità @{name}?",
|
||||||
"embed.instructions": "Integrà stu statutu à u vostru situ cù u codice quì sottu.",
|
"embed.instructions": "Integrà stu statutu à u vostru situ cù u codice quì sottu.",
|
||||||
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Vede e spartere",
|
"home.column_settings.show_reblogs": "Vede e spartere",
|
||||||
"home.column_settings.show_replies": "Vede e risposte",
|
"home.column_settings.show_replies": "Vede e risposte",
|
||||||
"keyboard_shortcuts.back": "rivultà",
|
"keyboard_shortcuts.back": "rivultà",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "sparte",
|
"keyboard_shortcuts.boost": "sparte",
|
||||||
"keyboard_shortcuts.column": "fucalizà un statutu indè una colonna",
|
"keyboard_shortcuts.column": "fucalizà un statutu indè una colonna",
|
||||||
"keyboard_shortcuts.compose": "fucalizà nant'à l'area di ridazzione",
|
"keyboard_shortcuts.compose": "fucalizà nant'à l'area di ridazzione",
|
||||||
"keyboard_shortcuts.description": "Descrizzione",
|
"keyboard_shortcuts.description": "Descrizzione",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "falà indè a lista",
|
"keyboard_shortcuts.down": "falà indè a lista",
|
||||||
"keyboard_shortcuts.enter": "apre u statutu",
|
"keyboard_shortcuts.enter": "apre u statutu",
|
||||||
"keyboard_shortcuts.favourite": "aghjunghje à i favuriti",
|
"keyboard_shortcuts.favourite": "aghjunghje à i favuriti",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Accorte cù a tastera",
|
"keyboard_shortcuts.heading": "Accorte cù a tastera",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "Accorta",
|
"keyboard_shortcuts.hotkey": "Accorta",
|
||||||
"keyboard_shortcuts.legend": "vede a legenda",
|
"keyboard_shortcuts.legend": "vede a legenda",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "mintuvà l'autore",
|
"keyboard_shortcuts.mention": "mintuvà l'autore",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "per apre u prufile di l'autore",
|
"keyboard_shortcuts.profile": "per apre u prufile di l'autore",
|
||||||
"keyboard_shortcuts.reply": "risponde",
|
"keyboard_shortcuts.reply": "risponde",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "fucalizà nant'à l'area di circata",
|
"keyboard_shortcuts.search": "fucalizà nant'à l'area di circata",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "vede/piattà u testu daretu à l'avertimentu CW",
|
"keyboard_shortcuts.toggle_hidden": "vede/piattà u testu daretu à l'avertimentu CW",
|
||||||
"keyboard_shortcuts.toot": "scrive un novu statutu",
|
"keyboard_shortcuts.toot": "scrive un novu statutu",
|
||||||
"keyboard_shortcuts.unfocus": "ùn fucalizà più l'area di testu",
|
"keyboard_shortcuts.unfocus": "ùn fucalizà più l'area di testu",
|
||||||
|
@ -171,10 +183,10 @@
|
||||||
"missing_indicator.label": "Micca trovu",
|
"missing_indicator.label": "Micca trovu",
|
||||||
"missing_indicator.sublabel": "Ùn era micca pussivule di truvà sta risorsa",
|
"missing_indicator.sublabel": "Ùn era micca pussivule di truvà sta risorsa",
|
||||||
"mute_modal.hide_notifications": "Piattà nutificazione da st'utilizatore?",
|
"mute_modal.hide_notifications": "Piattà nutificazione da st'utilizatore?",
|
||||||
"navigation_bar.apps": "Mobile apps",
|
"navigation_bar.apps": "Applicazione per u telefuninu",
|
||||||
"navigation_bar.blocks": "Utilizatori bluccati",
|
"navigation_bar.blocks": "Utilizatori bluccati",
|
||||||
"navigation_bar.community_timeline": "Linea pubblica lucale",
|
"navigation_bar.community_timeline": "Linea pubblica lucale",
|
||||||
"navigation_bar.compose": "Compose new toot",
|
"navigation_bar.compose": "Scrive un novu statutu",
|
||||||
"navigation_bar.direct": "Missaghji diretti",
|
"navigation_bar.direct": "Missaghji diretti",
|
||||||
"navigation_bar.discover": "Scopre",
|
"navigation_bar.discover": "Scopre",
|
||||||
"navigation_bar.domain_blocks": "Duminii piattati",
|
"navigation_bar.domain_blocks": "Duminii piattati",
|
||||||
|
@ -268,7 +280,7 @@
|
||||||
"status.cancel_reblog_private": "Ùn sparte più",
|
"status.cancel_reblog_private": "Ùn sparte più",
|
||||||
"status.cannot_reblog": "Stu statutu ùn pò micca esse spartutu",
|
"status.cannot_reblog": "Stu statutu ùn pò micca esse spartutu",
|
||||||
"status.delete": "Toglie",
|
"status.delete": "Toglie",
|
||||||
"status.detailed_status": "Detailed conversation view",
|
"status.detailed_status": "Vista in ditagliu di a cunversazione",
|
||||||
"status.direct": "Mandà un missaghju @{name}",
|
"status.direct": "Mandà un missaghju @{name}",
|
||||||
"status.embed": "Integrà",
|
"status.embed": "Integrà",
|
||||||
"status.favourite": "Aghjunghje à i favuriti",
|
"status.favourite": "Aghjunghje à i favuriti",
|
||||||
|
@ -307,7 +319,7 @@
|
||||||
"trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} parlanu",
|
"trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} parlanu",
|
||||||
"ui.beforeunload": "A bruttacopia sarà persa s'ellu hè chjosu Mastodon.",
|
"ui.beforeunload": "A bruttacopia sarà persa s'ellu hè chjosu Mastodon.",
|
||||||
"upload_area.title": "Drag & drop per caricà un fugliale",
|
"upload_area.title": "Drag & drop per caricà un fugliale",
|
||||||
"upload_button.label": "Aghjunghje un media",
|
"upload_button.label": "Aghjunghje un media (JPEG, PNG, GIF, WebM, MP4)",
|
||||||
"upload_form.description": "Discrive per i malvistosi",
|
"upload_form.description": "Discrive per i malvistosi",
|
||||||
"upload_form.focus": "Riquatrà",
|
"upload_form.focus": "Riquatrà",
|
||||||
"upload_form.undo": "Sguassà",
|
"upload_form.undo": "Sguassà",
|
||||||
|
|
|
@ -10,9 +10,9 @@
|
||||||
"account.endorse": "Představit na profilu",
|
"account.endorse": "Představit na profilu",
|
||||||
"account.follow": "Sleduj",
|
"account.follow": "Sleduj",
|
||||||
"account.followers": "Sledovatelé",
|
"account.followers": "Sledovatelé",
|
||||||
"account.followers.empty": "No one follows this user yet.",
|
"account.followers.empty": "Tohoto uživatele ještě nikdo nesleduje.",
|
||||||
"account.follows": "Sleduje",
|
"account.follows": "Sleduje",
|
||||||
"account.follows.empty": "This user doesn't follow anyone yet.",
|
"account.follows.empty": "Tento uživatel ještě nikoho nesleduje.",
|
||||||
"account.follows_you": "Sleduje vás",
|
"account.follows_you": "Sleduje vás",
|
||||||
"account.hide_reblogs": "Skrýt boosty od uživatele @{name}",
|
"account.hide_reblogs": "Skrýt boosty od uživatele @{name}",
|
||||||
"account.media": "Média",
|
"account.media": "Média",
|
||||||
|
@ -89,7 +89,7 @@
|
||||||
"confirmations.mute.confirm": "Ignorovat",
|
"confirmations.mute.confirm": "Ignorovat",
|
||||||
"confirmations.mute.message": "Jste si jistý/á, že chcete ignorovat uživatele {name}?",
|
"confirmations.mute.message": "Jste si jistý/á, že chcete ignorovat uživatele {name}?",
|
||||||
"confirmations.redraft.confirm": "Vymazat a přepsat",
|
"confirmations.redraft.confirm": "Vymazat a přepsat",
|
||||||
"confirmations.redraft.message": "Jste si jistý/á, že chcete vymazat a přepsat tento příspěvek? Ztratíte všechny jeho odpovědi, boosty a oblíbení.",
|
"confirmations.redraft.message": "Jste si jistý/á, že chcete vymazat a přepsat tento příspěvek? Oblíbení a boosty budou ztraceny a odpovědi na původní příspěvek budou opuštěny.",
|
||||||
"confirmations.unfollow.confirm": "Přestat sledovat",
|
"confirmations.unfollow.confirm": "Přestat sledovat",
|
||||||
"confirmations.unfollow.message": "jste si jistý/á, že chcete přestat sledovat uživatele {name}?",
|
"confirmations.unfollow.message": "jste si jistý/á, že chcete přestat sledovat uživatele {name}?",
|
||||||
"embed.instructions": "Pro přidání příspěvku na vaši webovou stránku zkopírujte níže uvedený kód.",
|
"embed.instructions": "Pro přidání příspěvku na vaši webovou stránku zkopírujte níže uvedený kód.",
|
||||||
|
@ -108,19 +108,19 @@
|
||||||
"emoji_button.search_results": "Výsledky hledání",
|
"emoji_button.search_results": "Výsledky hledání",
|
||||||
"emoji_button.symbols": "Symboly",
|
"emoji_button.symbols": "Symboly",
|
||||||
"emoji_button.travel": "Cestování a místa",
|
"emoji_button.travel": "Cestování a místa",
|
||||||
"empty_column.blocks": "You haven't blocked any users yet.",
|
"empty_column.blocks": "Ještě jste nezablokoval/a žádného uživatele.",
|
||||||
"empty_column.community": "Místní časová osa je prázdná. Napište něco veřejně a rozhýbejte to tu!",
|
"empty_column.community": "Místní časová osa je prázdná. Napište něco veřejně a rozhýbejte to tu!",
|
||||||
"empty_column.direct": "Ještě nemáte žádné přímé zprávy. Pokud nějakou pošlete nebo dostanete, zobrazí se zde.",
|
"empty_column.direct": "Ještě nemáte žádné přímé zprávy. Pokud nějakou pošlete nebo dostanete, zobrazí se zde.",
|
||||||
"empty_column.domain_blocks": "There are no hidden domains yet.",
|
"empty_column.domain_blocks": "Ještě zde nejsou žádné skryté domény.",
|
||||||
"empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
|
"empty_column.favourited_statuses": "Ještě nemáte žádné oblíbené tooty. Pokud si nějaký oblíbíte, zobrazí se zde.",
|
||||||
"empty_column.favourites": "No one has favourited this toot yet. When someone does, they will show up here.",
|
"empty_column.favourites": "Tento toot si ještě nikdo neoblíbil. Pokud to někdo udělá, zobrazí se zde.",
|
||||||
"empty_column.follow_requests": "You don't have any follow requests yet. When you receive one, it will show up here.",
|
"empty_column.follow_requests": "Ještě nemáte žádné požadavky o sledování. Pokud nějaký obdržíte, zobrazí se zde.",
|
||||||
"empty_column.hashtag": "Pod tímto hashtagem ještě nic není.",
|
"empty_column.hashtag": "Pod tímto hashtagem ještě nic není.",
|
||||||
"empty_column.home": "Vaše domovská časová osa je prázdná! Začněte navštívením {public} nebo použijte hledání a seznamte se s dalšími uživateli.",
|
"empty_column.home": "Vaše domovská časová osa je prázdná! Začněte navštívením {public} nebo použijte hledání a seznamte se s dalšími uživateli.",
|
||||||
"empty_column.home.public_timeline": "veřejné časové osy",
|
"empty_column.home.public_timeline": "veřejné časové osy",
|
||||||
"empty_column.list": "V tomto seznamu ještě nic není. Pokud budou členové tohoto seznamu psát nové příspěvky, objeví se zde.",
|
"empty_column.list": "V tomto seznamu ještě nic není. Pokud budou členové tohoto seznamu psát nové příspěvky, objeví se zde.",
|
||||||
"empty_column.lists": "You don't have any lists yet. When you create one, it will show up here.",
|
"empty_column.lists": "Ještě nemáte žádný seznam. Pokud nějaký vytvoříte, zobrazí se zde.",
|
||||||
"empty_column.mutes": "You haven't muted any users yet.",
|
"empty_column.mutes": "Ještě neignorujete žádné uživatele.",
|
||||||
"empty_column.notifications": "Ještě nemáte žádná oznámení. Začněte konverzaci komunikováním s ostatními.",
|
"empty_column.notifications": "Ještě nemáte žádná oznámení. Začněte konverzaci komunikováním s ostatními.",
|
||||||
"empty_column.public": "Tady nic není! Napište něco veřejně, nebo manuálně začněte sledovat uživatele z jiných instancí, aby tu něco přibylo",
|
"empty_column.public": "Tady nic není! Napište něco veřejně, nebo manuálně začněte sledovat uživatele z jiných instancí, aby tu něco přibylo",
|
||||||
"follow_request.authorize": "Autorizovat",
|
"follow_request.authorize": "Autorizovat",
|
||||||
|
@ -137,21 +137,33 @@
|
||||||
"home.column_settings.show_reblogs": "Zobrazit boosty",
|
"home.column_settings.show_reblogs": "Zobrazit boosty",
|
||||||
"home.column_settings.show_replies": "Zobrazit odpovědi",
|
"home.column_settings.show_replies": "Zobrazit odpovědi",
|
||||||
"keyboard_shortcuts.back": "k návratu zpět",
|
"keyboard_shortcuts.back": "k návratu zpět",
|
||||||
|
"keyboard_shortcuts.blocked": "k otevření seznamu blokovaných uživatelů",
|
||||||
"keyboard_shortcuts.boost": "k boostnutí",
|
"keyboard_shortcuts.boost": "k boostnutí",
|
||||||
"keyboard_shortcuts.column": "k zaměření na příspěvek v jednom ze sloupců",
|
"keyboard_shortcuts.column": "k zaměření na příspěvek v jednom ze sloupců",
|
||||||
"keyboard_shortcuts.compose": "k zaměření na psací prostor",
|
"keyboard_shortcuts.compose": "k zaměření na psací prostor",
|
||||||
"keyboard_shortcuts.description": "Popis",
|
"keyboard_shortcuts.description": "Popis",
|
||||||
|
"keyboard_shortcuts.direct": "k otevření sloupce s přímými zprávami",
|
||||||
"keyboard_shortcuts.down": "k přesunutí dolů v seznamu",
|
"keyboard_shortcuts.down": "k přesunutí dolů v seznamu",
|
||||||
"keyboard_shortcuts.enter": "k otevření příspěvku",
|
"keyboard_shortcuts.enter": "k otevření příspěvku",
|
||||||
"keyboard_shortcuts.favourite": "k oblíbení",
|
"keyboard_shortcuts.favourite": "k oblíbení",
|
||||||
|
"keyboard_shortcuts.favourites": "k otevření seznamu oblíbených",
|
||||||
|
"keyboard_shortcuts.federated": "k otevření federované časové osy",
|
||||||
"keyboard_shortcuts.heading": "Klávesové zkratky",
|
"keyboard_shortcuts.heading": "Klávesové zkratky",
|
||||||
|
"keyboard_shortcuts.home": "k otevření domovské časové osy",
|
||||||
"keyboard_shortcuts.hotkey": "Horká klávesa",
|
"keyboard_shortcuts.hotkey": "Horká klávesa",
|
||||||
"keyboard_shortcuts.legend": "k zobrazení této legendy",
|
"keyboard_shortcuts.legend": "k zobrazení této legendy",
|
||||||
|
"keyboard_shortcuts.local": "k otevření místní časové osy",
|
||||||
"keyboard_shortcuts.mention": "ke zmínění autora",
|
"keyboard_shortcuts.mention": "ke zmínění autora",
|
||||||
|
"keyboard_shortcuts.muted": "k otevření seznamu ignorovaných uživatelů",
|
||||||
|
"keyboard_shortcuts.my_profile": "k otevření vašeho profilu",
|
||||||
|
"keyboard_shortcuts.notifications": "k otevření sloupce s oznámeními",
|
||||||
|
"keyboard_shortcuts.pinned": "k otevření seznamu připnutých tootů",
|
||||||
"keyboard_shortcuts.profile": "k otevření autorova profilu",
|
"keyboard_shortcuts.profile": "k otevření autorova profilu",
|
||||||
"keyboard_shortcuts.reply": "k odpovězení",
|
"keyboard_shortcuts.reply": "k odpovězení",
|
||||||
|
"keyboard_shortcuts.requests": "k otevření seznamu požadavků o sledování",
|
||||||
"keyboard_shortcuts.search": "k zaměření na vyhledávání",
|
"keyboard_shortcuts.search": "k zaměření na vyhledávání",
|
||||||
"keyboard_shortcuts.toggle_hidden": "k zobrazení/skrytí textu za CW",
|
"keyboard_shortcuts.start": "k otevření sloupce \"začít\"",
|
||||||
|
"keyboard_shortcuts.toggle_hidden": "k zobrazení/skrytí textu za varováním o obsahu",
|
||||||
"keyboard_shortcuts.toot": "k napsání úplně nového tootu",
|
"keyboard_shortcuts.toot": "k napsání úplně nového tootu",
|
||||||
"keyboard_shortcuts.unfocus": "ke zrušení soustředění na psací prostor/hledání",
|
"keyboard_shortcuts.unfocus": "ke zrušení soustředění na psací prostor/hledání",
|
||||||
"keyboard_shortcuts.up": "k posunutí nahoru v seznamu",
|
"keyboard_shortcuts.up": "k posunutí nahoru v seznamu",
|
||||||
|
@ -174,7 +186,7 @@
|
||||||
"navigation_bar.apps": "Mobilní aplikace",
|
"navigation_bar.apps": "Mobilní aplikace",
|
||||||
"navigation_bar.blocks": "Blokovaní uživatelé",
|
"navigation_bar.blocks": "Blokovaní uživatelé",
|
||||||
"navigation_bar.community_timeline": "Místní časová osa",
|
"navigation_bar.community_timeline": "Místní časová osa",
|
||||||
"navigation_bar.compose": "Compose new toot",
|
"navigation_bar.compose": "Vytvořit nový toot",
|
||||||
"navigation_bar.direct": "Přímé zprávy",
|
"navigation_bar.direct": "Přímé zprávy",
|
||||||
"navigation_bar.discover": "Objevujte",
|
"navigation_bar.discover": "Objevujte",
|
||||||
"navigation_bar.domain_blocks": "Skryté domény",
|
"navigation_bar.domain_blocks": "Skryté domény",
|
||||||
|
@ -268,7 +280,7 @@
|
||||||
"status.cancel_reblog_private": "Zrušit boost",
|
"status.cancel_reblog_private": "Zrušit boost",
|
||||||
"status.cannot_reblog": "Tento příspěvek nemůže být boostnutý",
|
"status.cannot_reblog": "Tento příspěvek nemůže být boostnutý",
|
||||||
"status.delete": "Delete",
|
"status.delete": "Delete",
|
||||||
"status.detailed_status": "Detailed conversation view",
|
"status.detailed_status": "Detailní zobrazení konverzace",
|
||||||
"status.direct": "Poslat přímou zprávu uživateli @{name}",
|
"status.direct": "Poslat přímou zprávu uživateli @{name}",
|
||||||
"status.embed": "Vložit",
|
"status.embed": "Vložit",
|
||||||
"status.favourite": "Oblíbit",
|
"status.favourite": "Oblíbit",
|
||||||
|
@ -285,7 +297,7 @@
|
||||||
"status.reblog": "Boostnout",
|
"status.reblog": "Boostnout",
|
||||||
"status.reblog_private": "Boostnout původnímu publiku",
|
"status.reblog_private": "Boostnout původnímu publiku",
|
||||||
"status.reblogged_by": "{name} boostnul/a",
|
"status.reblogged_by": "{name} boostnul/a",
|
||||||
"status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
|
"status.reblogs.empty": "Tento toot ještě nikdo neboostnul. Pokud to někdo udělá, zobrazí se zde.",
|
||||||
"status.redraft": "Vymazat a přepsat",
|
"status.redraft": "Vymazat a přepsat",
|
||||||
"status.reply": "Odpovědět",
|
"status.reply": "Odpovědět",
|
||||||
"status.replyAll": "Odpovědět na vlákno",
|
"status.replyAll": "Odpovědět na vlákno",
|
||||||
|
@ -307,7 +319,7 @@
|
||||||
"trends.count_by_accounts": "{count} {rawCount, plural, one {člověk} other {lidí}} diskutuje",
|
"trends.count_by_accounts": "{count} {rawCount, plural, one {člověk} other {lidí}} diskutuje",
|
||||||
"ui.beforeunload": "Váš koncept se ztratí, pokud Mastodon opustíte.",
|
"ui.beforeunload": "Váš koncept se ztratí, pokud Mastodon opustíte.",
|
||||||
"upload_area.title": "Přetažením nahrajete",
|
"upload_area.title": "Přetažením nahrajete",
|
||||||
"upload_button.label": "Přidat média",
|
"upload_button.label": "Přidat média (JPEG, PNG, GIF, WebM, MP4, MOV)",
|
||||||
"upload_form.description": "Popis pro zrakově postižené",
|
"upload_form.description": "Popis pro zrakově postižené",
|
||||||
"upload_form.focus": "Vystřihnout",
|
"upload_form.focus": "Vystřihnout",
|
||||||
"upload_form.undo": "Smazat",
|
"upload_form.undo": "Smazat",
|
||||||
|
|
336
app/javascript/mastodon/locales/cy.json
Normal file
336
app/javascript/mastodon/locales/cy.json
Normal file
|
@ -0,0 +1,336 @@
|
||||||
|
{
|
||||||
|
"account.badges.bot": "Bot",
|
||||||
|
"account.block": "Block @{name}",
|
||||||
|
"account.block_domain": "Hide everything from {domain}",
|
||||||
|
"account.blocked": "Blocked",
|
||||||
|
"account.direct": "Direct message @{name}",
|
||||||
|
"account.disclaimer_full": "Information below may reflect the user's profile incompletely.",
|
||||||
|
"account.domain_blocked": "Domain hidden",
|
||||||
|
"account.edit_profile": "Edit profile",
|
||||||
|
"account.endorse": "Feature on profile",
|
||||||
|
"account.follow": "Follow",
|
||||||
|
"account.followers": "Followers",
|
||||||
|
"account.followers.empty": "No one follows this user yet.",
|
||||||
|
"account.follows": "Follows",
|
||||||
|
"account.follows.empty": "This user doesn't follow anyone yet.",
|
||||||
|
"account.follows_you": "Follows you",
|
||||||
|
"account.hide_reblogs": "Hide boosts from @{name}",
|
||||||
|
"account.media": "Media",
|
||||||
|
"account.mention": "Mention @{name}",
|
||||||
|
"account.moved_to": "{name} has moved to:",
|
||||||
|
"account.mute": "Mute @{name}",
|
||||||
|
"account.mute_notifications": "Mute notifications from @{name}",
|
||||||
|
"account.muted": "Muted",
|
||||||
|
"account.posts": "Toots",
|
||||||
|
"account.posts_with_replies": "Toots and replies",
|
||||||
|
"account.report": "Report @{name}",
|
||||||
|
"account.requested": "Awaiting approval. Click to cancel follow request",
|
||||||
|
"account.share": "Share @{name}'s profile",
|
||||||
|
"account.show_reblogs": "Show boosts from @{name}",
|
||||||
|
"account.unblock": "Unblock @{name}",
|
||||||
|
"account.unblock_domain": "Unhide {domain}",
|
||||||
|
"account.unendorse": "Don't feature on profile",
|
||||||
|
"account.unfollow": "Unfollow",
|
||||||
|
"account.unmute": "Unmute @{name}",
|
||||||
|
"account.unmute_notifications": "Unmute notifications from @{name}",
|
||||||
|
"account.view_full_profile": "View full profile",
|
||||||
|
"alert.unexpected.message": "An unexpected error occurred.",
|
||||||
|
"alert.unexpected.title": "Oops!",
|
||||||
|
"boost_modal.combo": "You can press {combo} to skip this next time",
|
||||||
|
"bundle_column_error.body": "Something went wrong while loading this component.",
|
||||||
|
"bundle_column_error.retry": "Try again",
|
||||||
|
"bundle_column_error.title": "Network error",
|
||||||
|
"bundle_modal_error.close": "Close",
|
||||||
|
"bundle_modal_error.message": "Something went wrong while loading this component.",
|
||||||
|
"bundle_modal_error.retry": "Try again",
|
||||||
|
"column.blocks": "Blocked users",
|
||||||
|
"column.community": "Local timeline",
|
||||||
|
"column.direct": "Direct messages",
|
||||||
|
"column.domain_blocks": "Hidden domains",
|
||||||
|
"column.favourites": "Favourites",
|
||||||
|
"column.follow_requests": "Follow requests",
|
||||||
|
"column.home": "Home",
|
||||||
|
"column.lists": "Lists",
|
||||||
|
"column.mutes": "Muted users",
|
||||||
|
"column.notifications": "Notifications",
|
||||||
|
"column.pins": "Pinned toot",
|
||||||
|
"column.public": "Federated timeline",
|
||||||
|
"column_back_button.label": "Back",
|
||||||
|
"column_header.hide_settings": "Hide settings",
|
||||||
|
"column_header.moveLeft_settings": "Move column to the left",
|
||||||
|
"column_header.moveRight_settings": "Move column to the right",
|
||||||
|
"column_header.pin": "Pin",
|
||||||
|
"column_header.show_settings": "Show settings",
|
||||||
|
"column_header.unpin": "Unpin",
|
||||||
|
"column_subheading.settings": "Settings",
|
||||||
|
"community.column_settings.media_only": "Media Only",
|
||||||
|
"compose_form.direct_message_warning": "This toot will only be sent to all the mentioned users.",
|
||||||
|
"compose_form.direct_message_warning_learn_more": "Learn more",
|
||||||
|
"compose_form.hashtag_warning": "This toot won't be listed under any hashtag as it is unlisted. Only public toots can be searched by hashtag.",
|
||||||
|
"compose_form.lock_disclaimer": "Your account is not {locked}. Anyone can follow you to view your follower-only posts.",
|
||||||
|
"compose_form.lock_disclaimer.lock": "locked",
|
||||||
|
"compose_form.placeholder": "What is on your mind?",
|
||||||
|
"compose_form.publish": "Toot",
|
||||||
|
"compose_form.publish_loud": "{publish}!",
|
||||||
|
"compose_form.sensitive.marked": "Media is marked as sensitive",
|
||||||
|
"compose_form.sensitive.unmarked": "Media is not marked as sensitive",
|
||||||
|
"compose_form.spoiler.marked": "Text is hidden behind warning",
|
||||||
|
"compose_form.spoiler.unmarked": "Text is not hidden",
|
||||||
|
"compose_form.spoiler_placeholder": "Write your warning here",
|
||||||
|
"confirmation_modal.cancel": "Cancel",
|
||||||
|
"confirmations.block.confirm": "Block",
|
||||||
|
"confirmations.block.message": "Are you sure you want to block {name}?",
|
||||||
|
"confirmations.delete.confirm": "Delete",
|
||||||
|
"confirmations.delete.message": "Are you sure you want to delete this status?",
|
||||||
|
"confirmations.delete_list.confirm": "Delete",
|
||||||
|
"confirmations.delete_list.message": "Are you sure you want to permanently delete this list?",
|
||||||
|
"confirmations.domain_block.confirm": "Hide entire domain",
|
||||||
|
"confirmations.domain_block.message": "Are you really, really sure you want to block the entire {domain}? In most cases a few targeted blocks or mutes are sufficient and preferable. You will not see content from that domain in any public timelines or your notifications. Your followers from that domain will be removed.",
|
||||||
|
"confirmations.mute.confirm": "Mute",
|
||||||
|
"confirmations.mute.message": "Are you sure you want to mute {name}?",
|
||||||
|
"confirmations.redraft.confirm": "Delete & redraft",
|
||||||
|
"confirmations.redraft.message": "Are you sure you want to delete this status and re-draft it? Favourites and boosts will be lost, and replies to the original post will be orphaned.",
|
||||||
|
"confirmations.unfollow.confirm": "Unfollow",
|
||||||
|
"confirmations.unfollow.message": "Are you sure you want to unfollow {name}?",
|
||||||
|
"embed.instructions": "Embed this status on your website by copying the code below.",
|
||||||
|
"embed.preview": "Here is what it will look like:",
|
||||||
|
"emoji_button.activity": "Activity",
|
||||||
|
"emoji_button.custom": "Custom",
|
||||||
|
"emoji_button.flags": "Flags",
|
||||||
|
"emoji_button.food": "Food & Drink",
|
||||||
|
"emoji_button.label": "Insert emoji",
|
||||||
|
"emoji_button.nature": "Nature",
|
||||||
|
"emoji_button.not_found": "No emojos!! (╯°□°)╯︵ ┻━┻",
|
||||||
|
"emoji_button.objects": "Objects",
|
||||||
|
"emoji_button.people": "People",
|
||||||
|
"emoji_button.recent": "Frequently used",
|
||||||
|
"emoji_button.search": "Search...",
|
||||||
|
"emoji_button.search_results": "Search results",
|
||||||
|
"emoji_button.symbols": "Symbols",
|
||||||
|
"emoji_button.travel": "Travel & Places",
|
||||||
|
"empty_column.blocks": "You haven't blocked any users yet.",
|
||||||
|
"empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!",
|
||||||
|
"empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
|
||||||
|
"empty_column.domain_blocks": "There are no hidden domains yet.",
|
||||||
|
"empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
|
||||||
|
"empty_column.favourites": "No one has favourited this toot yet. When someone does, they will show up here.",
|
||||||
|
"empty_column.follow_requests": "You don't have any follow requests yet. When you receive one, it will show up here.",
|
||||||
|
"empty_column.hashtag": "There is nothing in this hashtag yet.",
|
||||||
|
"empty_column.home": "Your home timeline is empty! Visit {public} or use search to get started and meet other users.",
|
||||||
|
"empty_column.home.public_timeline": "the public timeline",
|
||||||
|
"empty_column.list": "There is nothing in this list yet. When members of this list post new statuses, they will appear here.",
|
||||||
|
"empty_column.lists": "You don't have any lists yet. When you create one, it will show up here.",
|
||||||
|
"empty_column.mutes": "You haven't muted any users yet.",
|
||||||
|
"empty_column.notifications": "You don't have any notifications yet. Interact with others to start the conversation.",
|
||||||
|
"empty_column.public": "There is nothing here! Write something publicly, or manually follow users from other instances to fill it up",
|
||||||
|
"follow_request.authorize": "Authorize",
|
||||||
|
"follow_request.reject": "Reject",
|
||||||
|
"getting_started.developers": "Developers",
|
||||||
|
"getting_started.documentation": "Documentation",
|
||||||
|
"getting_started.find_friends": "Find friends from Twitter",
|
||||||
|
"getting_started.heading": "Getting started",
|
||||||
|
"getting_started.invite": "Invite people",
|
||||||
|
"getting_started.open_source_notice": "Mastodon is open source software. You can contribute or report issues on GitHub at {github}.",
|
||||||
|
"getting_started.security": "Security",
|
||||||
|
"getting_started.terms": "Terms of service",
|
||||||
|
"home.column_settings.basic": "Basic",
|
||||||
|
"home.column_settings.show_reblogs": "Show boosts",
|
||||||
|
"home.column_settings.show_replies": "Show replies",
|
||||||
|
"keyboard_shortcuts.back": "to navigate back",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
|
"keyboard_shortcuts.boost": "to boost",
|
||||||
|
"keyboard_shortcuts.column": "to focus a status in one of the columns",
|
||||||
|
"keyboard_shortcuts.compose": "to focus the compose textarea",
|
||||||
|
"keyboard_shortcuts.description": "Description",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
|
"keyboard_shortcuts.down": "to move down in the list",
|
||||||
|
"keyboard_shortcuts.enter": "to open status",
|
||||||
|
"keyboard_shortcuts.favourite": "to favourite",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
|
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
|
"keyboard_shortcuts.hotkey": "Hotkey",
|
||||||
|
"keyboard_shortcuts.legend": "to display this legend",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
|
"keyboard_shortcuts.mention": "to mention author",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
|
"keyboard_shortcuts.reply": "to reply",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
|
"keyboard_shortcuts.search": "to focus search",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
|
"keyboard_shortcuts.toot": "to start a brand new toot",
|
||||||
|
"keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
|
||||||
|
"keyboard_shortcuts.up": "to move up in the list",
|
||||||
|
"lightbox.close": "Close",
|
||||||
|
"lightbox.next": "Next",
|
||||||
|
"lightbox.previous": "Previous",
|
||||||
|
"lists.account.add": "Add to list",
|
||||||
|
"lists.account.remove": "Remove from list",
|
||||||
|
"lists.delete": "Delete list",
|
||||||
|
"lists.edit": "Edit list",
|
||||||
|
"lists.new.create": "Add list",
|
||||||
|
"lists.new.title_placeholder": "New list title",
|
||||||
|
"lists.search": "Search among people you follow",
|
||||||
|
"lists.subheading": "Your lists",
|
||||||
|
"loading_indicator.label": "Loading...",
|
||||||
|
"media_gallery.toggle_visible": "Toggle visibility",
|
||||||
|
"missing_indicator.label": "Not found",
|
||||||
|
"missing_indicator.sublabel": "This resource could not be found",
|
||||||
|
"mute_modal.hide_notifications": "Hide notifications from this user?",
|
||||||
|
"navigation_bar.apps": "Mobile apps",
|
||||||
|
"navigation_bar.blocks": "Blocked users",
|
||||||
|
"navigation_bar.community_timeline": "Local timeline",
|
||||||
|
"navigation_bar.compose": "Compose new toot",
|
||||||
|
"navigation_bar.direct": "Direct messages",
|
||||||
|
"navigation_bar.discover": "Discover",
|
||||||
|
"navigation_bar.domain_blocks": "Hidden domains",
|
||||||
|
"navigation_bar.edit_profile": "Edit profile",
|
||||||
|
"navigation_bar.favourites": "Favourites",
|
||||||
|
"navigation_bar.filters": "Muted words",
|
||||||
|
"navigation_bar.follow_requests": "Follow requests",
|
||||||
|
"navigation_bar.info": "About this instance",
|
||||||
|
"navigation_bar.keyboard_shortcuts": "Hotkeys",
|
||||||
|
"navigation_bar.lists": "Lists",
|
||||||
|
"navigation_bar.logout": "Logout",
|
||||||
|
"navigation_bar.mutes": "Muted users",
|
||||||
|
"navigation_bar.personal": "Personal",
|
||||||
|
"navigation_bar.pins": "Pinned toots",
|
||||||
|
"navigation_bar.preferences": "Preferences",
|
||||||
|
"navigation_bar.public_timeline": "Federated timeline",
|
||||||
|
"navigation_bar.security": "Security",
|
||||||
|
"notification.favourite": "{name} favourited your status",
|
||||||
|
"notification.follow": "{name} followed you",
|
||||||
|
"notification.mention": "{name} mentioned you",
|
||||||
|
"notification.reblog": "{name} boosted your status",
|
||||||
|
"notifications.clear": "Clear notifications",
|
||||||
|
"notifications.clear_confirmation": "Are you sure you want to permanently clear all your notifications?",
|
||||||
|
"notifications.column_settings.alert": "Desktop notifications",
|
||||||
|
"notifications.column_settings.favourite": "Favourites:",
|
||||||
|
"notifications.column_settings.follow": "New followers:",
|
||||||
|
"notifications.column_settings.mention": "Mentions:",
|
||||||
|
"notifications.column_settings.push": "Push notifications",
|
||||||
|
"notifications.column_settings.push_meta": "This device",
|
||||||
|
"notifications.column_settings.reblog": "Boosts:",
|
||||||
|
"notifications.column_settings.show": "Show in column",
|
||||||
|
"notifications.column_settings.sound": "Play sound",
|
||||||
|
"notifications.group": "{count} notifications",
|
||||||
|
"onboarding.done": "Done",
|
||||||
|
"onboarding.next": "Next",
|
||||||
|
"onboarding.page_five.public_timelines": "The local timeline shows public posts from everyone on {domain}. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new people.",
|
||||||
|
"onboarding.page_four.home": "The home timeline shows posts from people you follow.",
|
||||||
|
"onboarding.page_four.notifications": "The notifications column shows when someone interacts with you.",
|
||||||
|
"onboarding.page_one.federation": "Mastodon is a network of independent servers joining up to make one larger social network. We call these servers instances.",
|
||||||
|
"onboarding.page_one.full_handle": "Your full handle",
|
||||||
|
"onboarding.page_one.handle_hint": "This is what you would tell your friends to search for.",
|
||||||
|
"onboarding.page_one.welcome": "Welcome to Mastodon!",
|
||||||
|
"onboarding.page_six.admin": "Your instance's admin is {admin}.",
|
||||||
|
"onboarding.page_six.almost_done": "Almost done...",
|
||||||
|
"onboarding.page_six.appetoot": "Bon Appetoot!",
|
||||||
|
"onboarding.page_six.apps_available": "There are {apps} available for iOS, Android and other platforms.",
|
||||||
|
"onboarding.page_six.github": "Mastodon is free open-source software. You can report bugs, request features, or contribute to the code on {github}.",
|
||||||
|
"onboarding.page_six.guidelines": "community guidelines",
|
||||||
|
"onboarding.page_six.read_guidelines": "Please read {domain}'s {guidelines}!",
|
||||||
|
"onboarding.page_six.various_app": "mobile apps",
|
||||||
|
"onboarding.page_three.profile": "Edit your profile to change your avatar, bio, and display name. There, you will also find other preferences.",
|
||||||
|
"onboarding.page_three.search": "Use the search bar to find people and look at hashtags, such as {illustration} and {introductions}. To look for a person who is not on this instance, use their full handle.",
|
||||||
|
"onboarding.page_two.compose": "Write posts from the compose column. You can upload images, change privacy settings, and add content warnings with the icons below.",
|
||||||
|
"onboarding.skip": "Skip",
|
||||||
|
"privacy.change": "Adjust status privacy",
|
||||||
|
"privacy.direct.long": "Post to mentioned users only",
|
||||||
|
"privacy.direct.short": "Direct",
|
||||||
|
"privacy.private.long": "Post to followers only",
|
||||||
|
"privacy.private.short": "Followers-only",
|
||||||
|
"privacy.public.long": "Post to public timelines",
|
||||||
|
"privacy.public.short": "Public",
|
||||||
|
"privacy.unlisted.long": "Do not show in public timelines",
|
||||||
|
"privacy.unlisted.short": "Unlisted",
|
||||||
|
"regeneration_indicator.label": "Loading…",
|
||||||
|
"regeneration_indicator.sublabel": "Your home feed is being prepared!",
|
||||||
|
"relative_time.days": "{number}d",
|
||||||
|
"relative_time.hours": "{number}h",
|
||||||
|
"relative_time.just_now": "now",
|
||||||
|
"relative_time.minutes": "{number}m",
|
||||||
|
"relative_time.seconds": "{number}s",
|
||||||
|
"reply_indicator.cancel": "Cancel",
|
||||||
|
"report.forward": "Forward to {target}",
|
||||||
|
"report.forward_hint": "The account is from another server. Send an anonymized copy of the report there as well?",
|
||||||
|
"report.hint": "The report will be sent to your instance moderators. You can provide an explanation of why you are reporting this account below:",
|
||||||
|
"report.placeholder": "Additional comments",
|
||||||
|
"report.submit": "Submit",
|
||||||
|
"report.target": "Report {target}",
|
||||||
|
"search.placeholder": "Search",
|
||||||
|
"search_popout.search_format": "Advanced search format",
|
||||||
|
"search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.",
|
||||||
|
"search_popout.tips.hashtag": "hashtag",
|
||||||
|
"search_popout.tips.status": "status",
|
||||||
|
"search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags",
|
||||||
|
"search_popout.tips.user": "user",
|
||||||
|
"search_results.accounts": "People",
|
||||||
|
"search_results.hashtags": "Hashtags",
|
||||||
|
"search_results.statuses": "Toots",
|
||||||
|
"search_results.total": "{count, number} {count, plural, one {result} other {results}}",
|
||||||
|
"standalone.public_title": "A look inside...",
|
||||||
|
"status.block": "Block @{name}",
|
||||||
|
"status.cancel_reblog_private": "Unboost",
|
||||||
|
"status.cannot_reblog": "This post cannot be boosted",
|
||||||
|
"status.delete": "Delete",
|
||||||
|
"status.detailed_status": "Detailed conversation view",
|
||||||
|
"status.direct": "Direct message @{name}",
|
||||||
|
"status.embed": "Embed",
|
||||||
|
"status.favourite": "Favourite",
|
||||||
|
"status.filtered": "Filtered",
|
||||||
|
"status.load_more": "Load more",
|
||||||
|
"status.media_hidden": "Media hidden",
|
||||||
|
"status.mention": "Mention @{name}",
|
||||||
|
"status.more": "More",
|
||||||
|
"status.mute": "Mute @{name}",
|
||||||
|
"status.mute_conversation": "Mute conversation",
|
||||||
|
"status.open": "Expand this status",
|
||||||
|
"status.pin": "Pin on profile",
|
||||||
|
"status.pinned": "Pinned toot",
|
||||||
|
"status.reblog": "Boost",
|
||||||
|
"status.reblog_private": "Boost to original audience",
|
||||||
|
"status.reblogged_by": "{name} boosted",
|
||||||
|
"status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
|
||||||
|
"status.redraft": "Delete & re-draft",
|
||||||
|
"status.reply": "Reply",
|
||||||
|
"status.replyAll": "Reply to thread",
|
||||||
|
"status.report": "Report @{name}",
|
||||||
|
"status.sensitive_toggle": "Click to view",
|
||||||
|
"status.sensitive_warning": "Sensitive content",
|
||||||
|
"status.share": "Share",
|
||||||
|
"status.show_less": "Show less",
|
||||||
|
"status.show_less_all": "Show less for all",
|
||||||
|
"status.show_more": "Show more",
|
||||||
|
"status.show_more_all": "Show more for all",
|
||||||
|
"status.unmute_conversation": "Unmute conversation",
|
||||||
|
"status.unpin": "Unpin from profile",
|
||||||
|
"tabs_bar.federated_timeline": "Federated",
|
||||||
|
"tabs_bar.home": "Home",
|
||||||
|
"tabs_bar.local_timeline": "Local",
|
||||||
|
"tabs_bar.notifications": "Notifications",
|
||||||
|
"tabs_bar.search": "Search",
|
||||||
|
"trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking",
|
||||||
|
"ui.beforeunload": "Your draft will be lost if you leave Mastodon.",
|
||||||
|
"upload_area.title": "Drag & drop to upload",
|
||||||
|
"upload_button.label": "Add media (JPEG, PNG, GIF, WebM, MP4, MOV)",
|
||||||
|
"upload_form.description": "Describe for the visually impaired",
|
||||||
|
"upload_form.focus": "Crop",
|
||||||
|
"upload_form.undo": "Delete",
|
||||||
|
"upload_progress.label": "Uploading...",
|
||||||
|
"video.close": "Close video",
|
||||||
|
"video.exit_fullscreen": "Exit full screen",
|
||||||
|
"video.expand": "Expand video",
|
||||||
|
"video.fullscreen": "Full screen",
|
||||||
|
"video.hide": "Hide video",
|
||||||
|
"video.mute": "Mute sound",
|
||||||
|
"video.pause": "Pause",
|
||||||
|
"video.play": "Play",
|
||||||
|
"video.unmute": "Unmute sound"
|
||||||
|
}
|
|
@ -10,9 +10,9 @@
|
||||||
"account.endorse": "Fremhæv på profil",
|
"account.endorse": "Fremhæv på profil",
|
||||||
"account.follow": "Følg",
|
"account.follow": "Følg",
|
||||||
"account.followers": "Følgere",
|
"account.followers": "Følgere",
|
||||||
"account.followers.empty": "No one follows this user yet.",
|
"account.followers.empty": "Der er endnu ingen der følger denne bruger.",
|
||||||
"account.follows": "Følger",
|
"account.follows": "Følger",
|
||||||
"account.follows.empty": "This user doesn't follow anyone yet.",
|
"account.follows.empty": "Denne bruger følger endnu ikke nogen.",
|
||||||
"account.follows_you": "Følger dig",
|
"account.follows_you": "Følger dig",
|
||||||
"account.hide_reblogs": "Skjul fremhævelserne fra @{name}",
|
"account.hide_reblogs": "Skjul fremhævelserne fra @{name}",
|
||||||
"account.media": "Medie",
|
"account.media": "Medie",
|
||||||
|
@ -89,7 +89,7 @@
|
||||||
"confirmations.mute.confirm": "Dæmp",
|
"confirmations.mute.confirm": "Dæmp",
|
||||||
"confirmations.mute.message": "Er du sikker på, du vil dæmpe {name}?",
|
"confirmations.mute.message": "Er du sikker på, du vil dæmpe {name}?",
|
||||||
"confirmations.redraft.confirm": "Slet & omskriv",
|
"confirmations.redraft.confirm": "Slet & omskriv",
|
||||||
"confirmations.redraft.message": "Er du sikker på, du vil slette denne status og omskrive den? Du vil miste alle svar, fremhævelser og favoritter der medfølger.",
|
"confirmations.redraft.message": "Er du sikker på, du vil slette denne status og omskrive den? Favoritter og fremhævelser vil gå tabt og svar til det oprindelige opslag vil blive forældreløse.",
|
||||||
"confirmations.unfollow.confirm": "Følg ikke længere",
|
"confirmations.unfollow.confirm": "Følg ikke længere",
|
||||||
"confirmations.unfollow.message": "Er du sikker på, du ikke længere vil følge {name}?",
|
"confirmations.unfollow.message": "Er du sikker på, du ikke længere vil følge {name}?",
|
||||||
"embed.instructions": "Indlejre denne status på din side ved at kopiere nedenstående kode.",
|
"embed.instructions": "Indlejre denne status på din side ved at kopiere nedenstående kode.",
|
||||||
|
@ -108,19 +108,19 @@
|
||||||
"emoji_button.search_results": "Søgeresultater",
|
"emoji_button.search_results": "Søgeresultater",
|
||||||
"emoji_button.symbols": "Symboler",
|
"emoji_button.symbols": "Symboler",
|
||||||
"emoji_button.travel": "Rejser & steder",
|
"emoji_button.travel": "Rejser & steder",
|
||||||
"empty_column.blocks": "You haven't blocked any users yet.",
|
"empty_column.blocks": "Du har ikke blokeret nogen endnu.",
|
||||||
"empty_column.community": "Den lokale tidslinje er tom. Skriv noget offentligt for at starte lavinen!",
|
"empty_column.community": "Den lokale tidslinje er tom. Skriv noget offentligt for at starte lavinen!",
|
||||||
"empty_column.direct": "Du har endnu ingen direkte beskeder. Når du sender eller modtager en, vil den vises her.",
|
"empty_column.direct": "Du har endnu ingen direkte beskeder. Når du sender eller modtager en, vil den vises her.",
|
||||||
"empty_column.domain_blocks": "There are no hidden domains yet.",
|
"empty_column.domain_blocks": "Der er endnu ikke nogle skjulte domæner.",
|
||||||
"empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
|
"empty_column.favourited_statuses": "Du har endnu ikke favoriseret nogen trut. Når du favoriserer et, vil det blive vist her.",
|
||||||
"empty_column.favourites": "No one has favourited this toot yet. When someone does, they will show up here.",
|
"empty_column.favourites": "Endnu ingen har favoriseret dette trut. Når en anden gør vil det blive vist her.",
|
||||||
"empty_column.follow_requests": "You don't have any follow requests yet. When you receive one, it will show up here.",
|
"empty_column.follow_requests": "Du har endnu ingen følgeranmodninger. Når du modtager en, vil den komme frem her.",
|
||||||
"empty_column.hashtag": "Dette hashtag indeholder endnu ikke noget.",
|
"empty_column.hashtag": "Dette hashtag indeholder endnu ikke noget.",
|
||||||
"empty_column.home": "Din hjemme tidslinje er tom! Besøg {public} eller brug søgningen for at komme igang og møde andre brugere.",
|
"empty_column.home": "Din hjemme tidslinje er tom! Besøg {public} eller brug søgningen for at komme igang og møde andre brugere.",
|
||||||
"empty_column.home.public_timeline": "den offentlige tidslinje",
|
"empty_column.home.public_timeline": "den offentlige tidslinje",
|
||||||
"empty_column.list": "Der er endnu intet i denne liste. Når medlemmer af denne liste poster nye statusser, vil de vises her.",
|
"empty_column.list": "Der er endnu intet i denne liste. Når medlemmer af denne liste poster nye statusser, vil de vises her.",
|
||||||
"empty_column.lists": "You don't have any lists yet. When you create one, it will show up here.",
|
"empty_column.lists": "Du har endnu ingen lister. Når du opretter en, vil den blive vist her.",
|
||||||
"empty_column.mutes": "You haven't muted any users yet.",
|
"empty_column.mutes": "Du har endnu ikke dæmpet nogen som helst bruger.",
|
||||||
"empty_column.notifications": "Du har endnu ingen notifikationer. Tag ud og bland dig med folkemængden for at starte samtalen.",
|
"empty_column.notifications": "Du har endnu ingen notifikationer. Tag ud og bland dig med folkemængden for at starte samtalen.",
|
||||||
"empty_column.public": "Der er ikke noget at se her! Skriv noget offentligt eller start ud med manuelt at følge brugere fra andre instanser for st udfylde tomrummet",
|
"empty_column.public": "Der er ikke noget at se her! Skriv noget offentligt eller start ud med manuelt at følge brugere fra andre instanser for st udfylde tomrummet",
|
||||||
"follow_request.authorize": "Godkend",
|
"follow_request.authorize": "Godkend",
|
||||||
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Vis fremhævelser",
|
"home.column_settings.show_reblogs": "Vis fremhævelser",
|
||||||
"home.column_settings.show_replies": "Vis svar",
|
"home.column_settings.show_replies": "Vis svar",
|
||||||
"keyboard_shortcuts.back": "for at navigere dig tilbage",
|
"keyboard_shortcuts.back": "for at navigere dig tilbage",
|
||||||
|
"keyboard_shortcuts.blocked": "for at åbne listen over blokerede brugere",
|
||||||
"keyboard_shortcuts.boost": "for at fremhæve",
|
"keyboard_shortcuts.boost": "for at fremhæve",
|
||||||
"keyboard_shortcuts.column": "for at fokusere på en status i en af kolonnerne",
|
"keyboard_shortcuts.column": "for at fokusere på en status i en af kolonnerne",
|
||||||
"keyboard_shortcuts.compose": "for at fokusere på skriveområdet",
|
"keyboard_shortcuts.compose": "for at fokusere på skriveområdet",
|
||||||
"keyboard_shortcuts.description": "Beskrivelse",
|
"keyboard_shortcuts.description": "Beskrivelse",
|
||||||
|
"keyboard_shortcuts.direct": "for at åbne privat besked kolonnen",
|
||||||
"keyboard_shortcuts.down": "for at rykke ned ad listen",
|
"keyboard_shortcuts.down": "for at rykke ned ad listen",
|
||||||
"keyboard_shortcuts.enter": "for at åbne status",
|
"keyboard_shortcuts.enter": "for at åbne status",
|
||||||
"keyboard_shortcuts.favourite": "for at favorisere",
|
"keyboard_shortcuts.favourite": "for at favorisere",
|
||||||
|
"keyboard_shortcuts.favourites": "for at åbne listen over favoritter",
|
||||||
|
"keyboard_shortcuts.federated": "for at åbne den forenede tidslinje",
|
||||||
"keyboard_shortcuts.heading": "Tastaturgenveje",
|
"keyboard_shortcuts.heading": "Tastaturgenveje",
|
||||||
|
"keyboard_shortcuts.home": "for at åbne hjem tidslinjen",
|
||||||
"keyboard_shortcuts.hotkey": "Hurtigtast",
|
"keyboard_shortcuts.hotkey": "Hurtigtast",
|
||||||
"keyboard_shortcuts.legend": "for at vise denne legende",
|
"keyboard_shortcuts.legend": "for at vise denne legende",
|
||||||
|
"keyboard_shortcuts.local": "for at åbne den lokale tidslinje",
|
||||||
"keyboard_shortcuts.mention": "for at nævne forfatteren",
|
"keyboard_shortcuts.mention": "for at nævne forfatteren",
|
||||||
|
"keyboard_shortcuts.muted": "for at åbne listen over dæmpede brugere",
|
||||||
|
"keyboard_shortcuts.my_profile": "for at åbne din profil",
|
||||||
|
"keyboard_shortcuts.notifications": "for at åbne notifikations kolonnen",
|
||||||
|
"keyboard_shortcuts.pinned": "for at åbne listen over fastgjorte trut",
|
||||||
"keyboard_shortcuts.profile": "til profil af åben forfatter",
|
"keyboard_shortcuts.profile": "til profil af åben forfatter",
|
||||||
"keyboard_shortcuts.reply": "for at svare",
|
"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.search": "for at fokusere søgningen",
|
||||||
|
"keyboard_shortcuts.start": "for at åbne \"kom igen\" kolonnen",
|
||||||
"keyboard_shortcuts.toggle_hidden": "for at vise/skjule tekst bag CW",
|
"keyboard_shortcuts.toggle_hidden": "for at vise/skjule tekst bag CW",
|
||||||
"keyboard_shortcuts.toot": "for at påbegynde et helt nyt trut",
|
"keyboard_shortcuts.toot": "for at påbegynde et helt nyt trut",
|
||||||
"keyboard_shortcuts.unfocus": "for at fjerne fokus fra skriveområde/søgning",
|
"keyboard_shortcuts.unfocus": "for at fjerne fokus fra skriveområde/søgning",
|
||||||
|
@ -174,7 +186,7 @@
|
||||||
"navigation_bar.apps": "Mobil apps",
|
"navigation_bar.apps": "Mobil apps",
|
||||||
"navigation_bar.blocks": "Blokerede brugere",
|
"navigation_bar.blocks": "Blokerede brugere",
|
||||||
"navigation_bar.community_timeline": "Lokal tidslinje",
|
"navigation_bar.community_timeline": "Lokal tidslinje",
|
||||||
"navigation_bar.compose": "Compose new toot",
|
"navigation_bar.compose": "Skriv nyt trut",
|
||||||
"navigation_bar.direct": "Direkte beskeder",
|
"navigation_bar.direct": "Direkte beskeder",
|
||||||
"navigation_bar.discover": "Opdag",
|
"navigation_bar.discover": "Opdag",
|
||||||
"navigation_bar.domain_blocks": "Skjulte domæner",
|
"navigation_bar.domain_blocks": "Skjulte domæner",
|
||||||
|
@ -189,7 +201,7 @@
|
||||||
"navigation_bar.mutes": "Dæmpede brugere",
|
"navigation_bar.mutes": "Dæmpede brugere",
|
||||||
"navigation_bar.personal": "Personligt",
|
"navigation_bar.personal": "Personligt",
|
||||||
"navigation_bar.pins": "Fastgjorte toots",
|
"navigation_bar.pins": "Fastgjorte toots",
|
||||||
"navigation_bar.preferences": "Indstillinger",
|
"navigation_bar.preferences": "Præferencer",
|
||||||
"navigation_bar.public_timeline": "Fælles tidslinje",
|
"navigation_bar.public_timeline": "Fælles tidslinje",
|
||||||
"navigation_bar.security": "Sikkerhed",
|
"navigation_bar.security": "Sikkerhed",
|
||||||
"notification.favourite": "{name} favoriserede din status",
|
"notification.favourite": "{name} favoriserede din status",
|
||||||
|
@ -225,7 +237,7 @@
|
||||||
"onboarding.page_six.guidelines": "retningslinjer for fællesskabet",
|
"onboarding.page_six.guidelines": "retningslinjer for fællesskabet",
|
||||||
"onboarding.page_six.read_guidelines": "Læs venligst {domain}s {guidelines}!",
|
"onboarding.page_six.read_guidelines": "Læs venligst {domain}s {guidelines}!",
|
||||||
"onboarding.page_six.various_app": "apps til mobilen",
|
"onboarding.page_six.various_app": "apps til mobilen",
|
||||||
"onboarding.page_three.profile": "Rediger din profil for at ændre profilbillede, beskrivelse og visningsnavn. Der vil du også finde andre indstillinger.",
|
"onboarding.page_three.profile": "Rediger din profil for at ændre profilbillede, beskrivelse og visningsnavn. Der vil du også finde andre præferencer.",
|
||||||
"onboarding.page_three.search": "Brug søgefeltdet for at finde folk og at kigge på hashtags, så som {illustration} and {introductions}. For at finde en person der ikke er på denne instans, brug deres fulde brugernavn.",
|
"onboarding.page_three.search": "Brug søgefeltdet for at finde folk og at kigge på hashtags, så som {illustration} and {introductions}. For at finde en person der ikke er på denne instans, brug deres fulde brugernavn.",
|
||||||
"onboarding.page_two.compose": "Skriv opslag fra skrive kolonnen. Du kan uploade billeder, ændre privatlivsindstillinger, og tilføje indholds advarsler med ikoner forneden.",
|
"onboarding.page_two.compose": "Skriv opslag fra skrive kolonnen. Du kan uploade billeder, ændre privatlivsindstillinger, og tilføje indholds advarsler med ikoner forneden.",
|
||||||
"onboarding.skip": "Spring over",
|
"onboarding.skip": "Spring over",
|
||||||
|
@ -268,7 +280,7 @@
|
||||||
"status.cancel_reblog_private": "Fremhæv ikke længere",
|
"status.cancel_reblog_private": "Fremhæv ikke længere",
|
||||||
"status.cannot_reblog": "Denne post kan ikke fremhæves",
|
"status.cannot_reblog": "Denne post kan ikke fremhæves",
|
||||||
"status.delete": "Slet",
|
"status.delete": "Slet",
|
||||||
"status.detailed_status": "Detailed conversation view",
|
"status.detailed_status": "Detaljeret visning af samtale",
|
||||||
"status.direct": "Send direkte besked til @{name}",
|
"status.direct": "Send direkte besked til @{name}",
|
||||||
"status.embed": "Indlejre",
|
"status.embed": "Indlejre",
|
||||||
"status.favourite": "Favorit",
|
"status.favourite": "Favorit",
|
||||||
|
@ -285,7 +297,7 @@
|
||||||
"status.reblog": "Fremhæv",
|
"status.reblog": "Fremhæv",
|
||||||
"status.reblog_private": "Fremhæv til oprindeligt publikum",
|
"status.reblog_private": "Fremhæv til oprindeligt publikum",
|
||||||
"status.reblogged_by": "{name} fremhævede",
|
"status.reblogged_by": "{name} fremhævede",
|
||||||
"status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
|
"status.reblogs.empty": "Der er endnu ingen der har fremhævet dette trut. Når der er nogen der gør, vil det blive vist her.",
|
||||||
"status.redraft": "Slet og omskriv",
|
"status.redraft": "Slet og omskriv",
|
||||||
"status.reply": "Svar",
|
"status.reply": "Svar",
|
||||||
"status.replyAll": "Svar samtale",
|
"status.replyAll": "Svar samtale",
|
||||||
|
@ -307,7 +319,7 @@
|
||||||
"trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} snakker",
|
"trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} snakker",
|
||||||
"ui.beforeunload": "Din kladde vil gå tabt hvis du forlader Mastodon.",
|
"ui.beforeunload": "Din kladde vil gå tabt hvis du forlader Mastodon.",
|
||||||
"upload_area.title": "Træk og slip for at uploade",
|
"upload_area.title": "Træk og slip for at uploade",
|
||||||
"upload_button.label": "Tilføj medie",
|
"upload_button.label": "Tilføj medie (JPEG, PNG, GIF, WebM, MP4, MOV)",
|
||||||
"upload_form.description": "Beskriv for de svagtseende",
|
"upload_form.description": "Beskriv for de svagtseende",
|
||||||
"upload_form.focus": "Beskær",
|
"upload_form.focus": "Beskær",
|
||||||
"upload_form.undo": "Slet",
|
"upload_form.undo": "Slet",
|
||||||
|
|
|
@ -69,7 +69,7 @@
|
||||||
"compose_form.hashtag_warning": "Dieser Beitrag wird nicht unter einen dieser Hashtags sichtbar sein, solange er ungelistet ist. Bei einer Suche kann er nicht gefunden werden.",
|
"compose_form.hashtag_warning": "Dieser Beitrag wird nicht unter einen dieser Hashtags sichtbar sein, solange er ungelistet ist. Bei einer Suche kann er nicht gefunden werden.",
|
||||||
"compose_form.lock_disclaimer": "Dein Profil ist nicht {locked}. Wer dir folgen will, kann das jederzeit tun und dann auch deine privaten Beiträge sehen.",
|
"compose_form.lock_disclaimer": "Dein Profil ist nicht {locked}. Wer dir folgen will, kann das jederzeit tun und dann auch deine privaten Beiträge sehen.",
|
||||||
"compose_form.lock_disclaimer.lock": "gesperrt",
|
"compose_form.lock_disclaimer.lock": "gesperrt",
|
||||||
"compose_form.placeholder": "Was gibt's neues?",
|
"compose_form.placeholder": "Was gibt's Neues?",
|
||||||
"compose_form.publish": "Tröt",
|
"compose_form.publish": "Tröt",
|
||||||
"compose_form.publish_loud": "{publish}!",
|
"compose_form.publish_loud": "{publish}!",
|
||||||
"compose_form.sensitive.marked": "Medien sind als heikel markiert",
|
"compose_form.sensitive.marked": "Medien sind als heikel markiert",
|
||||||
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Geteilte Beiträge anzeigen",
|
"home.column_settings.show_reblogs": "Geteilte Beiträge anzeigen",
|
||||||
"home.column_settings.show_replies": "Antworten anzeigen",
|
"home.column_settings.show_replies": "Antworten anzeigen",
|
||||||
"keyboard_shortcuts.back": "zurück navigieren",
|
"keyboard_shortcuts.back": "zurück navigieren",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "boosten",
|
"keyboard_shortcuts.boost": "boosten",
|
||||||
"keyboard_shortcuts.column": "einen Status in einer der Spalten fokussieren",
|
"keyboard_shortcuts.column": "einen Status in einer der Spalten fokussieren",
|
||||||
"keyboard_shortcuts.compose": "um das Textfeld zu fokussieren",
|
"keyboard_shortcuts.compose": "um das Textfeld zu fokussieren",
|
||||||
"keyboard_shortcuts.description": "Beschreibung",
|
"keyboard_shortcuts.description": "Beschreibung",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "sich in der Liste hinunter bewegen",
|
"keyboard_shortcuts.down": "sich in der Liste hinunter bewegen",
|
||||||
"keyboard_shortcuts.enter": "um den Status zu öffnen",
|
"keyboard_shortcuts.enter": "um den Status zu öffnen",
|
||||||
"keyboard_shortcuts.favourite": "um zu favorisieren",
|
"keyboard_shortcuts.favourite": "um zu favorisieren",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Tastenkombinationen",
|
"keyboard_shortcuts.heading": "Tastenkombinationen",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "Tastenkürzel",
|
"keyboard_shortcuts.hotkey": "Tastenkürzel",
|
||||||
"keyboard_shortcuts.legend": "um diese Übersicht anzuzeigen",
|
"keyboard_shortcuts.legend": "um diese Übersicht anzuzeigen",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "um Autor_in zu erwähnen",
|
"keyboard_shortcuts.mention": "um Autor_in zu erwähnen",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "um Profil des Autors zu öffnen",
|
"keyboard_shortcuts.profile": "um Profil des Autors zu öffnen",
|
||||||
"keyboard_shortcuts.reply": "um zu antworten",
|
"keyboard_shortcuts.reply": "um zu antworten",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "um die Suche zu fokussieren",
|
"keyboard_shortcuts.search": "um die Suche zu fokussieren",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "um den Text hinter einer Inhaltswarnung zu verstecken oder ihn anzuzeigen",
|
"keyboard_shortcuts.toggle_hidden": "um den Text hinter einer Inhaltswarnung zu verstecken oder ihn anzuzeigen",
|
||||||
"keyboard_shortcuts.toot": "um einen neuen Toot zu beginnen",
|
"keyboard_shortcuts.toot": "um einen neuen Toot zu beginnen",
|
||||||
"keyboard_shortcuts.unfocus": "um das Textfeld/die Suche nicht mehr zu fokussieren",
|
"keyboard_shortcuts.unfocus": "um das Textfeld/die Suche nicht mehr zu fokussieren",
|
||||||
|
|
|
@ -911,7 +911,7 @@
|
||||||
{
|
{
|
||||||
"descriptors": [
|
"descriptors": [
|
||||||
{
|
{
|
||||||
"defaultMessage": "Add media (JPEG, PNG, GIF, WebM, MP4)",
|
"defaultMessage": "Add media (JPEG, PNG, GIF, WebM, MP4, MOV)",
|
||||||
"id": "upload_button.label"
|
"id": "upload_button.label"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
@ -89,7 +89,7 @@
|
||||||
"confirmations.mute.confirm": "Αποσιώπηση",
|
"confirmations.mute.confirm": "Αποσιώπηση",
|
||||||
"confirmations.mute.message": "Σίγουρα θες να αποσιωπήσεις τον/την {name};",
|
"confirmations.mute.message": "Σίγουρα θες να αποσιωπήσεις τον/την {name};",
|
||||||
"confirmations.redraft.confirm": "Διαγραφή & ξαναγράψιμο",
|
"confirmations.redraft.confirm": "Διαγραφή & ξαναγράψιμο",
|
||||||
"confirmations.redraft.message": "Σίγουρα θέλεις να σβήσεις αυτή την κατάσταση και να την γράψεις ξανά; Θα χάσεις όλες τις απαντήσεις, αναφορές και τα αγαπημένα προς αυτή.",
|
"confirmations.redraft.message": "Σίγουρα θέλεις να σβήσεις αυτή την κατάσταση και να την ξαναγράψεις; Οι αναφορές και τα αγαπημένα της θα χαθούν ενώ οι απαντήσεις προς αυτή θα μείνουν ορφανές.",
|
||||||
"confirmations.unfollow.confirm": "Διακοπή παρακολούθησης",
|
"confirmations.unfollow.confirm": "Διακοπή παρακολούθησης",
|
||||||
"confirmations.unfollow.message": "Σίγουρα θες να πάψεις να ακολουθείς τον/την {name};",
|
"confirmations.unfollow.message": "Σίγουρα θες να πάψεις να ακολουθείς τον/την {name};",
|
||||||
"embed.instructions": "Ενσωματώστε αυτή την κατάσταση στην ιστοσελίδα σας αντιγράφοντας τον παρακάτω κώδικα.",
|
"embed.instructions": "Ενσωματώστε αυτή την κατάσταση στην ιστοσελίδα σας αντιγράφοντας τον παρακάτω κώδικα.",
|
||||||
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Εμφάνιση προωθήσεων",
|
"home.column_settings.show_reblogs": "Εμφάνιση προωθήσεων",
|
||||||
"home.column_settings.show_replies": "Εμφάνιση απαντήσεων",
|
"home.column_settings.show_replies": "Εμφάνιση απαντήσεων",
|
||||||
"keyboard_shortcuts.back": "για επιστροφή πίσω",
|
"keyboard_shortcuts.back": "για επιστροφή πίσω",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "για προώθηση",
|
"keyboard_shortcuts.boost": "για προώθηση",
|
||||||
"keyboard_shortcuts.column": "για εστίαση μιας κατάστασης σε μια από τις στήλες",
|
"keyboard_shortcuts.column": "για εστίαση μιας κατάστασης σε μια από τις στήλες",
|
||||||
"keyboard_shortcuts.compose": "για εστίαση στην περιοχή κειμένου συγγραφής",
|
"keyboard_shortcuts.compose": "για εστίαση στην περιοχή κειμένου συγγραφής",
|
||||||
"keyboard_shortcuts.description": "Description",
|
"keyboard_shortcuts.description": "Description",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "για κίνηση προς τα κάτω στη λίστα",
|
"keyboard_shortcuts.down": "για κίνηση προς τα κάτω στη λίστα",
|
||||||
"keyboard_shortcuts.enter": "to open status",
|
"keyboard_shortcuts.enter": "to open status",
|
||||||
"keyboard_shortcuts.favourite": "για σημείωση αγαπημένου",
|
"keyboard_shortcuts.favourite": "για σημείωση αγαπημένου",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "Συντόμευση",
|
"keyboard_shortcuts.hotkey": "Συντόμευση",
|
||||||
"keyboard_shortcuts.legend": "για να εμφανίσεις αυτόν τον οδηγό",
|
"keyboard_shortcuts.legend": "για να εμφανίσεις αυτόν τον οδηγό",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "για να αναφέρεις το συγγραφέα",
|
"keyboard_shortcuts.mention": "για να αναφέρεις το συγγραφέα",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "to open author's profile",
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "για απάντηση",
|
"keyboard_shortcuts.reply": "για απάντηση",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "για εστίαση αναζήτησης",
|
"keyboard_shortcuts.search": "για εστίαση αναζήτησης",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "για εμφάνιση/απόκρυψη κειμένου πίσω από την προειδοποίηση",
|
"keyboard_shortcuts.toggle_hidden": "για εμφάνιση/απόκρυψη κειμένου πίσω από την προειδοποίηση",
|
||||||
"keyboard_shortcuts.toot": "για δημιουργία ολοκαίνουριου τουτ",
|
"keyboard_shortcuts.toot": "για δημιουργία ολοκαίνουριου τουτ",
|
||||||
"keyboard_shortcuts.unfocus": "για την απο-εστίαση του πεδίου σύνθεσης/αναζήτησης",
|
"keyboard_shortcuts.unfocus": "για την απο-εστίαση του πεδίου σύνθεσης/αναζήτησης",
|
||||||
|
@ -307,7 +319,7 @@
|
||||||
"trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} μιλάνε",
|
"trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} μιλάνε",
|
||||||
"ui.beforeunload": "Το προσχέδιό σου θα χαθεί αν φύγεις από το Mastodon.",
|
"ui.beforeunload": "Το προσχέδιό σου θα χαθεί αν φύγεις από το Mastodon.",
|
||||||
"upload_area.title": "Drag & drop για να ανεβάσεις",
|
"upload_area.title": "Drag & drop για να ανεβάσεις",
|
||||||
"upload_button.label": "Πρόσθεσε πολυμέσα",
|
"upload_button.label": "Πρόσθεσε πολυμέσα (JPEG, PNG, GIF, WebM, MP4, MOV)",
|
||||||
"upload_form.description": "Περιέγραψε για όσους & όσες έχουν προβλήματα όρασης",
|
"upload_form.description": "Περιέγραψε για όσους & όσες έχουν προβλήματα όρασης",
|
||||||
"upload_form.focus": "Περικοπή",
|
"upload_form.focus": "Περικοπή",
|
||||||
"upload_form.undo": "Διαγραφή",
|
"upload_form.undo": "Διαγραφή",
|
||||||
|
|
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Show boosts",
|
"home.column_settings.show_reblogs": "Show boosts",
|
||||||
"home.column_settings.show_replies": "Show replies",
|
"home.column_settings.show_replies": "Show replies",
|
||||||
"keyboard_shortcuts.back": "to navigate back",
|
"keyboard_shortcuts.back": "to navigate back",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "to boost",
|
"keyboard_shortcuts.boost": "to boost",
|
||||||
"keyboard_shortcuts.column": "to focus a status in one of the columns",
|
"keyboard_shortcuts.column": "to focus a status in one of the columns",
|
||||||
"keyboard_shortcuts.compose": "to focus the compose textarea",
|
"keyboard_shortcuts.compose": "to focus the compose textarea",
|
||||||
"keyboard_shortcuts.description": "Description",
|
"keyboard_shortcuts.description": "Description",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "to move down in the list",
|
"keyboard_shortcuts.down": "to move down in the list",
|
||||||
"keyboard_shortcuts.enter": "to open status",
|
"keyboard_shortcuts.enter": "to open status",
|
||||||
"keyboard_shortcuts.favourite": "to favourite",
|
"keyboard_shortcuts.favourite": "to favourite",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Keyboard shortcuts",
|
"keyboard_shortcuts.heading": "Keyboard shortcuts",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "Hotkey",
|
"keyboard_shortcuts.hotkey": "Hotkey",
|
||||||
"keyboard_shortcuts.legend": "to display this legend",
|
"keyboard_shortcuts.legend": "to display this legend",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "to mention author",
|
"keyboard_shortcuts.mention": "to mention author",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "to open author's profile",
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "to reply",
|
"keyboard_shortcuts.reply": "to reply",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "to focus search",
|
"keyboard_shortcuts.search": "to focus search",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
"keyboard_shortcuts.toot": "to start a brand new toot",
|
"keyboard_shortcuts.toot": "to start a brand new toot",
|
||||||
"keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
|
"keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
|
||||||
|
@ -307,7 +319,7 @@
|
||||||
"trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking",
|
"trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking",
|
||||||
"ui.beforeunload": "Your draft will be lost if you leave Mastodon.",
|
"ui.beforeunload": "Your draft will be lost if you leave Mastodon.",
|
||||||
"upload_area.title": "Drag & drop to upload",
|
"upload_area.title": "Drag & drop to upload",
|
||||||
"upload_button.label": "Add media (JPEG, PNG, GIF, WebM, MP4)",
|
"upload_button.label": "Add media (JPEG, PNG, GIF, WebM, MP4, MOV)",
|
||||||
"upload_form.description": "Describe for the visually impaired",
|
"upload_form.description": "Describe for the visually impaired",
|
||||||
"upload_form.focus": "Crop",
|
"upload_form.focus": "Crop",
|
||||||
"upload_form.undo": "Delete",
|
"upload_form.undo": "Delete",
|
||||||
|
|
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Montri diskonigojn",
|
"home.column_settings.show_reblogs": "Montri diskonigojn",
|
||||||
"home.column_settings.show_replies": "Montri respondojn",
|
"home.column_settings.show_replies": "Montri respondojn",
|
||||||
"keyboard_shortcuts.back": "por reveni",
|
"keyboard_shortcuts.back": "por reveni",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "por diskonigi",
|
"keyboard_shortcuts.boost": "por diskonigi",
|
||||||
"keyboard_shortcuts.column": "por fokusigi mesaĝon en unu el la kolumnoj",
|
"keyboard_shortcuts.column": "por fokusigi mesaĝon en unu el la kolumnoj",
|
||||||
"keyboard_shortcuts.compose": "por fokusigi la tekstujon",
|
"keyboard_shortcuts.compose": "por fokusigi la tekstujon",
|
||||||
"keyboard_shortcuts.description": "Priskribo",
|
"keyboard_shortcuts.description": "Priskribo",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "por iri suben en la listo",
|
"keyboard_shortcuts.down": "por iri suben en la listo",
|
||||||
"keyboard_shortcuts.enter": "por malfermi mesaĝon",
|
"keyboard_shortcuts.enter": "por malfermi mesaĝon",
|
||||||
"keyboard_shortcuts.favourite": "por stelumi",
|
"keyboard_shortcuts.favourite": "por stelumi",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Klavaraj mallongigoj",
|
"keyboard_shortcuts.heading": "Klavaraj mallongigoj",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "Rapidklavo",
|
"keyboard_shortcuts.hotkey": "Rapidklavo",
|
||||||
"keyboard_shortcuts.legend": "por montri ĉi tiun noton",
|
"keyboard_shortcuts.legend": "por montri ĉi tiun noton",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "por mencii la aŭtoron",
|
"keyboard_shortcuts.mention": "por mencii la aŭtoron",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "por malfermi la profilon de la aŭtoro",
|
"keyboard_shortcuts.profile": "por malfermi la profilon de la aŭtoro",
|
||||||
"keyboard_shortcuts.reply": "por respondi",
|
"keyboard_shortcuts.reply": "por respondi",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "por fokusigi la serĉilon",
|
"keyboard_shortcuts.search": "por fokusigi la serĉilon",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "por montri/kaŝi tekston malantaŭ enhava averto",
|
"keyboard_shortcuts.toggle_hidden": "por montri/kaŝi tekston malantaŭ enhava averto",
|
||||||
"keyboard_shortcuts.toot": "por komenci tute novan mesaĝon",
|
"keyboard_shortcuts.toot": "por komenci tute novan mesaĝon",
|
||||||
"keyboard_shortcuts.unfocus": "por malfokusigi la tekstujon aŭ la serĉilon",
|
"keyboard_shortcuts.unfocus": "por malfokusigi la tekstujon aŭ la serĉilon",
|
||||||
|
|
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Mostrar retoots",
|
"home.column_settings.show_reblogs": "Mostrar retoots",
|
||||||
"home.column_settings.show_replies": "Mostrar respuestas",
|
"home.column_settings.show_replies": "Mostrar respuestas",
|
||||||
"keyboard_shortcuts.back": "volver atrás",
|
"keyboard_shortcuts.back": "volver atrás",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "retootear",
|
"keyboard_shortcuts.boost": "retootear",
|
||||||
"keyboard_shortcuts.column": "enfocar un estado en una de las columnas",
|
"keyboard_shortcuts.column": "enfocar un estado en una de las columnas",
|
||||||
"keyboard_shortcuts.compose": "enfocar el área de texto de redacción",
|
"keyboard_shortcuts.compose": "enfocar el área de texto de redacción",
|
||||||
"keyboard_shortcuts.description": "Description",
|
"keyboard_shortcuts.description": "Description",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "mover hacia abajo en la lista",
|
"keyboard_shortcuts.down": "mover hacia abajo en la lista",
|
||||||
"keyboard_shortcuts.enter": "to open status",
|
"keyboard_shortcuts.enter": "to open status",
|
||||||
"keyboard_shortcuts.favourite": "añadir a favoritos",
|
"keyboard_shortcuts.favourite": "añadir a favoritos",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "Tecla caliente",
|
"keyboard_shortcuts.hotkey": "Tecla caliente",
|
||||||
"keyboard_shortcuts.legend": "para mostrar esta leyenda",
|
"keyboard_shortcuts.legend": "para mostrar esta leyenda",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "para mencionar al autor",
|
"keyboard_shortcuts.mention": "para mencionar al autor",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "to open author's profile",
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "para responder",
|
"keyboard_shortcuts.reply": "para responder",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "para poner el foco en la búsqueda",
|
"keyboard_shortcuts.search": "para poner el foco en la búsqueda",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
"keyboard_shortcuts.toot": "para comenzar un nuevo toot",
|
"keyboard_shortcuts.toot": "para comenzar un nuevo toot",
|
||||||
"keyboard_shortcuts.unfocus": "para retirar el foco de la caja de redacción/búsqueda",
|
"keyboard_shortcuts.unfocus": "para retirar el foco de la caja de redacción/búsqueda",
|
||||||
|
|
|
@ -10,9 +10,9 @@
|
||||||
"account.endorse": "Nabarmendu profilean",
|
"account.endorse": "Nabarmendu profilean",
|
||||||
"account.follow": "Jarraitu",
|
"account.follow": "Jarraitu",
|
||||||
"account.followers": "Jarraitzaileak",
|
"account.followers": "Jarraitzaileak",
|
||||||
"account.followers.empty": "No one follows this user yet.",
|
"account.followers.empty": "Ez du inork erabiltzaile hau jarraitzen oraindik.",
|
||||||
"account.follows": "Jarraitzen",
|
"account.follows": "Jarraitzen",
|
||||||
"account.follows.empty": "This user doesn't follow anyone yet.",
|
"account.follows.empty": "Erabiltzaile honek ez du inor jarraitzen oraindik.",
|
||||||
"account.follows_you": "Jarraitzen zaitu",
|
"account.follows_you": "Jarraitzen zaitu",
|
||||||
"account.hide_reblogs": "Ezkutatu @{name}(r)en bultzadak",
|
"account.hide_reblogs": "Ezkutatu @{name}(r)en bultzadak",
|
||||||
"account.media": "Media",
|
"account.media": "Media",
|
||||||
|
@ -89,7 +89,7 @@
|
||||||
"confirmations.mute.confirm": "Mututu",
|
"confirmations.mute.confirm": "Mututu",
|
||||||
"confirmations.mute.message": "Ziur {name} mututu nahi duzula?",
|
"confirmations.mute.message": "Ziur {name} mututu nahi duzula?",
|
||||||
"confirmations.redraft.confirm": "Ezabatu eta berridatzi",
|
"confirmations.redraft.confirm": "Ezabatu eta berridatzi",
|
||||||
"confirmations.redraft.message": "Ziur mezu hau ezabatu eta berridatzi nahi duzula? Berari egindako erantzun, bultzada eta gogokoak galduko dira.",
|
"confirmations.redraft.message": "Ziur mezu hau ezabatu eta berridatzi nahi duzula? Gogokoak eta bultzadak galduko dira eta jaso dituen erantzunak umezurtz geratuko dira.",
|
||||||
"confirmations.unfollow.confirm": "Utzi jarraitzeari",
|
"confirmations.unfollow.confirm": "Utzi jarraitzeari",
|
||||||
"confirmations.unfollow.message": "Ziur {name} jarraitzeari utzi nahi diozula?",
|
"confirmations.unfollow.message": "Ziur {name} jarraitzeari utzi nahi diozula?",
|
||||||
"embed.instructions": "Txertatu mezu hau zure webgunean beheko kodea kopatuz.",
|
"embed.instructions": "Txertatu mezu hau zure webgunean beheko kodea kopatuz.",
|
||||||
|
@ -108,19 +108,19 @@
|
||||||
"emoji_button.search_results": "Bilaketaren emaitzak",
|
"emoji_button.search_results": "Bilaketaren emaitzak",
|
||||||
"emoji_button.symbols": "Sinboloak",
|
"emoji_button.symbols": "Sinboloak",
|
||||||
"emoji_button.travel": "Bidaiak eta tokiak",
|
"emoji_button.travel": "Bidaiak eta tokiak",
|
||||||
"empty_column.blocks": "You haven't blocked any users yet.",
|
"empty_column.blocks": "Ez duzu erabiltzailerik blokeatu oraindik.",
|
||||||
"empty_column.community": "Denbora-lerro lokala hutsik dago. Idatzi zerbait publikoki pilota biraka jartzeko!",
|
"empty_column.community": "Denbora-lerro lokala hutsik dago. Idatzi zerbait publikoki pilota biraka jartzeko!",
|
||||||
"empty_column.direct": "Ez duzu mezu zuzenik oraindik. Baten bat bidali edo jasotzen duzunean, hemen agertuko da.",
|
"empty_column.direct": "Ez duzu mezu zuzenik oraindik. Baten bat bidali edo jasotzen duzunean, hemen agertuko da.",
|
||||||
"empty_column.domain_blocks": "There are no hidden domains yet.",
|
"empty_column.domain_blocks": "Ez dago ezkutatutako domeinurik oraindik.",
|
||||||
"empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
|
"empty_column.favourited_statuses": "Ez duzu gogokorik oraindik. Gogokoren bat duzunean hemen agertuko da.",
|
||||||
"empty_column.favourites": "No one has favourited this toot yet. When someone does, they will show up here.",
|
"empty_column.favourites": "Ez du inork gogokoetara gehitu toot hau oraindik. Inork egiten duenean, hemen agertuko dira.",
|
||||||
"empty_column.follow_requests": "You don't have any follow requests yet. When you receive one, it will show up here.",
|
"empty_column.follow_requests": "Ez duzu jarraitzeko eskaririk oraindik. Baten bat jasotzen duzunean, hemen agertuko da.",
|
||||||
"empty_column.hashtag": "Ez dago ezer traola honetan oraindik.",
|
"empty_column.hashtag": "Ez dago ezer traola honetan oraindik.",
|
||||||
"empty_column.home": "Zure hasierako denbora-lerroa hutsik dago! Ikusi {public} edo erabili bilaketa lehen urratsak eman eta beste batzuk aurkitzeko.",
|
"empty_column.home": "Zure hasierako denbora-lerroa hutsik dago! Ikusi {public} edo erabili bilaketa lehen urratsak eman eta beste batzuk aurkitzeko.",
|
||||||
"empty_column.home.public_timeline": "denbora-lerro publikoa",
|
"empty_column.home.public_timeline": "denbora-lerro publikoa",
|
||||||
"empty_column.list": "Ez dago ezer zerrenda honetan. Zerrenda honetako kideek mezu berriak argitaratzean, hemen agertuko dira.",
|
"empty_column.list": "Ez dago ezer zerrenda honetan. Zerrenda honetako kideek mezu berriak argitaratzean, hemen agertuko dira.",
|
||||||
"empty_column.lists": "You don't have any lists yet. When you create one, it will show up here.",
|
"empty_column.lists": "Ez duzu zerrendarik oraindik. Baten bat sortzen duzunean hemen agertuko da.",
|
||||||
"empty_column.mutes": "You haven't muted any users yet.",
|
"empty_column.mutes": "Ez duzu erabiltzailerik mututu oraindik.",
|
||||||
"empty_column.notifications": "Ez duzu jakinarazpenik oraindik. Jarri besteekin harremanetan elkarrizketa abiatzeko.",
|
"empty_column.notifications": "Ez duzu jakinarazpenik oraindik. Jarri besteekin harremanetan elkarrizketa abiatzeko.",
|
||||||
"empty_column.public": "Ez dago ezer hemen! Idatzi zerbait publikoki edo jarraitu eskuz beste instantzia batzuetako erabiltzailean hau betetzeko",
|
"empty_column.public": "Ez dago ezer hemen! Idatzi zerbait publikoki edo jarraitu eskuz beste instantzia batzuetako erabiltzailean hau betetzeko",
|
||||||
"follow_request.authorize": "Baimendu",
|
"follow_request.authorize": "Baimendu",
|
||||||
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Erakutsi bultzadak",
|
"home.column_settings.show_reblogs": "Erakutsi bultzadak",
|
||||||
"home.column_settings.show_replies": "Erakutsi erantzunak",
|
"home.column_settings.show_replies": "Erakutsi erantzunak",
|
||||||
"keyboard_shortcuts.back": "atzera nabigatzeko",
|
"keyboard_shortcuts.back": "atzera nabigatzeko",
|
||||||
|
"keyboard_shortcuts.blocked": "blokeatutako erabiltzaileen zerrenda irekitzeko",
|
||||||
"keyboard_shortcuts.boost": "bultzada ematea",
|
"keyboard_shortcuts.boost": "bultzada ematea",
|
||||||
"keyboard_shortcuts.column": "mezu bat zutabe batean fokatzea",
|
"keyboard_shortcuts.column": "mezu bat zutabe batean fokatzea",
|
||||||
"keyboard_shortcuts.compose": "testua konposatzeko arean fokatzea",
|
"keyboard_shortcuts.compose": "testua konposatzeko arean fokatzea",
|
||||||
"keyboard_shortcuts.description": "Description",
|
"keyboard_shortcuts.description": "Description",
|
||||||
|
"keyboard_shortcuts.direct": "mezu zuzenen zutabea irekitzeko",
|
||||||
"keyboard_shortcuts.down": "zerrendan behera mugitzea",
|
"keyboard_shortcuts.down": "zerrendan behera mugitzea",
|
||||||
"keyboard_shortcuts.enter": "to open status",
|
"keyboard_shortcuts.enter": "to open status",
|
||||||
"keyboard_shortcuts.favourite": "gogoko egitea",
|
"keyboard_shortcuts.favourite": "gogoko egitea",
|
||||||
|
"keyboard_shortcuts.favourites": "gogokoen zerrenda irekitzeko",
|
||||||
|
"keyboard_shortcuts.federated": "federatutako denbora-lerroa irekitzeko",
|
||||||
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
||||||
|
"keyboard_shortcuts.home": "hasierako denbora-lerroa irekitzeko",
|
||||||
"keyboard_shortcuts.hotkey": "Laster-tekla",
|
"keyboard_shortcuts.hotkey": "Laster-tekla",
|
||||||
"keyboard_shortcuts.legend": "legenda hau bistaratzea",
|
"keyboard_shortcuts.legend": "legenda hau bistaratzea",
|
||||||
|
"keyboard_shortcuts.local": "denbora-lerro lokala irekitzeko",
|
||||||
"keyboard_shortcuts.mention": "egilea aipatzea",
|
"keyboard_shortcuts.mention": "egilea aipatzea",
|
||||||
|
"keyboard_shortcuts.muted": "mutututako erabiltzaileen zerrenda irekitzeko",
|
||||||
|
"keyboard_shortcuts.my_profile": "zure profila irekitzeko",
|
||||||
|
"keyboard_shortcuts.notifications": "jakinarazpenen zutabea irekitzeko",
|
||||||
|
"keyboard_shortcuts.pinned": "finkatutako toot-en zerrenda irekitzeko",
|
||||||
"keyboard_shortcuts.profile": "egilearen profila irekitzeko",
|
"keyboard_shortcuts.profile": "egilearen profila irekitzeko",
|
||||||
"keyboard_shortcuts.reply": "erantzutea",
|
"keyboard_shortcuts.reply": "erantzutea",
|
||||||
|
"keyboard_shortcuts.requests": "jarraitzeko eskarien zerrenda irekitzeko",
|
||||||
"keyboard_shortcuts.search": "bilaketan fokua jartzea",
|
"keyboard_shortcuts.search": "bilaketan fokua jartzea",
|
||||||
|
"keyboard_shortcuts.start": "\"Menua\" zutabea irekitzeko",
|
||||||
"keyboard_shortcuts.toggle_hidden": "testua erakustea/ezkutatzea abisu baten atzean",
|
"keyboard_shortcuts.toggle_hidden": "testua erakustea/ezkutatzea abisu baten atzean",
|
||||||
"keyboard_shortcuts.toot": "toot berria hastea",
|
"keyboard_shortcuts.toot": "toot berria hastea",
|
||||||
"keyboard_shortcuts.unfocus": "testua konposatzeko area / bilaketatik fokua kentzea",
|
"keyboard_shortcuts.unfocus": "testua konposatzeko area / bilaketatik fokua kentzea",
|
||||||
|
@ -171,10 +183,10 @@
|
||||||
"missing_indicator.label": "Ez aurkitua",
|
"missing_indicator.label": "Ez aurkitua",
|
||||||
"missing_indicator.sublabel": "Baliabide hau ezin izan da aurkitu",
|
"missing_indicator.sublabel": "Baliabide hau ezin izan da aurkitu",
|
||||||
"mute_modal.hide_notifications": "Ezkutatu erabiltzaile honen jakinarazpenak?",
|
"mute_modal.hide_notifications": "Ezkutatu erabiltzaile honen jakinarazpenak?",
|
||||||
"navigation_bar.apps": "Mobile apps",
|
"navigation_bar.apps": "Mugikorrerako aplikazioak",
|
||||||
"navigation_bar.blocks": "Blokeatutako erabiltzaileak",
|
"navigation_bar.blocks": "Blokeatutako erabiltzaileak",
|
||||||
"navigation_bar.community_timeline": "Denbora-lerro lokala",
|
"navigation_bar.community_timeline": "Denbora-lerro lokala",
|
||||||
"navigation_bar.compose": "Compose new toot",
|
"navigation_bar.compose": "Idatzi toot berria",
|
||||||
"navigation_bar.direct": "Mezu zuzenak",
|
"navigation_bar.direct": "Mezu zuzenak",
|
||||||
"navigation_bar.discover": "Aurkitu",
|
"navigation_bar.discover": "Aurkitu",
|
||||||
"navigation_bar.domain_blocks": "Ezkutatutako domeinuak",
|
"navigation_bar.domain_blocks": "Ezkutatutako domeinuak",
|
||||||
|
@ -268,7 +280,7 @@
|
||||||
"status.cancel_reblog_private": "Kendu bultzada",
|
"status.cancel_reblog_private": "Kendu bultzada",
|
||||||
"status.cannot_reblog": "Mezu honi ezin zaio bultzada eman",
|
"status.cannot_reblog": "Mezu honi ezin zaio bultzada eman",
|
||||||
"status.delete": "Ezabatu",
|
"status.delete": "Ezabatu",
|
||||||
"status.detailed_status": "Detailed conversation view",
|
"status.detailed_status": "Elkarrizketaren ikuspegi xehetsua",
|
||||||
"status.direct": "Mezu zuzena @{name}(r)i",
|
"status.direct": "Mezu zuzena @{name}(r)i",
|
||||||
"status.embed": "Txertatu",
|
"status.embed": "Txertatu",
|
||||||
"status.favourite": "Gogokoa",
|
"status.favourite": "Gogokoa",
|
||||||
|
@ -285,7 +297,7 @@
|
||||||
"status.reblog": "Bultzada",
|
"status.reblog": "Bultzada",
|
||||||
"status.reblog_private": "Bultzada jatorrizko hartzaileei",
|
"status.reblog_private": "Bultzada jatorrizko hartzaileei",
|
||||||
"status.reblogged_by": "{name}(r)en bultzada",
|
"status.reblogged_by": "{name}(r)en bultzada",
|
||||||
"status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
|
"status.reblogs.empty": "Ez dio inork bultzada eman toot honi oraindik. Inork egiten duenean, hemen agertuko dira.",
|
||||||
"status.redraft": "Ezabatu eta berridatzi",
|
"status.redraft": "Ezabatu eta berridatzi",
|
||||||
"status.reply": "Erantzun",
|
"status.reply": "Erantzun",
|
||||||
"status.replyAll": "Erantzun harian",
|
"status.replyAll": "Erantzun harian",
|
||||||
|
@ -307,7 +319,7 @@
|
||||||
"trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} hitz egiten",
|
"trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} hitz egiten",
|
||||||
"ui.beforeunload": "Zure zirriborroa galduko da Mastodon uzten baduzu.",
|
"ui.beforeunload": "Zure zirriborroa galduko da Mastodon uzten baduzu.",
|
||||||
"upload_area.title": "Arrastatu eta jaregin igotzeko",
|
"upload_area.title": "Arrastatu eta jaregin igotzeko",
|
||||||
"upload_button.label": "Gehitu multimedia",
|
"upload_button.label": "Gehitu multimedia (JPEG, PNG, GIF, WebM, MP4, MOV)",
|
||||||
"upload_form.description": "Deskribatu ikusmen arazoak dituztenentzat",
|
"upload_form.description": "Deskribatu ikusmen arazoak dituztenentzat",
|
||||||
"upload_form.focus": "Moztu",
|
"upload_form.focus": "Moztu",
|
||||||
"upload_form.undo": "Ezabatu",
|
"upload_form.undo": "Ezabatu",
|
||||||
|
|
|
@ -10,9 +10,9 @@
|
||||||
"account.endorse": "نمایش در نمایه",
|
"account.endorse": "نمایش در نمایه",
|
||||||
"account.follow": "پی بگیرید",
|
"account.follow": "پی بگیرید",
|
||||||
"account.followers": "پیگیران",
|
"account.followers": "پیگیران",
|
||||||
"account.followers.empty": "No one follows this user yet.",
|
"account.followers.empty": "هنوز هیچ کسی پیگیر این کاربر نیست.",
|
||||||
"account.follows": "پی میگیرد",
|
"account.follows": "پی میگیرد",
|
||||||
"account.follows.empty": "This user doesn't follow anyone yet.",
|
"account.follows.empty": "این کاربر هنوز هیچ کسی را پی نمیگیرد.",
|
||||||
"account.follows_you": "پیگیر شماست",
|
"account.follows_you": "پیگیر شماست",
|
||||||
"account.hide_reblogs": "پنهان کردن بازبوقهای @{name}",
|
"account.hide_reblogs": "پنهان کردن بازبوقهای @{name}",
|
||||||
"account.media": "عکس و ویدیو",
|
"account.media": "عکس و ویدیو",
|
||||||
|
@ -89,7 +89,7 @@
|
||||||
"confirmations.mute.confirm": "بیصدا کن",
|
"confirmations.mute.confirm": "بیصدا کن",
|
||||||
"confirmations.mute.message": "آیا واقعاً میخواهید {name} را بیصدا کنید؟",
|
"confirmations.mute.message": "آیا واقعاً میخواهید {name} را بیصدا کنید؟",
|
||||||
"confirmations.redraft.confirm": "پاککردن و بازنویسی",
|
"confirmations.redraft.confirm": "پاککردن و بازنویسی",
|
||||||
"confirmations.redraft.message": "آیا واقعاً میخواهید این نوشته را پاک کنید و آن را از نو بنویسید؟ با این کار همهٔ پاسخها، بازبوقها، و پسندیدهشدنهای آن از دست میرود.",
|
"confirmations.redraft.message": "آیا واقعاً میخواهید این نوشته را پاک کنید و آن را از نو بنویسید؟ با این کار بازبوقها و پسندیدهشدنهای آن از دست میرود و پاسخها به آن بیمرجع میشود.",
|
||||||
"confirmations.unfollow.confirm": "لغو پیگیری",
|
"confirmations.unfollow.confirm": "لغو پیگیری",
|
||||||
"confirmations.unfollow.message": "آیا واقعاً میخواهید به پیگیری از {name} پایان دهید؟",
|
"confirmations.unfollow.message": "آیا واقعاً میخواهید به پیگیری از {name} پایان دهید؟",
|
||||||
"embed.instructions": "برای جاگذاری این نوشته در سایت خودتان، کد زیر را کپی کنید.",
|
"embed.instructions": "برای جاگذاری این نوشته در سایت خودتان، کد زیر را کپی کنید.",
|
||||||
|
@ -108,19 +108,19 @@
|
||||||
"emoji_button.search_results": "نتایج جستجو",
|
"emoji_button.search_results": "نتایج جستجو",
|
||||||
"emoji_button.symbols": "نمادها",
|
"emoji_button.symbols": "نمادها",
|
||||||
"emoji_button.travel": "سفر و مکان",
|
"emoji_button.travel": "سفر و مکان",
|
||||||
"empty_column.blocks": "You haven't blocked any users yet.",
|
"empty_column.blocks": "شما هنوز هیچ کسی را مسدود نکردهاید.",
|
||||||
"empty_column.community": "فهرست نوشتههای محلی خالی است. چیزی بنویسید تا چرخش بچرخد!",
|
"empty_column.community": "فهرست نوشتههای محلی خالی است. چیزی بنویسید تا چرخش بچرخد!",
|
||||||
"empty_column.direct": "شما هیچ پیغام مستقیمی ندارید. اگر چنین پیغامی بگیرید یا بفرستید اینجا نمایش خواهد یافت.",
|
"empty_column.direct": "شما هیچ پیغام مستقیمی ندارید. اگر چنین پیغامی بگیرید یا بفرستید اینجا نمایش خواهد یافت.",
|
||||||
"empty_column.domain_blocks": "There are no hidden domains yet.",
|
"empty_column.domain_blocks": "هنوز هیچ دامینی پنهان نشده است.",
|
||||||
"empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
|
"empty_column.favourited_statuses": "شما هنوز هیچ بوقی را نپسندیدهاید. وقتی بوقی را بپسندید، اینجا نمایش خواهد یافت.",
|
||||||
"empty_column.favourites": "No one has favourited this toot yet. When someone does, they will show up here.",
|
"empty_column.favourites": "هنوز هیچ کسی این بوق را نپسندیده است. وقتی کسی آن را بپسندد، نامش اینجا نمایش خواهد یافت.",
|
||||||
"empty_column.follow_requests": "You don't have any follow requests yet. When you receive one, it will show up here.",
|
"empty_column.follow_requests": "شما هنوز هیچ درخواست پیگیریای ندارید. وقتی چنین درخواستی بگیرید، اینجا نمایش خواهد یافت.",
|
||||||
"empty_column.hashtag": "هنوز هیچ چیزی با این هشتگ نیست.",
|
"empty_column.hashtag": "هنوز هیچ چیزی با این هشتگ نیست.",
|
||||||
"empty_column.home": "شما هنوز پیگیر کسی نیستید. {public} را ببینید یا چیزی را جستجو کنید تا کاربران دیگر را ببینید.",
|
"empty_column.home": "شما هنوز پیگیر کسی نیستید. {public} را ببینید یا چیزی را جستجو کنید تا کاربران دیگر را ببینید.",
|
||||||
"empty_column.home.public_timeline": "فهرست نوشتههای همهجا",
|
"empty_column.home.public_timeline": "فهرست نوشتههای همهجا",
|
||||||
"empty_column.list": "در این فهرست هنوز چیزی نیست. وقتی اعضای این فهرست چیزی بنویسند، اینجا ظاهر خواهد شد.",
|
"empty_column.list": "در این فهرست هنوز چیزی نیست. وقتی اعضای این فهرست چیزی بنویسند، اینجا ظاهر خواهد شد.",
|
||||||
"empty_column.lists": "You don't have any lists yet. When you create one, it will show up here.",
|
"empty_column.lists": "شما هنوز هیچ فهرستی ندارید. اگر فهرستی بسازید، اینجا نمایش خواهد یافت.",
|
||||||
"empty_column.mutes": "You haven't muted any users yet.",
|
"empty_column.mutes": "شما هنوز هیچ کاربری را بیصدا نکردهاید.",
|
||||||
"empty_column.notifications": "هنوز هیچ اعلانی ندارید. به نوشتههای دیگران واکنش نشان دهید تا گفتگو آغاز شود.",
|
"empty_column.notifications": "هنوز هیچ اعلانی ندارید. به نوشتههای دیگران واکنش نشان دهید تا گفتگو آغاز شود.",
|
||||||
"empty_column.public": "اینجا هنوز چیزی نیست! خودتان چیزی بنویسید یا کاربران دیگر را پی بگیرید تا اینجا پر شود",
|
"empty_column.public": "اینجا هنوز چیزی نیست! خودتان چیزی بنویسید یا کاربران دیگر را پی بگیرید تا اینجا پر شود",
|
||||||
"follow_request.authorize": "اجازه دهید",
|
"follow_request.authorize": "اجازه دهید",
|
||||||
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "نمایش بازبوقها",
|
"home.column_settings.show_reblogs": "نمایش بازبوقها",
|
||||||
"home.column_settings.show_replies": "نمایش پاسخها",
|
"home.column_settings.show_replies": "نمایش پاسخها",
|
||||||
"keyboard_shortcuts.back": "برای بازگشت",
|
"keyboard_shortcuts.back": "برای بازگشت",
|
||||||
|
"keyboard_shortcuts.blocked": "برای گشودن کاربران بیصداشده",
|
||||||
"keyboard_shortcuts.boost": "برای بازبوقیدن",
|
"keyboard_shortcuts.boost": "برای بازبوقیدن",
|
||||||
"keyboard_shortcuts.column": "برای برجستهکردن یک نوشته در یکی از ستونها",
|
"keyboard_shortcuts.column": "برای برجستهکردن یک نوشته در یکی از ستونها",
|
||||||
"keyboard_shortcuts.compose": "برای فعالکردن کادر نوشتهٔ تازه",
|
"keyboard_shortcuts.compose": "برای فعالکردن کادر نوشتهٔ تازه",
|
||||||
"keyboard_shortcuts.description": "توضیح",
|
"keyboard_shortcuts.description": "توضیح",
|
||||||
|
"keyboard_shortcuts.direct": "برای گشودن ستون پیغامهای مستقیم",
|
||||||
"keyboard_shortcuts.down": "برای پایینرفتن در فهرست",
|
"keyboard_shortcuts.down": "برای پایینرفتن در فهرست",
|
||||||
"keyboard_shortcuts.enter": "برای گشودن نوشته",
|
"keyboard_shortcuts.enter": "برای گشودن نوشته",
|
||||||
"keyboard_shortcuts.favourite": "برای پسندیدن",
|
"keyboard_shortcuts.favourite": "برای پسندیدن",
|
||||||
|
"keyboard_shortcuts.favourites": "برای گشودن پیغامهای پسندیدهشده",
|
||||||
|
"keyboard_shortcuts.federated": "برای گشودن فهرست نوشتههای همهجا",
|
||||||
"keyboard_shortcuts.heading": "میانبرهای صفحهکلید",
|
"keyboard_shortcuts.heading": "میانبرهای صفحهکلید",
|
||||||
|
"keyboard_shortcuts.home": "برای گشودن ستون اصلی پیگیریها",
|
||||||
"keyboard_shortcuts.hotkey": "میانبر",
|
"keyboard_shortcuts.hotkey": "میانبر",
|
||||||
"keyboard_shortcuts.legend": "برای نمایش این راهنما",
|
"keyboard_shortcuts.legend": "برای نمایش این راهنما",
|
||||||
|
"keyboard_shortcuts.local": "برای گشودن فهرست نوشتههای محلی",
|
||||||
"keyboard_shortcuts.mention": "برای نامبردن از نویسنده",
|
"keyboard_shortcuts.mention": "برای نامبردن از نویسنده",
|
||||||
|
"keyboard_shortcuts.muted": "برای گشودن فهرست کاربران بیصداشده",
|
||||||
|
"keyboard_shortcuts.my_profile": "برای گشودن صفحهٔ نمایهٔ شما",
|
||||||
|
"keyboard_shortcuts.notifications": "برای گشودن ستون اعلانها",
|
||||||
|
"keyboard_shortcuts.pinned": "برای گشودن فهرست نوشتههای ثابت",
|
||||||
"keyboard_shortcuts.profile": "گشودن نمایهٔ نویسنده",
|
"keyboard_shortcuts.profile": "گشودن نمایهٔ نویسنده",
|
||||||
"keyboard_shortcuts.reply": "برای پاسخدادن",
|
"keyboard_shortcuts.reply": "برای پاسخدادن",
|
||||||
|
"keyboard_shortcuts.requests": "برای گشودن فهرست درخواستهای پیگیری",
|
||||||
"keyboard_shortcuts.search": "برای فعالکردن جستجو",
|
"keyboard_shortcuts.search": "برای فعالکردن جستجو",
|
||||||
|
"keyboard_shortcuts.start": "برای گشودن ستون «آغاز کنید»",
|
||||||
"keyboard_shortcuts.toggle_hidden": "برای نمایش/نهفتن نوشتهٔ پشت هشدار محتوا",
|
"keyboard_shortcuts.toggle_hidden": "برای نمایش/نهفتن نوشتهٔ پشت هشدار محتوا",
|
||||||
"keyboard_shortcuts.toot": "برای آغاز یک بوق تازه",
|
"keyboard_shortcuts.toot": "برای آغاز یک بوق تازه",
|
||||||
"keyboard_shortcuts.unfocus": "برای برداشتن توجه از نوشتن/جستجو",
|
"keyboard_shortcuts.unfocus": "برای برداشتن توجه از نوشتن/جستجو",
|
||||||
|
@ -171,11 +183,11 @@
|
||||||
"missing_indicator.label": "پیدا نشد",
|
"missing_indicator.label": "پیدا نشد",
|
||||||
"missing_indicator.sublabel": "این منبع پیدا نشد",
|
"missing_indicator.sublabel": "این منبع پیدا نشد",
|
||||||
"mute_modal.hide_notifications": "اعلانهای این کاربر پنهان شود؟",
|
"mute_modal.hide_notifications": "اعلانهای این کاربر پنهان شود؟",
|
||||||
"navigation_bar.apps": "Mobile apps",
|
"navigation_bar.apps": "اپهای موبایل",
|
||||||
"navigation_bar.blocks": "کاربران مسدودشده",
|
"navigation_bar.blocks": "کاربران مسدودشده",
|
||||||
"navigation_bar.community_timeline": "نوشتههای محلی",
|
"navigation_bar.community_timeline": "نوشتههای محلی",
|
||||||
"navigation_bar.compose": "Compose new toot",
|
"navigation_bar.compose": "نوشتن بوق تازه",
|
||||||
"navigation_bar.direct": "پیغامهای خصوصی",
|
"navigation_bar.direct": "پیغامهای مستقیم",
|
||||||
"navigation_bar.discover": "گشت و گذار",
|
"navigation_bar.discover": "گشت و گذار",
|
||||||
"navigation_bar.domain_blocks": "دامینهای پنهانشده",
|
"navigation_bar.domain_blocks": "دامینهای پنهانشده",
|
||||||
"navigation_bar.edit_profile": "ویرایش نمایه",
|
"navigation_bar.edit_profile": "ویرایش نمایه",
|
||||||
|
@ -268,7 +280,7 @@
|
||||||
"status.cancel_reblog_private": "حذف بازبوق",
|
"status.cancel_reblog_private": "حذف بازبوق",
|
||||||
"status.cannot_reblog": "این نوشته را نمیشود بازبوقید",
|
"status.cannot_reblog": "این نوشته را نمیشود بازبوقید",
|
||||||
"status.delete": "پاککردن",
|
"status.delete": "پاککردن",
|
||||||
"status.detailed_status": "Detailed conversation view",
|
"status.detailed_status": "نمایش کامل گفتگو",
|
||||||
"status.direct": "پیغام مستقیم به @{name}",
|
"status.direct": "پیغام مستقیم به @{name}",
|
||||||
"status.embed": "جاگذاری",
|
"status.embed": "جاگذاری",
|
||||||
"status.favourite": "پسندیدن",
|
"status.favourite": "پسندیدن",
|
||||||
|
@ -285,7 +297,7 @@
|
||||||
"status.reblog": "بازبوقیدن",
|
"status.reblog": "بازبوقیدن",
|
||||||
"status.reblog_private": "بازبوق به مخاطبان اولیه",
|
"status.reblog_private": "بازبوق به مخاطبان اولیه",
|
||||||
"status.reblogged_by": "{name} بازبوقید",
|
"status.reblogged_by": "{name} بازبوقید",
|
||||||
"status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
|
"status.reblogs.empty": "هنوز هیچ کسی این بوق را بازنبوقیده است. وقتی کسی چنین کاری کند، اینجا نمایش خواهد یافت.",
|
||||||
"status.redraft": "پاککردن و بازنویسی",
|
"status.redraft": "پاککردن و بازنویسی",
|
||||||
"status.reply": "پاسخ",
|
"status.reply": "پاسخ",
|
||||||
"status.replyAll": "به نوشته پاسخ دهید",
|
"status.replyAll": "به نوشته پاسخ دهید",
|
||||||
|
@ -307,7 +319,7 @@
|
||||||
"trends.count_by_accounts": "{count} {rawCount, plural, one {نفر نوشته است} other {نفر نوشتهاند}}",
|
"trends.count_by_accounts": "{count} {rawCount, plural, one {نفر نوشته است} other {نفر نوشتهاند}}",
|
||||||
"ui.beforeunload": "اگر از ماستدون خارج شوید پیشنویس شما پاک خواهد شد.",
|
"ui.beforeunload": "اگر از ماستدون خارج شوید پیشنویس شما پاک خواهد شد.",
|
||||||
"upload_area.title": "برای بارگذاری به اینجا بکشید",
|
"upload_area.title": "برای بارگذاری به اینجا بکشید",
|
||||||
"upload_button.label": "افزودن تصویر",
|
"upload_button.label": "افزودن عکس و ویدیو (JPEG, PNG, GIF, WebM, MP4, MOV)",
|
||||||
"upload_form.description": "نوشتهٔ توضیحی برای کمبینایان و نابینایان",
|
"upload_form.description": "نوشتهٔ توضیحی برای کمبینایان و نابینایان",
|
||||||
"upload_form.focus": "بریدن لبهها",
|
"upload_form.focus": "بریدن لبهها",
|
||||||
"upload_form.undo": "حذف",
|
"upload_form.undo": "حذف",
|
||||||
|
|
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Näytä buustaukset",
|
"home.column_settings.show_reblogs": "Näytä buustaukset",
|
||||||
"home.column_settings.show_replies": "Näytä vastaukset",
|
"home.column_settings.show_replies": "Näytä vastaukset",
|
||||||
"keyboard_shortcuts.back": "liiku taaksepäin",
|
"keyboard_shortcuts.back": "liiku taaksepäin",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "buustaa",
|
"keyboard_shortcuts.boost": "buustaa",
|
||||||
"keyboard_shortcuts.column": "siirrä fokus tietyn sarakkeen tilapäivitykseen",
|
"keyboard_shortcuts.column": "siirrä fokus tietyn sarakkeen tilapäivitykseen",
|
||||||
"keyboard_shortcuts.compose": "siirry tekstinsyöttöön",
|
"keyboard_shortcuts.compose": "siirry tekstinsyöttöön",
|
||||||
"keyboard_shortcuts.description": "Kuvaus",
|
"keyboard_shortcuts.description": "Kuvaus",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "siirry listassa alaspäin",
|
"keyboard_shortcuts.down": "siirry listassa alaspäin",
|
||||||
"keyboard_shortcuts.enter": "avaa tilapäivitys",
|
"keyboard_shortcuts.enter": "avaa tilapäivitys",
|
||||||
"keyboard_shortcuts.favourite": "tykkää",
|
"keyboard_shortcuts.favourite": "tykkää",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Näppäinkomennot",
|
"keyboard_shortcuts.heading": "Näppäinkomennot",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "Pikanäppäin",
|
"keyboard_shortcuts.hotkey": "Pikanäppäin",
|
||||||
"keyboard_shortcuts.legend": "näytä tämä selite",
|
"keyboard_shortcuts.legend": "näytä tämä selite",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "mainitse julkaisija",
|
"keyboard_shortcuts.mention": "mainitse julkaisija",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "to open author's profile",
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "vastaa",
|
"keyboard_shortcuts.reply": "vastaa",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "siirry hakukenttään",
|
"keyboard_shortcuts.search": "siirry hakukenttään",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "näytä/piilota sisältövaroituksella merkitty teksti",
|
"keyboard_shortcuts.toggle_hidden": "näytä/piilota sisältövaroituksella merkitty teksti",
|
||||||
"keyboard_shortcuts.toot": "ala kirjoittaa uutta tuuttausta",
|
"keyboard_shortcuts.toot": "ala kirjoittaa uutta tuuttausta",
|
||||||
"keyboard_shortcuts.unfocus": "siirry pois tekstikentästä tai hakukentästä",
|
"keyboard_shortcuts.unfocus": "siirry pois tekstikentästä tai hakukentästä",
|
||||||
|
|
|
@ -10,9 +10,9 @@
|
||||||
"account.endorse": "Figure sur le profil",
|
"account.endorse": "Figure sur le profil",
|
||||||
"account.follow": "Suivre",
|
"account.follow": "Suivre",
|
||||||
"account.followers": "Abonné⋅e⋅s",
|
"account.followers": "Abonné⋅e⋅s",
|
||||||
"account.followers.empty": "No one follows this user yet.",
|
"account.followers.empty": "Personne ne suit cet utilisateur pour l'instant.",
|
||||||
"account.follows": "Abonnements",
|
"account.follows": "Abonnements",
|
||||||
"account.follows.empty": "This user doesn't follow anyone yet.",
|
"account.follows.empty": "Cet utilisateur ne suit personne pour l'instant.",
|
||||||
"account.follows_you": "Vous suit",
|
"account.follows_you": "Vous suit",
|
||||||
"account.hide_reblogs": "Masquer les partages de @{name}",
|
"account.hide_reblogs": "Masquer les partages de @{name}",
|
||||||
"account.media": "Média",
|
"account.media": "Média",
|
||||||
|
@ -108,19 +108,19 @@
|
||||||
"emoji_button.search_results": "Résultats de la recherche",
|
"emoji_button.search_results": "Résultats de la recherche",
|
||||||
"emoji_button.symbols": "Symboles",
|
"emoji_button.symbols": "Symboles",
|
||||||
"emoji_button.travel": "Lieux & Voyages",
|
"emoji_button.travel": "Lieux & Voyages",
|
||||||
"empty_column.blocks": "You haven't blocked any users yet.",
|
"empty_column.blocks": "Vous n'avez bloqué aucun utilisateur pour le moment.",
|
||||||
"empty_column.community": "Le fil public local est vide. Écrivez donc quelque chose pour le remplir !",
|
"empty_column.community": "Le fil public local est vide. Écrivez donc quelque chose pour le remplir !",
|
||||||
"empty_column.direct": "Vous n’avez pas encore de messages directs. Lorsque vous en enverrez ou recevrez un, il s’affichera ici.",
|
"empty_column.direct": "Vous n’avez pas encore de messages directs. Lorsque vous en enverrez ou recevrez un, il s’affichera ici.",
|
||||||
"empty_column.domain_blocks": "There are no hidden domains yet.",
|
"empty_column.domain_blocks": "Il n'y a aucun domaine caché pour le moment.",
|
||||||
"empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
|
"empty_column.favourited_statuses": "Vous n'avez aucun pouet favoris pour le moment. Lorsque vous en mettrez un en favori, il apparaîtra ici.",
|
||||||
"empty_column.favourites": "No one has favourited this toot yet. When someone does, they will show up here.",
|
"empty_column.favourites": "Personne n'a encore mis ce pouet en favori. Lorsque quelqu'un le fera, il apparaîtra ici.",
|
||||||
"empty_column.follow_requests": "You don't have any follow requests yet. When you receive one, it will show up here.",
|
"empty_column.follow_requests": "Vous n'avez pas encore de demande de suivi. Lorsque vous en recevrez une, elle apparaîtra ici.",
|
||||||
"empty_column.hashtag": "Il n’y a encore aucun contenu associé à ce hashtag.",
|
"empty_column.hashtag": "Il n’y a encore aucun contenu associé à ce hashtag.",
|
||||||
"empty_column.home": "Vous ne suivez personne. Visitez {public} ou utilisez la recherche pour trouver d’autres personnes à suivre.",
|
"empty_column.home": "Vous ne suivez personne. Visitez {public} ou utilisez la recherche pour trouver d’autres personnes à suivre.",
|
||||||
"empty_column.home.public_timeline": "le fil public",
|
"empty_column.home.public_timeline": "le fil public",
|
||||||
"empty_column.list": "Il n’y a rien dans cette liste pour l’instant. Dès que des personnes de cette liste publieront de nouveaux statuts, ils apparaîtront ici.",
|
"empty_column.list": "Il n’y a rien dans cette liste pour l’instant. Dès que des personnes de cette liste publieront de nouveaux statuts, ils apparaîtront ici.",
|
||||||
"empty_column.lists": "You don't have any lists yet. When you create one, it will show up here.",
|
"empty_column.lists": "Vous n'avez pas encore de liste. Lorsque vous en créerez une, elle apparaîtra ici.",
|
||||||
"empty_column.mutes": "You haven't muted any users yet.",
|
"empty_column.mutes": "Vous n'avez pas encore mis des utilisateurs en silence.",
|
||||||
"empty_column.notifications": "Vous n’avez pas encore de notification. Interagissez avec d’autres personnes pour débuter la conversation.",
|
"empty_column.notifications": "Vous n’avez pas encore de notification. Interagissez avec d’autres personnes pour débuter la conversation.",
|
||||||
"empty_column.public": "Il n’y a rien ici ! Écrivez quelque chose publiquement, ou bien suivez manuellement des personnes d’autres instances pour remplir le fil public",
|
"empty_column.public": "Il n’y a rien ici ! Écrivez quelque chose publiquement, ou bien suivez manuellement des personnes d’autres instances pour remplir le fil public",
|
||||||
"follow_request.authorize": "Accepter",
|
"follow_request.authorize": "Accepter",
|
||||||
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Afficher les partages",
|
"home.column_settings.show_reblogs": "Afficher les partages",
|
||||||
"home.column_settings.show_replies": "Afficher les réponses",
|
"home.column_settings.show_replies": "Afficher les réponses",
|
||||||
"keyboard_shortcuts.back": "revenir en arrière",
|
"keyboard_shortcuts.back": "revenir en arrière",
|
||||||
|
"keyboard_shortcuts.blocked": "pour ouvrir une liste d'utilisateurs bloqués",
|
||||||
"keyboard_shortcuts.boost": "partager",
|
"keyboard_shortcuts.boost": "partager",
|
||||||
"keyboard_shortcuts.column": "focaliser un statut dans l’une des colonnes",
|
"keyboard_shortcuts.column": "focaliser un statut dans l’une des colonnes",
|
||||||
"keyboard_shortcuts.compose": "pour centrer la zone de rédaction",
|
"keyboard_shortcuts.compose": "pour centrer la zone de rédaction",
|
||||||
"keyboard_shortcuts.description": "Description",
|
"keyboard_shortcuts.description": "Description",
|
||||||
|
"keyboard_shortcuts.direct": "pour ouvrir une colonne des messages directs",
|
||||||
"keyboard_shortcuts.down": "pour descendre dans la liste",
|
"keyboard_shortcuts.down": "pour descendre dans la liste",
|
||||||
"keyboard_shortcuts.enter": "pour ouvrir le statut",
|
"keyboard_shortcuts.enter": "pour ouvrir le statut",
|
||||||
"keyboard_shortcuts.favourite": "vers les favoris",
|
"keyboard_shortcuts.favourite": "vers les favoris",
|
||||||
|
"keyboard_shortcuts.favourites": "pour ouvrir une liste de favoris",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Raccourcis clavier",
|
"keyboard_shortcuts.heading": "Raccourcis clavier",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "Raccourci",
|
"keyboard_shortcuts.hotkey": "Raccourci",
|
||||||
"keyboard_shortcuts.legend": "pour afficher cette légende",
|
"keyboard_shortcuts.legend": "pour afficher cette légende",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "pour mentionner l’auteur·rice",
|
"keyboard_shortcuts.mention": "pour mentionner l’auteur·rice",
|
||||||
|
"keyboard_shortcuts.muted": "pour ouvrir la liste des utilisateurs rendus muets",
|
||||||
|
"keyboard_shortcuts.my_profile": "pour ouvrir votre profil",
|
||||||
|
"keyboard_shortcuts.notifications": "pour ouvrir votre colonne de notifications",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "pour ouvrir le profil de l’auteur·rice",
|
"keyboard_shortcuts.profile": "pour ouvrir le profil de l’auteur·rice",
|
||||||
"keyboard_shortcuts.reply": "pour répondre",
|
"keyboard_shortcuts.reply": "pour répondre",
|
||||||
|
"keyboard_shortcuts.requests": "pour ouvrir la liste de demandes de suivi",
|
||||||
"keyboard_shortcuts.search": "pour cibler la recherche",
|
"keyboard_shortcuts.search": "pour cibler la recherche",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "pour afficher/cacher un texte derrière CW",
|
"keyboard_shortcuts.toggle_hidden": "pour afficher/cacher un texte derrière CW",
|
||||||
"keyboard_shortcuts.toot": "pour démarrer un tout nouveau pouet",
|
"keyboard_shortcuts.toot": "pour démarrer un tout nouveau pouet",
|
||||||
"keyboard_shortcuts.unfocus": "pour recentrer composer textarea/search",
|
"keyboard_shortcuts.unfocus": "pour recentrer composer textarea/search",
|
||||||
|
@ -174,7 +186,7 @@
|
||||||
"navigation_bar.apps": "Applications mobiles",
|
"navigation_bar.apps": "Applications mobiles",
|
||||||
"navigation_bar.blocks": "Comptes bloqués",
|
"navigation_bar.blocks": "Comptes bloqués",
|
||||||
"navigation_bar.community_timeline": "Fil public local",
|
"navigation_bar.community_timeline": "Fil public local",
|
||||||
"navigation_bar.compose": "Compose new toot",
|
"navigation_bar.compose": "Rédiger un nouveau toot",
|
||||||
"navigation_bar.direct": "Messages directs",
|
"navigation_bar.direct": "Messages directs",
|
||||||
"navigation_bar.discover": "Découvrir",
|
"navigation_bar.discover": "Découvrir",
|
||||||
"navigation_bar.domain_blocks": "Domaines cachés",
|
"navigation_bar.domain_blocks": "Domaines cachés",
|
||||||
|
@ -268,7 +280,7 @@
|
||||||
"status.cancel_reblog_private": "Dé-booster",
|
"status.cancel_reblog_private": "Dé-booster",
|
||||||
"status.cannot_reblog": "Cette publication ne peut être boostée",
|
"status.cannot_reblog": "Cette publication ne peut être boostée",
|
||||||
"status.delete": "Effacer",
|
"status.delete": "Effacer",
|
||||||
"status.detailed_status": "Detailed conversation view",
|
"status.detailed_status": "Vue détaillée de la conversation",
|
||||||
"status.direct": "Envoyer un message direct à @{name}",
|
"status.direct": "Envoyer un message direct à @{name}",
|
||||||
"status.embed": "Intégrer",
|
"status.embed": "Intégrer",
|
||||||
"status.favourite": "Ajouter aux favoris",
|
"status.favourite": "Ajouter aux favoris",
|
||||||
|
@ -307,7 +319,7 @@
|
||||||
"trends.count_by_accounts": "{count} {rawCount, plural, one {personne} other {personnes}} discutent",
|
"trends.count_by_accounts": "{count} {rawCount, plural, one {personne} other {personnes}} discutent",
|
||||||
"ui.beforeunload": "Votre brouillon sera perdu si vous quittez Mastodon.",
|
"ui.beforeunload": "Votre brouillon sera perdu si vous quittez Mastodon.",
|
||||||
"upload_area.title": "Glissez et déposez pour envoyer",
|
"upload_area.title": "Glissez et déposez pour envoyer",
|
||||||
"upload_button.label": "Joindre un média",
|
"upload_button.label": "Joindre un média (JPEG, PNG, GIF, WebM, MP4, MOV)",
|
||||||
"upload_form.description": "Décrire pour les malvoyant·e·s",
|
"upload_form.description": "Décrire pour les malvoyant·e·s",
|
||||||
"upload_form.focus": "Recadrer",
|
"upload_form.focus": "Recadrer",
|
||||||
"upload_form.undo": "Supprimer",
|
"upload_form.undo": "Supprimer",
|
||||||
|
|
|
@ -89,7 +89,7 @@
|
||||||
"confirmations.mute.confirm": "Acalar",
|
"confirmations.mute.confirm": "Acalar",
|
||||||
"confirmations.mute.message": "Está segura de que quere acalar a {name}?",
|
"confirmations.mute.message": "Está segura de que quere acalar a {name}?",
|
||||||
"confirmations.redraft.confirm": "Eliminar e reescribir",
|
"confirmations.redraft.confirm": "Eliminar e reescribir",
|
||||||
"confirmations.redraft.message": "Está segura de querer eliminar este estado e voltalo a escribir? Perderá todas as réplicas, promocións e favoritas da mensaxe.",
|
"confirmations.redraft.message": "Está segura de querer eliminar este estado e voltalo a escribir? Perderá réplicas e favoritas, e as respostas ao orixinal quedarán orfas.",
|
||||||
"confirmations.unfollow.confirm": "Deixar de seguir",
|
"confirmations.unfollow.confirm": "Deixar de seguir",
|
||||||
"confirmations.unfollow.message": "Quere deixar de seguir a {name}?",
|
"confirmations.unfollow.message": "Quere deixar de seguir a {name}?",
|
||||||
"embed.instructions": "Copie o código inferior para incrustar no seu sitio web este estado.",
|
"embed.instructions": "Copie o código inferior para incrustar no seu sitio web este estado.",
|
||||||
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Mostrar repeticións",
|
"home.column_settings.show_reblogs": "Mostrar repeticións",
|
||||||
"home.column_settings.show_replies": "Mostrar respostas",
|
"home.column_settings.show_replies": "Mostrar respostas",
|
||||||
"keyboard_shortcuts.back": "voltar atrás",
|
"keyboard_shortcuts.back": "voltar atrás",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "promover",
|
"keyboard_shortcuts.boost": "promover",
|
||||||
"keyboard_shortcuts.column": "destacar un estado en unha das columnas",
|
"keyboard_shortcuts.column": "destacar un estado en unha das columnas",
|
||||||
"keyboard_shortcuts.compose": "Foco no área de escritura",
|
"keyboard_shortcuts.compose": "Foco no área de escritura",
|
||||||
"keyboard_shortcuts.description": "Descrición",
|
"keyboard_shortcuts.description": "Descrición",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "ir hacia abaixo na lista",
|
"keyboard_shortcuts.down": "ir hacia abaixo na lista",
|
||||||
"keyboard_shortcuts.enter": "abrir estado",
|
"keyboard_shortcuts.enter": "abrir estado",
|
||||||
"keyboard_shortcuts.favourite": "marcar como favorito",
|
"keyboard_shortcuts.favourite": "marcar como favorito",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Atallos do teclado",
|
"keyboard_shortcuts.heading": "Atallos do teclado",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "Tecla de acceso directo",
|
"keyboard_shortcuts.hotkey": "Tecla de acceso directo",
|
||||||
"keyboard_shortcuts.legend": "para mostrar esta lenda",
|
"keyboard_shortcuts.legend": "para mostrar esta lenda",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "para mencionar o autor",
|
"keyboard_shortcuts.mention": "para mencionar o autor",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "to open author's profile",
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "para responder",
|
"keyboard_shortcuts.reply": "para responder",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "para centrar a busca",
|
"keyboard_shortcuts.search": "para centrar a busca",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "mostrar/agochar un texto detrás do AC",
|
"keyboard_shortcuts.toggle_hidden": "mostrar/agochar un texto detrás do AC",
|
||||||
"keyboard_shortcuts.toot": "escribir un toot novo",
|
"keyboard_shortcuts.toot": "escribir un toot novo",
|
||||||
"keyboard_shortcuts.unfocus": "quitar o foco do área de escritura/busca",
|
"keyboard_shortcuts.unfocus": "quitar o foco do área de escritura/busca",
|
||||||
|
@ -307,7 +319,7 @@
|
||||||
"trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking",
|
"trends.count_by_accounts": "{count} {rawCount, plural, one {person} other {people}} talking",
|
||||||
"ui.beforeunload": "O borrador perderase se sae de Mastodon.",
|
"ui.beforeunload": "O borrador perderase se sae de Mastodon.",
|
||||||
"upload_area.title": "Arrastre e solte para subir",
|
"upload_area.title": "Arrastre e solte para subir",
|
||||||
"upload_button.label": "Engadir medios",
|
"upload_button.label": "Engadir medios (JPEG, PNG, GIF, WebM, MP4, MOV)",
|
||||||
"upload_form.description": "Describa para deficientes visuais",
|
"upload_form.description": "Describa para deficientes visuais",
|
||||||
"upload_form.focus": "Recortar",
|
"upload_form.focus": "Recortar",
|
||||||
"upload_form.undo": "Eliminar",
|
"upload_form.undo": "Eliminar",
|
||||||
|
|
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "הצגת הדהודים",
|
"home.column_settings.show_reblogs": "הצגת הדהודים",
|
||||||
"home.column_settings.show_replies": "הצגת תגובות",
|
"home.column_settings.show_replies": "הצגת תגובות",
|
||||||
"keyboard_shortcuts.back": "ניווט חזרה",
|
"keyboard_shortcuts.back": "ניווט חזרה",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "להדהד",
|
"keyboard_shortcuts.boost": "להדהד",
|
||||||
"keyboard_shortcuts.column": "להתמקד בהודעה באחד מהטורים",
|
"keyboard_shortcuts.column": "להתמקד בהודעה באחד מהטורים",
|
||||||
"keyboard_shortcuts.compose": "להתמקד בתיבת חיבור ההודעות",
|
"keyboard_shortcuts.compose": "להתמקד בתיבת חיבור ההודעות",
|
||||||
"keyboard_shortcuts.description": "Description",
|
"keyboard_shortcuts.description": "Description",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "לנוע במורד הרשימה",
|
"keyboard_shortcuts.down": "לנוע במורד הרשימה",
|
||||||
"keyboard_shortcuts.enter": "to open status",
|
"keyboard_shortcuts.enter": "to open status",
|
||||||
"keyboard_shortcuts.favourite": "לחבב",
|
"keyboard_shortcuts.favourite": "לחבב",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "מקש קיצור",
|
"keyboard_shortcuts.hotkey": "מקש קיצור",
|
||||||
"keyboard_shortcuts.legend": "להציג את הפירוש",
|
"keyboard_shortcuts.legend": "להציג את הפירוש",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "לאזכר את המחבר(ת)",
|
"keyboard_shortcuts.mention": "לאזכר את המחבר(ת)",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "to open author's profile",
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "לענות",
|
"keyboard_shortcuts.reply": "לענות",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "להתמקד בחלון החיפוש",
|
"keyboard_shortcuts.search": "להתמקד בחלון החיפוש",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
"keyboard_shortcuts.toot": "להתחיל חיצרוץ חדש",
|
"keyboard_shortcuts.toot": "להתחיל חיצרוץ חדש",
|
||||||
"keyboard_shortcuts.unfocus": "לצאת מתיבת חיבור/חיפוש",
|
"keyboard_shortcuts.unfocus": "לצאת מתיבת חיבור/חיפוש",
|
||||||
|
|
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Pokaži boostove",
|
"home.column_settings.show_reblogs": "Pokaži boostove",
|
||||||
"home.column_settings.show_replies": "Pokaži odgovore",
|
"home.column_settings.show_replies": "Pokaži odgovore",
|
||||||
"keyboard_shortcuts.back": "to navigate back",
|
"keyboard_shortcuts.back": "to navigate back",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "to boost",
|
"keyboard_shortcuts.boost": "to boost",
|
||||||
"keyboard_shortcuts.column": "to focus a status in one of the columns",
|
"keyboard_shortcuts.column": "to focus a status in one of the columns",
|
||||||
"keyboard_shortcuts.compose": "to focus the compose textarea",
|
"keyboard_shortcuts.compose": "to focus the compose textarea",
|
||||||
"keyboard_shortcuts.description": "Description",
|
"keyboard_shortcuts.description": "Description",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "to move down in the list",
|
"keyboard_shortcuts.down": "to move down in the list",
|
||||||
"keyboard_shortcuts.enter": "to open status",
|
"keyboard_shortcuts.enter": "to open status",
|
||||||
"keyboard_shortcuts.favourite": "to favourite",
|
"keyboard_shortcuts.favourite": "to favourite",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "Hotkey",
|
"keyboard_shortcuts.hotkey": "Hotkey",
|
||||||
"keyboard_shortcuts.legend": "to display this legend",
|
"keyboard_shortcuts.legend": "to display this legend",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "to mention author",
|
"keyboard_shortcuts.mention": "to mention author",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "to open author's profile",
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "to reply",
|
"keyboard_shortcuts.reply": "to reply",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "to focus search",
|
"keyboard_shortcuts.search": "to focus search",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
"keyboard_shortcuts.toot": "to start a brand new toot",
|
"keyboard_shortcuts.toot": "to start a brand new toot",
|
||||||
"keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
|
"keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
|
||||||
|
|
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Ismétlések mutatása",
|
"home.column_settings.show_reblogs": "Ismétlések mutatása",
|
||||||
"home.column_settings.show_replies": "Válaszok mutatása",
|
"home.column_settings.show_replies": "Válaszok mutatása",
|
||||||
"keyboard_shortcuts.back": "vissza navigálás",
|
"keyboard_shortcuts.back": "vissza navigálás",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "ismétlés",
|
"keyboard_shortcuts.boost": "ismétlés",
|
||||||
"keyboard_shortcuts.column": "összpontosítson egy státuszra az egyik oszlopban",
|
"keyboard_shortcuts.column": "összpontosítson egy státuszra az egyik oszlopban",
|
||||||
"keyboard_shortcuts.compose": "fókuszálja a szerkesztési szövegdobozt",
|
"keyboard_shortcuts.compose": "fókuszálja a szerkesztési szövegdobozt",
|
||||||
"keyboard_shortcuts.description": "Leírás",
|
"keyboard_shortcuts.description": "Leírás",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "lefele navigálás a listában",
|
"keyboard_shortcuts.down": "lefele navigálás a listában",
|
||||||
"keyboard_shortcuts.enter": "státusz megnyitása",
|
"keyboard_shortcuts.enter": "státusz megnyitása",
|
||||||
"keyboard_shortcuts.favourite": "kedvenccé tétel",
|
"keyboard_shortcuts.favourite": "kedvenccé tétel",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Billentyű rövidítések",
|
"keyboard_shortcuts.heading": "Billentyű rövidítések",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "Gyorsbillentyű",
|
"keyboard_shortcuts.hotkey": "Gyorsbillentyű",
|
||||||
"keyboard_shortcuts.legend": "jelmagyarázat megjelenítése",
|
"keyboard_shortcuts.legend": "jelmagyarázat megjelenítése",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "szerző megjelenítése",
|
"keyboard_shortcuts.mention": "szerző megjelenítése",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "to open author's profile",
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "válaszolás",
|
"keyboard_shortcuts.reply": "válaszolás",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "kereső kiemelése",
|
"keyboard_shortcuts.search": "kereső kiemelése",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
"keyboard_shortcuts.toot": "új tülk megkezdése",
|
"keyboard_shortcuts.toot": "új tülk megkezdése",
|
||||||
"keyboard_shortcuts.unfocus": "tülk szerkesztés/keresés fókuszpontból való kivétele",
|
"keyboard_shortcuts.unfocus": "tülk szerkesztés/keresés fókuszpontból való kivétele",
|
||||||
|
|
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Ցուցադրել տարածածները",
|
"home.column_settings.show_reblogs": "Ցուցադրել տարածածները",
|
||||||
"home.column_settings.show_replies": "Ցուցադրել պատասխանները",
|
"home.column_settings.show_replies": "Ցուցադրել պատասխանները",
|
||||||
"keyboard_shortcuts.back": "ետ նավարկելու համար",
|
"keyboard_shortcuts.back": "ետ նավարկելու համար",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "տարածելու համար",
|
"keyboard_shortcuts.boost": "տարածելու համար",
|
||||||
"keyboard_shortcuts.column": "սյուներից մեկի վրա սեւեռվելու համար",
|
"keyboard_shortcuts.column": "սյուներից մեկի վրա սեւեռվելու համար",
|
||||||
"keyboard_shortcuts.compose": "շարադրման տիրույթին սեւեռվելու համար",
|
"keyboard_shortcuts.compose": "շարադրման տիրույթին սեւեռվելու համար",
|
||||||
"keyboard_shortcuts.description": "Նկարագրություն",
|
"keyboard_shortcuts.description": "Նկարագրություն",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "ցանկով ներքեւ շարժվելու համար",
|
"keyboard_shortcuts.down": "ցանկով ներքեւ շարժվելու համար",
|
||||||
"keyboard_shortcuts.enter": "թութը բացելու համար",
|
"keyboard_shortcuts.enter": "թութը բացելու համար",
|
||||||
"keyboard_shortcuts.favourite": "հավանելու համար",
|
"keyboard_shortcuts.favourite": "հավանելու համար",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Ստեղնաշարի կարճատներ",
|
"keyboard_shortcuts.heading": "Ստեղնաշարի կարճատներ",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "Հատուկ ստեղն",
|
"keyboard_shortcuts.hotkey": "Հատուկ ստեղն",
|
||||||
"keyboard_shortcuts.legend": "այս ձեռնարկը ցուցադրելու համար",
|
"keyboard_shortcuts.legend": "այս ձեռնարկը ցուցադրելու համար",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "հեղինակին նշելու համար",
|
"keyboard_shortcuts.mention": "հեղինակին նշելու համար",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "to open author's profile",
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "պատասխանելու համար",
|
"keyboard_shortcuts.reply": "պատասխանելու համար",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "որոնման դաշտին սեւեռվելու համար",
|
"keyboard_shortcuts.search": "որոնման դաշտին սեւեռվելու համար",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
"keyboard_shortcuts.toot": "թարմ թութ սկսելու համար",
|
"keyboard_shortcuts.toot": "թարմ թութ սկսելու համար",
|
||||||
"keyboard_shortcuts.unfocus": "տեքստի/որոնման տիրույթից ապասեւեռվելու համար",
|
"keyboard_shortcuts.unfocus": "տեքստի/որոնման տիրույթից ապասեւեռվելու համար",
|
||||||
|
|
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Tampilkan boost",
|
"home.column_settings.show_reblogs": "Tampilkan boost",
|
||||||
"home.column_settings.show_replies": "Tampilkan balasan",
|
"home.column_settings.show_replies": "Tampilkan balasan",
|
||||||
"keyboard_shortcuts.back": "untuk kembali",
|
"keyboard_shortcuts.back": "untuk kembali",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "untuk menyebarkan",
|
"keyboard_shortcuts.boost": "untuk menyebarkan",
|
||||||
"keyboard_shortcuts.column": "untuk fokus kepada sebuah status di sebuah kolom",
|
"keyboard_shortcuts.column": "untuk fokus kepada sebuah status di sebuah kolom",
|
||||||
"keyboard_shortcuts.compose": "untuk fokus ke area penulisan",
|
"keyboard_shortcuts.compose": "untuk fokus ke area penulisan",
|
||||||
"keyboard_shortcuts.description": "Deskripsi",
|
"keyboard_shortcuts.description": "Deskripsi",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "untuk pindah ke bawah dalam sebuah daftar",
|
"keyboard_shortcuts.down": "untuk pindah ke bawah dalam sebuah daftar",
|
||||||
"keyboard_shortcuts.enter": "untuk membuka status",
|
"keyboard_shortcuts.enter": "untuk membuka status",
|
||||||
"keyboard_shortcuts.favourite": "untuk memfavoritkan",
|
"keyboard_shortcuts.favourite": "untuk memfavoritkan",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Pintasan keyboard",
|
"keyboard_shortcuts.heading": "Pintasan keyboard",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "Hotkey",
|
"keyboard_shortcuts.hotkey": "Hotkey",
|
||||||
"keyboard_shortcuts.legend": "to display this legend",
|
"keyboard_shortcuts.legend": "to display this legend",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "to mention author",
|
"keyboard_shortcuts.mention": "to mention author",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "to open author's profile",
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "to reply",
|
"keyboard_shortcuts.reply": "to reply",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "untuk fokus mencari",
|
"keyboard_shortcuts.search": "untuk fokus mencari",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
"keyboard_shortcuts.toot": "to start a brand new toot",
|
"keyboard_shortcuts.toot": "to start a brand new toot",
|
||||||
"keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
|
"keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
|
||||||
|
|
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Montrar repeti",
|
"home.column_settings.show_reblogs": "Montrar repeti",
|
||||||
"home.column_settings.show_replies": "Montrar respondi",
|
"home.column_settings.show_replies": "Montrar respondi",
|
||||||
"keyboard_shortcuts.back": "to navigate back",
|
"keyboard_shortcuts.back": "to navigate back",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "to boost",
|
"keyboard_shortcuts.boost": "to boost",
|
||||||
"keyboard_shortcuts.column": "to focus a status in one of the columns",
|
"keyboard_shortcuts.column": "to focus a status in one of the columns",
|
||||||
"keyboard_shortcuts.compose": "to focus the compose textarea",
|
"keyboard_shortcuts.compose": "to focus the compose textarea",
|
||||||
"keyboard_shortcuts.description": "Description",
|
"keyboard_shortcuts.description": "Description",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "to move down in the list",
|
"keyboard_shortcuts.down": "to move down in the list",
|
||||||
"keyboard_shortcuts.enter": "to open status",
|
"keyboard_shortcuts.enter": "to open status",
|
||||||
"keyboard_shortcuts.favourite": "to favourite",
|
"keyboard_shortcuts.favourite": "to favourite",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "Hotkey",
|
"keyboard_shortcuts.hotkey": "Hotkey",
|
||||||
"keyboard_shortcuts.legend": "to display this legend",
|
"keyboard_shortcuts.legend": "to display this legend",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "to mention author",
|
"keyboard_shortcuts.mention": "to mention author",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "to open author's profile",
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "to reply",
|
"keyboard_shortcuts.reply": "to reply",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "to focus search",
|
"keyboard_shortcuts.search": "to focus search",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
"keyboard_shortcuts.toot": "to start a brand new toot",
|
"keyboard_shortcuts.toot": "to start a brand new toot",
|
||||||
"keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
|
"keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
|
||||||
|
|
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Mostra post condivisi",
|
"home.column_settings.show_reblogs": "Mostra post condivisi",
|
||||||
"home.column_settings.show_replies": "Mostra risposte",
|
"home.column_settings.show_replies": "Mostra risposte",
|
||||||
"keyboard_shortcuts.back": "per tornare indietro",
|
"keyboard_shortcuts.back": "per tornare indietro",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "per condividere",
|
"keyboard_shortcuts.boost": "per condividere",
|
||||||
"keyboard_shortcuts.column": "per portare il focus su uno status in una delle colonne",
|
"keyboard_shortcuts.column": "per portare il focus su uno status in una delle colonne",
|
||||||
"keyboard_shortcuts.compose": "per portare il focus nell'area di composizione",
|
"keyboard_shortcuts.compose": "per portare il focus nell'area di composizione",
|
||||||
"keyboard_shortcuts.description": "Descrizione",
|
"keyboard_shortcuts.description": "Descrizione",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "per spostarsi in basso nella lista",
|
"keyboard_shortcuts.down": "per spostarsi in basso nella lista",
|
||||||
"keyboard_shortcuts.enter": "per aprire lo status",
|
"keyboard_shortcuts.enter": "per aprire lo status",
|
||||||
"keyboard_shortcuts.favourite": "per segnare come apprezzato",
|
"keyboard_shortcuts.favourite": "per segnare come apprezzato",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Tasti di scelta rapida",
|
"keyboard_shortcuts.heading": "Tasti di scelta rapida",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "Tasto di scelta rapida",
|
"keyboard_shortcuts.hotkey": "Tasto di scelta rapida",
|
||||||
"keyboard_shortcuts.legend": "per mostrare questa spiegazione",
|
"keyboard_shortcuts.legend": "per mostrare questa spiegazione",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "per menzionare l'autore",
|
"keyboard_shortcuts.mention": "per menzionare l'autore",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "per aprire il profilo dell'autore",
|
"keyboard_shortcuts.profile": "per aprire il profilo dell'autore",
|
||||||
"keyboard_shortcuts.reply": "per rispondere",
|
"keyboard_shortcuts.reply": "per rispondere",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "per spostare il focus sulla ricerca",
|
"keyboard_shortcuts.search": "per spostare il focus sulla ricerca",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "per mostrare/nascondere il testo dei CW",
|
"keyboard_shortcuts.toggle_hidden": "per mostrare/nascondere il testo dei CW",
|
||||||
"keyboard_shortcuts.toot": "per iniziare a scrivere un toot completamente nuovo",
|
"keyboard_shortcuts.toot": "per iniziare a scrivere un toot completamente nuovo",
|
||||||
"keyboard_shortcuts.unfocus": "per uscire dall'area di composizione o dalla ricerca",
|
"keyboard_shortcuts.unfocus": "per uscire dall'area di composizione o dalla ricerca",
|
||||||
|
|
|
@ -10,9 +10,9 @@
|
||||||
"account.endorse": "プロフィールで紹介する",
|
"account.endorse": "プロフィールで紹介する",
|
||||||
"account.follow": "フォロー",
|
"account.follow": "フォロー",
|
||||||
"account.followers": "フォロワー",
|
"account.followers": "フォロワー",
|
||||||
"account.followers.empty": "No one follows this user yet.",
|
"account.followers.empty": "まだ誰もフォローしていません。",
|
||||||
"account.follows": "フォロー",
|
"account.follows": "フォロー",
|
||||||
"account.follows.empty": "This user doesn't follow anyone yet.",
|
"account.follows.empty": "まだ誰もフォローしていません。",
|
||||||
"account.follows_you": "フォローされています",
|
"account.follows_you": "フォローされています",
|
||||||
"account.hide_reblogs": "@{name}さんからのブーストを非表示",
|
"account.hide_reblogs": "@{name}さんからのブーストを非表示",
|
||||||
"account.media": "メディア",
|
"account.media": "メディア",
|
||||||
|
@ -89,7 +89,7 @@
|
||||||
"confirmations.mute.confirm": "ミュート",
|
"confirmations.mute.confirm": "ミュート",
|
||||||
"confirmations.mute.message": "本当に{name}さんをミュートしますか?",
|
"confirmations.mute.message": "本当に{name}さんをミュートしますか?",
|
||||||
"confirmations.redraft.confirm": "削除して下書きに戻す",
|
"confirmations.redraft.confirm": "削除して下書きに戻す",
|
||||||
"confirmations.redraft.message": "本当にこのトゥートを削除して下書きに戻しますか? このトゥートへの全ての返信やブースト、お気に入り登録を失うことになります。",
|
"confirmations.redraft.message": "本当にこのトゥートを削除して下書きに戻しますか? このトゥートへのお気に入り登録やブーストは失われ、返信は孤立することになります。",
|
||||||
"confirmations.unfollow.confirm": "フォロー解除",
|
"confirmations.unfollow.confirm": "フォロー解除",
|
||||||
"confirmations.unfollow.message": "本当に{name}さんのフォローを解除しますか?",
|
"confirmations.unfollow.message": "本当に{name}さんのフォローを解除しますか?",
|
||||||
"embed.instructions": "下記のコードをコピーしてウェブサイトに埋め込みます。",
|
"embed.instructions": "下記のコードをコピーしてウェブサイトに埋め込みます。",
|
||||||
|
@ -108,19 +108,19 @@
|
||||||
"emoji_button.search_results": "検索結果",
|
"emoji_button.search_results": "検索結果",
|
||||||
"emoji_button.symbols": "記号",
|
"emoji_button.symbols": "記号",
|
||||||
"emoji_button.travel": "旅行と場所",
|
"emoji_button.travel": "旅行と場所",
|
||||||
"empty_column.blocks": "You haven't blocked any users yet.",
|
"empty_column.blocks": "まだ誰もブロックしていません。",
|
||||||
"empty_column.community": "ローカルタイムラインはまだ使われていません。何か書いてみましょう!",
|
"empty_column.community": "ローカルタイムラインはまだ使われていません。何か書いてみましょう!",
|
||||||
"empty_column.direct": "ダイレクトメッセージはまだありません。ダイレクトメッセージをやりとりすると、ここに表示されます。",
|
"empty_column.direct": "ダイレクトメッセージはまだありません。ダイレクトメッセージをやりとりすると、ここに表示されます。",
|
||||||
"empty_column.domain_blocks": "There are no hidden domains yet.",
|
"empty_column.domain_blocks": "まだ非表示にしたドメインがありません。",
|
||||||
"empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
|
"empty_column.favourited_statuses": "まだ何もお気に入り登録していません。お気に入り登録するとここに表示されます。",
|
||||||
"empty_column.favourites": "No one has favourited this toot yet. When someone does, they will show up here.",
|
"empty_column.favourites": "まだ誰もお気に入り登録していません。お気に入り登録されるとここに表示されます。",
|
||||||
"empty_column.follow_requests": "You don't have any follow requests yet. When you receive one, it will show up here.",
|
"empty_column.follow_requests": "まだフォローリクエストを受けていません。フォローリクエストを受けるとここに表示されます。",
|
||||||
"empty_column.hashtag": "このハッシュタグはまだ使われていません。",
|
"empty_column.hashtag": "このハッシュタグはまだ使われていません。",
|
||||||
"empty_column.home": "まだ誰もフォローしていません。{public}を見に行くか、検索を使って他のユーザーを見つけましょう。",
|
"empty_column.home": "まだ誰もフォローしていません。{public}を見に行くか、検索を使って他のユーザーを見つけましょう。",
|
||||||
"empty_column.home.public_timeline": "連合タイムライン",
|
"empty_column.home.public_timeline": "連合タイムライン",
|
||||||
"empty_column.list": "このリストにはまだなにもありません。このリストのメンバーが新しいトゥートをするとここに表示されます。",
|
"empty_column.list": "このリストにはまだなにもありません。このリストのメンバーが新しいトゥートをするとここに表示されます。",
|
||||||
"empty_column.lists": "You don't have any lists yet. When you create one, it will show up here.",
|
"empty_column.lists": "まだリストがありません。リストを作るとここに表示されます。",
|
||||||
"empty_column.mutes": "You haven't muted any users yet.",
|
"empty_column.mutes": "まだ誰もミュートしていません。",
|
||||||
"empty_column.notifications": "まだ通知がありません。他の人とふれ合って会話を始めましょう。",
|
"empty_column.notifications": "まだ通知がありません。他の人とふれ合って会話を始めましょう。",
|
||||||
"empty_column.public": "ここにはまだ何もありません! 公開で何かを投稿したり、他のインスタンスのユーザーをフォローしたりしていっぱいにしましょう",
|
"empty_column.public": "ここにはまだ何もありません! 公開で何かを投稿したり、他のインスタンスのユーザーをフォローしたりしていっぱいにしましょう",
|
||||||
"follow_request.authorize": "許可",
|
"follow_request.authorize": "許可",
|
||||||
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "ブースト表示",
|
"home.column_settings.show_reblogs": "ブースト表示",
|
||||||
"home.column_settings.show_replies": "返信表示",
|
"home.column_settings.show_replies": "返信表示",
|
||||||
"keyboard_shortcuts.back": "戻る",
|
"keyboard_shortcuts.back": "戻る",
|
||||||
|
"keyboard_shortcuts.blocked": "ブロックしたユーザーのリストを開く",
|
||||||
"keyboard_shortcuts.boost": "ブースト",
|
"keyboard_shortcuts.boost": "ブースト",
|
||||||
"keyboard_shortcuts.column": "左からn番目のカラム内最新トゥートに移動",
|
"keyboard_shortcuts.column": "左からn番目のカラム内最新トゥートに移動",
|
||||||
"keyboard_shortcuts.compose": "トゥート入力欄に移動",
|
"keyboard_shortcuts.compose": "トゥート入力欄に移動",
|
||||||
"keyboard_shortcuts.description": "説明",
|
"keyboard_shortcuts.description": "説明",
|
||||||
|
"keyboard_shortcuts.direct": "ダイレクトメッセージのカラムを開く",
|
||||||
"keyboard_shortcuts.down": "カラム内一つ下に移動",
|
"keyboard_shortcuts.down": "カラム内一つ下に移動",
|
||||||
"keyboard_shortcuts.enter": "トゥートの詳細を表示",
|
"keyboard_shortcuts.enter": "トゥートの詳細を表示",
|
||||||
"keyboard_shortcuts.favourite": "お気に入り",
|
"keyboard_shortcuts.favourite": "お気に入り",
|
||||||
|
"keyboard_shortcuts.favourites": "お気に入り登録のリストを開く",
|
||||||
|
"keyboard_shortcuts.federated": "連合タイムラインを開く",
|
||||||
"keyboard_shortcuts.heading": "キーボードショートカット",
|
"keyboard_shortcuts.heading": "キーボードショートカット",
|
||||||
|
"keyboard_shortcuts.home": "ホームタイムラインを開く",
|
||||||
"keyboard_shortcuts.hotkey": "ホットキー",
|
"keyboard_shortcuts.hotkey": "ホットキー",
|
||||||
"keyboard_shortcuts.legend": "この一覧を表示",
|
"keyboard_shortcuts.legend": "この一覧を表示",
|
||||||
|
"keyboard_shortcuts.local": "ローカルタイムラインを開く",
|
||||||
"keyboard_shortcuts.mention": "メンション",
|
"keyboard_shortcuts.mention": "メンション",
|
||||||
|
"keyboard_shortcuts.muted": "ミュートしたユーザーのリストを開く",
|
||||||
|
"keyboard_shortcuts.my_profile": "自分のプロフィールを開く",
|
||||||
|
"keyboard_shortcuts.notifications": "通知カラムを開く",
|
||||||
|
"keyboard_shortcuts.pinned": "固定したトゥートのリストを開く",
|
||||||
"keyboard_shortcuts.profile": "プロフィールを開く",
|
"keyboard_shortcuts.profile": "プロフィールを開く",
|
||||||
"keyboard_shortcuts.reply": "返信",
|
"keyboard_shortcuts.reply": "返信",
|
||||||
|
"keyboard_shortcuts.requests": "フォローリクエストのリストを開く",
|
||||||
"keyboard_shortcuts.search": "検索欄に移動",
|
"keyboard_shortcuts.search": "検索欄に移動",
|
||||||
|
"keyboard_shortcuts.start": "\"スタート\" カラムを開く",
|
||||||
"keyboard_shortcuts.toggle_hidden": "CWで隠れた文を見る/隠す",
|
"keyboard_shortcuts.toggle_hidden": "CWで隠れた文を見る/隠す",
|
||||||
"keyboard_shortcuts.toot": "新規トゥート",
|
"keyboard_shortcuts.toot": "新規トゥート",
|
||||||
"keyboard_shortcuts.unfocus": "トゥート入力欄・検索欄から離れる",
|
"keyboard_shortcuts.unfocus": "トゥート入力欄・検索欄から離れる",
|
||||||
|
@ -285,7 +297,7 @@
|
||||||
"status.reblog": "ブースト",
|
"status.reblog": "ブースト",
|
||||||
"status.reblog_private": "ブースト",
|
"status.reblog_private": "ブースト",
|
||||||
"status.reblogged_by": "{name}さんがブースト",
|
"status.reblogged_by": "{name}さんがブースト",
|
||||||
"status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
|
"status.reblogs.empty": "まだ誰もブーストしていません。ブーストされるとここに表示されます。",
|
||||||
"status.redraft": "削除して下書きに戻す",
|
"status.redraft": "削除して下書きに戻す",
|
||||||
"status.reply": "返信",
|
"status.reply": "返信",
|
||||||
"status.replyAll": "全員に返信",
|
"status.replyAll": "全員に返信",
|
||||||
|
@ -307,7 +319,7 @@
|
||||||
"trends.count_by_accounts": "{count} {rawCount, plural, one {人} other {人}} がトゥート",
|
"trends.count_by_accounts": "{count} {rawCount, plural, one {人} other {人}} がトゥート",
|
||||||
"ui.beforeunload": "Mastodonから離れると送信前の投稿は失われます。",
|
"ui.beforeunload": "Mastodonから離れると送信前の投稿は失われます。",
|
||||||
"upload_area.title": "ドラッグ&ドロップでアップロード",
|
"upload_area.title": "ドラッグ&ドロップでアップロード",
|
||||||
"upload_button.label": "メディアを追加",
|
"upload_button.label": "メディアを追加 (JPEG, PNG, GIF, WebM, MP4, MOV)",
|
||||||
"upload_form.description": "視覚障害者のための説明",
|
"upload_form.description": "視覚障害者のための説明",
|
||||||
"upload_form.focus": "焦点",
|
"upload_form.focus": "焦点",
|
||||||
"upload_form.undo": "削除",
|
"upload_form.undo": "削除",
|
||||||
|
|
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "ბუსტების ჩვენება",
|
"home.column_settings.show_reblogs": "ბუსტების ჩვენება",
|
||||||
"home.column_settings.show_replies": "პასუხების ჩვენება",
|
"home.column_settings.show_replies": "პასუხების ჩვენება",
|
||||||
"keyboard_shortcuts.back": "უკან გადასასვლელად",
|
"keyboard_shortcuts.back": "უკან გადასასვლელად",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "დასაბუსტად",
|
"keyboard_shortcuts.boost": "დასაბუსტად",
|
||||||
"keyboard_shortcuts.column": "ერთ-ერთი სვეტში სტატუსზე ფოკუსირებისთვის",
|
"keyboard_shortcuts.column": "ერთ-ერთი სვეტში სტატუსზე ფოკუსირებისთვის",
|
||||||
"keyboard_shortcuts.compose": "შედგენის ტექსტ-არეაზე ფოკუსირებისთვის",
|
"keyboard_shortcuts.compose": "შედგენის ტექსტ-არეაზე ფოკუსირებისთვის",
|
||||||
"keyboard_shortcuts.description": "აღწერილობა",
|
"keyboard_shortcuts.description": "აღწერილობა",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "სიაში ქვემოთ გადასაადგილებლად",
|
"keyboard_shortcuts.down": "სიაში ქვემოთ გადასაადგილებლად",
|
||||||
"keyboard_shortcuts.enter": "სტატუსის გასახსნელად",
|
"keyboard_shortcuts.enter": "სტატუსის გასახსნელად",
|
||||||
"keyboard_shortcuts.favourite": "ფავორიტად ქცევისთვის",
|
"keyboard_shortcuts.favourite": "ფავორიტად ქცევისთვის",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "კლავიატურის სწრაფი ბმულები",
|
"keyboard_shortcuts.heading": "კლავიატურის სწრაფი ბმულები",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "ცხელი კლავიში",
|
"keyboard_shortcuts.hotkey": "ცხელი კლავიში",
|
||||||
"keyboard_shortcuts.legend": "ამ ლეგენდის გამოსაჩენად",
|
"keyboard_shortcuts.legend": "ამ ლეგენდის გამოსაჩენად",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "ავტორის დასახელებლად",
|
"keyboard_shortcuts.mention": "ავტორის დასახელებლად",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "ავტორის პროფილის გასახსნელად",
|
"keyboard_shortcuts.profile": "ავტორის პროფილის გასახსნელად",
|
||||||
"keyboard_shortcuts.reply": "პასუხისთვის",
|
"keyboard_shortcuts.reply": "პასუხისთვის",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "ძიებაზე ფოკუსირებისთვის",
|
"keyboard_shortcuts.search": "ძიებაზე ფოკუსირებისთვის",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "გაფრთხილების უკან ტექსტის გამოსაჩენად/დასამალვად",
|
"keyboard_shortcuts.toggle_hidden": "გაფრთხილების უკან ტექსტის გამოსაჩენად/დასამალვად",
|
||||||
"keyboard_shortcuts.toot": "ახალი ტუტის დასაწყებად",
|
"keyboard_shortcuts.toot": "ახალი ტუტის დასაწყებად",
|
||||||
"keyboard_shortcuts.unfocus": "შედგენის ტექსტ-არეაზე ფოკუსის მოსაშორებლად",
|
"keyboard_shortcuts.unfocus": "შედგენის ტექსტ-არეაზე ფოკუსის მოსაშორებლად",
|
||||||
|
|
|
@ -10,9 +10,9 @@
|
||||||
"account.endorse": "프로필에 나타내기",
|
"account.endorse": "프로필에 나타내기",
|
||||||
"account.follow": "팔로우",
|
"account.follow": "팔로우",
|
||||||
"account.followers": "팔로워",
|
"account.followers": "팔로워",
|
||||||
"account.followers.empty": "No one follows this user yet.",
|
"account.followers.empty": "아직 아무도 이 유저를 팔로우 하고 있지 않습니다.",
|
||||||
"account.follows": "팔로우",
|
"account.follows": "팔로우",
|
||||||
"account.follows.empty": "This user doesn't follow anyone yet.",
|
"account.follows.empty": "이 유저는 아직 아무도 팔로우 하고 있지 않습니다.",
|
||||||
"account.follows_you": "날 팔로우합니다",
|
"account.follows_you": "날 팔로우합니다",
|
||||||
"account.hide_reblogs": "@{name}의 부스트를 숨기기",
|
"account.hide_reblogs": "@{name}의 부스트를 숨기기",
|
||||||
"account.media": "미디어",
|
"account.media": "미디어",
|
||||||
|
@ -89,7 +89,7 @@
|
||||||
"confirmations.mute.confirm": "뮤트",
|
"confirmations.mute.confirm": "뮤트",
|
||||||
"confirmations.mute.message": "정말로 {name}를 뮤트하시겠습니까?",
|
"confirmations.mute.message": "정말로 {name}를 뮤트하시겠습니까?",
|
||||||
"confirmations.redraft.confirm": "삭제하고 다시 쓰기",
|
"confirmations.redraft.confirm": "삭제하고 다시 쓰기",
|
||||||
"confirmations.redraft.message": "정말로 이 포스트를 삭제하고 다시 쓰시겠습니까? 해당 포스트에 대한 답장과 부스트, 그리고 즐겨찾기를 잃게 됩니다.",
|
"confirmations.redraft.message": "정말로 이 포스트를 삭제하고 다시 쓰시겠습니까? 해당 포스트에 대한 부스트와 즐겨찾기를 잃게 되고 원본에 대한 답장은 연결 되지 않습니다.",
|
||||||
"confirmations.unfollow.confirm": "언팔로우",
|
"confirmations.unfollow.confirm": "언팔로우",
|
||||||
"confirmations.unfollow.message": "정말로 {name}를 언팔로우하시겠습니까?",
|
"confirmations.unfollow.message": "정말로 {name}를 언팔로우하시겠습니까?",
|
||||||
"embed.instructions": "아래의 코드를 복사하여 대화를 원하는 곳으로 공유하세요.",
|
"embed.instructions": "아래의 코드를 복사하여 대화를 원하는 곳으로 공유하세요.",
|
||||||
|
@ -108,19 +108,19 @@
|
||||||
"emoji_button.search_results": "검색 결과",
|
"emoji_button.search_results": "검색 결과",
|
||||||
"emoji_button.symbols": "기호",
|
"emoji_button.symbols": "기호",
|
||||||
"emoji_button.travel": "여행과 장소",
|
"emoji_button.travel": "여행과 장소",
|
||||||
"empty_column.blocks": "You haven't blocked any users yet.",
|
"empty_column.blocks": "아직 아무도 차단하지 않았습니다.",
|
||||||
"empty_column.community": "로컬 타임라인에 아무 것도 없습니다. 아무거나 적어 보세요!",
|
"empty_column.community": "로컬 타임라인에 아무 것도 없습니다. 아무거나 적어 보세요!",
|
||||||
"empty_column.direct": "아직 다이렉트 메시지가 없습니다. 다이렉트 메시지를 보내거나 받은 경우, 여기에 표시 됩니다.",
|
"empty_column.direct": "아직 다이렉트 메시지가 없습니다. 다이렉트 메시지를 보내거나 받은 경우, 여기에 표시 됩니다.",
|
||||||
"empty_column.domain_blocks": "There are no hidden domains yet.",
|
"empty_column.domain_blocks": "아직 숨겨진 도메인이 없습니다.",
|
||||||
"empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
|
"empty_column.favourited_statuses": "아직 즐겨찾기 한 툿이 없습니다. 툿을 즐겨찾기 하면 여기에 나타납니다.",
|
||||||
"empty_column.favourites": "No one has favourited this toot yet. When someone does, they will show up here.",
|
"empty_column.favourites": "아직 아무도 이 툿을 즐겨찾기 하지 않았습니다. 누군가 즐겨찾기를 하면 여기에 그들이 나타납니다.",
|
||||||
"empty_column.follow_requests": "You don't have any follow requests yet. When you receive one, it will show up here.",
|
"empty_column.follow_requests": "아직 팔로우 요청이 없습니다. 요청을 받았을 때 여기에 나타납니다.",
|
||||||
"empty_column.hashtag": "이 해시태그는 아직 사용되지 않았습니다.",
|
"empty_column.hashtag": "이 해시태그는 아직 사용되지 않았습니다.",
|
||||||
"empty_column.home": "아직 아무도 팔로우 하고 있지 않습니다. {public}를 보러 가거나, 검색하여 다른 사용자를 찾아 보세요.",
|
"empty_column.home": "아직 아무도 팔로우 하고 있지 않습니다. {public}를 보러 가거나, 검색하여 다른 사용자를 찾아 보세요.",
|
||||||
"empty_column.home.public_timeline": "연합 타임라인",
|
"empty_column.home.public_timeline": "연합 타임라인",
|
||||||
"empty_column.list": "리스트에 아직 아무 것도 없습니다.",
|
"empty_column.list": "리스트에 아직 아무 것도 없습니다.",
|
||||||
"empty_column.lists": "You don't have any lists yet. When you create one, it will show up here.",
|
"empty_column.lists": "아직 리스트가 없습니다. 리스트를 만들면 여기에 나타납니다.",
|
||||||
"empty_column.mutes": "You haven't muted any users yet.",
|
"empty_column.mutes": "아직 아무도 뮤트하지 않았습니다.",
|
||||||
"empty_column.notifications": "아직 알림이 없습니다. 다른 사람과 대화를 시작해 보세요.",
|
"empty_column.notifications": "아직 알림이 없습니다. 다른 사람과 대화를 시작해 보세요.",
|
||||||
"empty_column.public": "여기엔 아직 아무 것도 없습니다! 공개적으로 무언가 포스팅하거나, 다른 인스턴스의 유저를 팔로우 해서 채워보세요",
|
"empty_column.public": "여기엔 아직 아무 것도 없습니다! 공개적으로 무언가 포스팅하거나, 다른 인스턴스의 유저를 팔로우 해서 채워보세요",
|
||||||
"follow_request.authorize": "허가",
|
"follow_request.authorize": "허가",
|
||||||
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "부스트 표시",
|
"home.column_settings.show_reblogs": "부스트 표시",
|
||||||
"home.column_settings.show_replies": "답글 표시",
|
"home.column_settings.show_replies": "답글 표시",
|
||||||
"keyboard_shortcuts.back": "뒤로가기",
|
"keyboard_shortcuts.back": "뒤로가기",
|
||||||
|
"keyboard_shortcuts.blocked": "차단한 유저 리스트 열기",
|
||||||
"keyboard_shortcuts.boost": "부스트",
|
"keyboard_shortcuts.boost": "부스트",
|
||||||
"keyboard_shortcuts.column": "해당 열에 포커스",
|
"keyboard_shortcuts.column": "해당 열에 포커스",
|
||||||
"keyboard_shortcuts.compose": "작성창으로 포커스",
|
"keyboard_shortcuts.compose": "작성창으로 포커스",
|
||||||
"keyboard_shortcuts.description": "설명",
|
"keyboard_shortcuts.description": "설명",
|
||||||
|
"keyboard_shortcuts.direct": "다이렉트 메시지 컬럼 열기",
|
||||||
"keyboard_shortcuts.down": "리스트에서 아래로 이동",
|
"keyboard_shortcuts.down": "리스트에서 아래로 이동",
|
||||||
"keyboard_shortcuts.enter": "열기",
|
"keyboard_shortcuts.enter": "열기",
|
||||||
"keyboard_shortcuts.favourite": "관심글 지정",
|
"keyboard_shortcuts.favourite": "관심글 지정",
|
||||||
|
"keyboard_shortcuts.favourites": "즐겨찾기 리스트 열기",
|
||||||
|
"keyboard_shortcuts.federated": "연합 타임라인 열기",
|
||||||
"keyboard_shortcuts.heading": "키보드 단축키",
|
"keyboard_shortcuts.heading": "키보드 단축키",
|
||||||
|
"keyboard_shortcuts.home": "홈 타임라인 열기",
|
||||||
"keyboard_shortcuts.hotkey": "핫키",
|
"keyboard_shortcuts.hotkey": "핫키",
|
||||||
"keyboard_shortcuts.legend": "이 도움말 표시",
|
"keyboard_shortcuts.legend": "이 도움말 표시",
|
||||||
|
"keyboard_shortcuts.local": "로컬 타임라인 열기",
|
||||||
"keyboard_shortcuts.mention": "멘션",
|
"keyboard_shortcuts.mention": "멘션",
|
||||||
|
"keyboard_shortcuts.muted": "뮤트 된 유저 리스트 열기",
|
||||||
|
"keyboard_shortcuts.my_profile": "내 프로필 열기",
|
||||||
|
"keyboard_shortcuts.notifications": "알림 컬럼 열기",
|
||||||
|
"keyboard_shortcuts.pinned": "고정 툿 리스트 열기",
|
||||||
"keyboard_shortcuts.profile": "프로필 열기",
|
"keyboard_shortcuts.profile": "프로필 열기",
|
||||||
"keyboard_shortcuts.reply": "답장",
|
"keyboard_shortcuts.reply": "답장",
|
||||||
|
"keyboard_shortcuts.requests": "팔로우 요청 리스트 열기",
|
||||||
"keyboard_shortcuts.search": "검색창에 포커스",
|
"keyboard_shortcuts.search": "검색창에 포커스",
|
||||||
|
"keyboard_shortcuts.start": "\"시작하기\" 컬럼 열기",
|
||||||
"keyboard_shortcuts.toggle_hidden": "CW로 가려진 텍스트를 표시/비표시",
|
"keyboard_shortcuts.toggle_hidden": "CW로 가려진 텍스트를 표시/비표시",
|
||||||
"keyboard_shortcuts.toot": "새 툿 작성",
|
"keyboard_shortcuts.toot": "새 툿 작성",
|
||||||
"keyboard_shortcuts.unfocus": "작성창에서 포커스 해제",
|
"keyboard_shortcuts.unfocus": "작성창에서 포커스 해제",
|
||||||
|
@ -174,7 +186,7 @@
|
||||||
"navigation_bar.apps": "모바일 앱",
|
"navigation_bar.apps": "모바일 앱",
|
||||||
"navigation_bar.blocks": "차단한 사용자",
|
"navigation_bar.blocks": "차단한 사용자",
|
||||||
"navigation_bar.community_timeline": "로컬 타임라인",
|
"navigation_bar.community_timeline": "로컬 타임라인",
|
||||||
"navigation_bar.compose": "Compose new toot",
|
"navigation_bar.compose": "새 툿 작성",
|
||||||
"navigation_bar.direct": "다이렉트 메시지",
|
"navigation_bar.direct": "다이렉트 메시지",
|
||||||
"navigation_bar.discover": "발견하기",
|
"navigation_bar.discover": "발견하기",
|
||||||
"navigation_bar.domain_blocks": "숨겨진 도메인",
|
"navigation_bar.domain_blocks": "숨겨진 도메인",
|
||||||
|
@ -268,7 +280,7 @@
|
||||||
"status.cancel_reblog_private": "부스트 취소",
|
"status.cancel_reblog_private": "부스트 취소",
|
||||||
"status.cannot_reblog": "이 포스트는 부스트 할 수 없습니다",
|
"status.cannot_reblog": "이 포스트는 부스트 할 수 없습니다",
|
||||||
"status.delete": "삭제",
|
"status.delete": "삭제",
|
||||||
"status.detailed_status": "Detailed conversation view",
|
"status.detailed_status": "대화 자세히 보기",
|
||||||
"status.direct": "@{name}에게 다이렉트 메시지",
|
"status.direct": "@{name}에게 다이렉트 메시지",
|
||||||
"status.embed": "공유하기",
|
"status.embed": "공유하기",
|
||||||
"status.favourite": "즐겨찾기",
|
"status.favourite": "즐겨찾기",
|
||||||
|
@ -285,7 +297,7 @@
|
||||||
"status.reblog": "부스트",
|
"status.reblog": "부스트",
|
||||||
"status.reblog_private": "원래의 수신자들에게 부스트",
|
"status.reblog_private": "원래의 수신자들에게 부스트",
|
||||||
"status.reblogged_by": "{name}님이 부스트 했습니다",
|
"status.reblogged_by": "{name}님이 부스트 했습니다",
|
||||||
"status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
|
"status.reblogs.empty": "아직 아무도 이 툿을 부스트하지 않았습니다. 부스트 한 사람들이 여기에 표시 됩니다.",
|
||||||
"status.redraft": "지우고 다시 쓰기",
|
"status.redraft": "지우고 다시 쓰기",
|
||||||
"status.reply": "답장",
|
"status.reply": "답장",
|
||||||
"status.replyAll": "전원에게 답장",
|
"status.replyAll": "전원에게 답장",
|
||||||
|
@ -307,7 +319,7 @@
|
||||||
"trends.count_by_accounts": "{count} {rawCount, plural, one {명} other {명}} 의 사람들이 말하고 있습니다",
|
"trends.count_by_accounts": "{count} {rawCount, plural, one {명} other {명}} 의 사람들이 말하고 있습니다",
|
||||||
"ui.beforeunload": "지금 나가면 저장되지 않은 항목을 잃게 됩니다.",
|
"ui.beforeunload": "지금 나가면 저장되지 않은 항목을 잃게 됩니다.",
|
||||||
"upload_area.title": "드래그 & 드롭으로 업로드",
|
"upload_area.title": "드래그 & 드롭으로 업로드",
|
||||||
"upload_button.label": "미디어 추가",
|
"upload_button.label": "미디어 추가 (JPEG, PNG, GIF, WebM, MP4, MOV)",
|
||||||
"upload_form.description": "시각장애인을 위한 설명",
|
"upload_form.description": "시각장애인을 위한 설명",
|
||||||
"upload_form.focus": "크롭",
|
"upload_form.focus": "크롭",
|
||||||
"upload_form.undo": "삭제",
|
"upload_form.undo": "삭제",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"account.badges.bot": "Bot",
|
"account.badges.bot": "Bot",
|
||||||
"account.block": "Blokkeer @{name}",
|
"account.block": "Blokkeer @{name}",
|
||||||
"account.block_domain": "Negeer alles van {domain}",
|
"account.block_domain": "Verberg alles van {domain}",
|
||||||
"account.blocked": "Geblokkeerd",
|
"account.blocked": "Geblokkeerd",
|
||||||
"account.direct": "Direct Message @{name}",
|
"account.direct": "Direct Message @{name}",
|
||||||
"account.disclaimer_full": "De informatie hieronder kan mogelijk een incompleet beeld geven van dit gebruikersprofiel.",
|
"account.disclaimer_full": "De informatie hieronder kan mogelijk een incompleet beeld geven van dit gebruikersprofiel.",
|
||||||
|
@ -10,9 +10,9 @@
|
||||||
"account.endorse": "Op profiel weergeven",
|
"account.endorse": "Op profiel weergeven",
|
||||||
"account.follow": "Volgen",
|
"account.follow": "Volgen",
|
||||||
"account.followers": "Volgers",
|
"account.followers": "Volgers",
|
||||||
"account.followers.empty": "No one follows this user yet.",
|
"account.followers.empty": "Niemand volgt nog deze gebruiker.",
|
||||||
"account.follows": "Volgt",
|
"account.follows": "Volgt",
|
||||||
"account.follows.empty": "This user doesn't follow anyone yet.",
|
"account.follows.empty": "Deze gebruiker volgt nog niemand.",
|
||||||
"account.follows_you": "Volgt jou",
|
"account.follows_you": "Volgt jou",
|
||||||
"account.hide_reblogs": "Verberg boosts van @{name}",
|
"account.hide_reblogs": "Verberg boosts van @{name}",
|
||||||
"account.media": "Media",
|
"account.media": "Media",
|
||||||
|
@ -28,7 +28,7 @@
|
||||||
"account.share": "Profiel van @{name} delen",
|
"account.share": "Profiel van @{name} delen",
|
||||||
"account.show_reblogs": "Toon boosts van @{name}",
|
"account.show_reblogs": "Toon boosts van @{name}",
|
||||||
"account.unblock": "Deblokkeer @{name}",
|
"account.unblock": "Deblokkeer @{name}",
|
||||||
"account.unblock_domain": "{domain} niet langer negeren",
|
"account.unblock_domain": "{domain} niet langer verbergen",
|
||||||
"account.unendorse": "Niet op profiel weergeven",
|
"account.unendorse": "Niet op profiel weergeven",
|
||||||
"account.unfollow": "Ontvolgen",
|
"account.unfollow": "Ontvolgen",
|
||||||
"account.unmute": "@{name} niet langer negeren",
|
"account.unmute": "@{name} niet langer negeren",
|
||||||
|
@ -46,7 +46,7 @@
|
||||||
"column.blocks": "Geblokkeerde gebruikers",
|
"column.blocks": "Geblokkeerde gebruikers",
|
||||||
"column.community": "Lokale tijdlijn",
|
"column.community": "Lokale tijdlijn",
|
||||||
"column.direct": "Directe berichten",
|
"column.direct": "Directe berichten",
|
||||||
"column.domain_blocks": "Verborgen domeinen",
|
"column.domain_blocks": "Genegeerde servers",
|
||||||
"column.favourites": "Favorieten",
|
"column.favourites": "Favorieten",
|
||||||
"column.follow_requests": "Volgverzoeken",
|
"column.follow_requests": "Volgverzoeken",
|
||||||
"column.home": "Start",
|
"column.home": "Start",
|
||||||
|
@ -84,12 +84,12 @@
|
||||||
"confirmations.delete.message": "Weet je het zeker dat je deze toot wilt verwijderen?",
|
"confirmations.delete.message": "Weet je het zeker dat je deze toot wilt verwijderen?",
|
||||||
"confirmations.delete_list.confirm": "Verwijderen",
|
"confirmations.delete_list.confirm": "Verwijderen",
|
||||||
"confirmations.delete_list.message": "Weet je zeker dat je deze lijst definitief wilt verwijderen?",
|
"confirmations.delete_list.message": "Weet je zeker dat je deze lijst definitief wilt verwijderen?",
|
||||||
"confirmations.domain_block.confirm": "Negeer alles van deze server",
|
"confirmations.domain_block.confirm": "Verberg alles van deze server",
|
||||||
"confirmations.domain_block.message": "Weet je het echt heel erg zeker dat je alles van {domain} wilt negeren? In de meeste gevallen is het blokkeren of negeren van een paar specifieke personen voldoende en beter. Je zult geen toots van deze server op openbare tijdlijnen zien of in jouw meldingen. Jouw volgers van deze server worden verwijderd.",
|
"confirmations.domain_block.message": "Weet je het echt heel erg zeker dat je alles van {domain} wilt negeren? In de meeste gevallen is het blokkeren of negeren van een paar specifieke personen voldoende en beter. Je zult geen toots van deze server op openbare tijdlijnen zien of in jouw meldingen. Jouw volgers van deze server worden verwijderd.",
|
||||||
"confirmations.mute.confirm": "Negeren",
|
"confirmations.mute.confirm": "Negeren",
|
||||||
"confirmations.mute.message": "Weet je het zeker dat je {name} wilt negeren?",
|
"confirmations.mute.message": "Weet je het zeker dat je {name} wilt negeren?",
|
||||||
"confirmations.redraft.confirm": "Verwijderen en herschrijven",
|
"confirmations.redraft.confirm": "Verwijderen en herschrijven",
|
||||||
"confirmations.redraft.message": "Weet je zeker dat je deze toot wilt verwijderen en herschrijven? Je verliest wel alle reacties, boosts en favorieten.",
|
"confirmations.redraft.message": "Weet je zeker dat je deze toot wilt verwijderen en herschrijven? Je verliest wel de boosts en favorieten, en reacties op de originele toot zitten niet meer aan de nieuwe toot vast.",
|
||||||
"confirmations.unfollow.confirm": "Ontvolgen",
|
"confirmations.unfollow.confirm": "Ontvolgen",
|
||||||
"confirmations.unfollow.message": "Weet je het zeker dat je {name} wilt ontvolgen?",
|
"confirmations.unfollow.message": "Weet je het zeker dat je {name} wilt ontvolgen?",
|
||||||
"embed.instructions": "Embed deze toot op jouw website, door de onderstaande code te kopiëren.",
|
"embed.instructions": "Embed deze toot op jouw website, door de onderstaande code te kopiëren.",
|
||||||
|
@ -108,19 +108,19 @@
|
||||||
"emoji_button.search_results": "Zoekresultaten",
|
"emoji_button.search_results": "Zoekresultaten",
|
||||||
"emoji_button.symbols": "Symbolen",
|
"emoji_button.symbols": "Symbolen",
|
||||||
"emoji_button.travel": "Reizen en plekken",
|
"emoji_button.travel": "Reizen en plekken",
|
||||||
"empty_column.blocks": "You haven't blocked any users yet.",
|
"empty_column.blocks": "Jij hebt nog geen enkele gebruiker geblokkeerd.",
|
||||||
"empty_column.community": "De lokale tijdlijn is nog leeg. Toot iets in het openbaar om de bal aan het rollen te krijgen!",
|
"empty_column.community": "De lokale tijdlijn is nog leeg. Toot iets in het openbaar om de bal aan het rollen te krijgen!",
|
||||||
"empty_column.direct": "Je hebt nog geen directe berichten. Wanneer je er een verzend of ontvangt, zijn deze hier te zien.",
|
"empty_column.direct": "Je hebt nog geen directe berichten. Wanneer je er een verzend of ontvangt, zijn deze hier te zien.",
|
||||||
"empty_column.domain_blocks": "There are no hidden domains yet.",
|
"empty_column.domain_blocks": "Er zijn nog geen genegeerde domeinen.",
|
||||||
"empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
|
"empty_column.favourited_statuses": "Jij hebt nog geen favoriete toots. Wanneer je er een als favoriet markeert, valt deze hier te zien.",
|
||||||
"empty_column.favourites": "No one has favourited this toot yet. When someone does, they will show up here.",
|
"empty_column.favourites": "Niemand heeft nog deze toot als favoriet gemarkeerd. Wanneer iemand dit doet, valt dat hier te zien.",
|
||||||
"empty_column.follow_requests": "You don't have any follow requests yet. When you receive one, it will show up here.",
|
"empty_column.follow_requests": "Jij hebt nog enkel volgverzoek ontvangen. Wanneer je er eentje ontvangt, valt dat hier te zien.",
|
||||||
"empty_column.hashtag": "Er is nog niks te vinden onder deze hashtag.",
|
"empty_column.hashtag": "Er is nog niks te vinden onder deze hashtag.",
|
||||||
"empty_column.home": "Jij volgt nog niemand. Bezoek {public} of gebruik het zoekvenster om andere mensen te ontmoeten.",
|
"empty_column.home": "Jij volgt nog niemand. Bezoek {public} of gebruik het zoekvenster om andere mensen te ontmoeten.",
|
||||||
"empty_column.home.public_timeline": "de globale tijdlijn",
|
"empty_column.home.public_timeline": "de globale tijdlijn",
|
||||||
"empty_column.list": "Er is nog niks in deze lijst. Wanneer lijstleden nieuwe toots publiceren, zijn deze hier te zien.",
|
"empty_column.list": "Er is nog niks in deze lijst. Wanneer lijstleden nieuwe toots publiceren, zijn deze hier te zien.",
|
||||||
"empty_column.lists": "You don't have any lists yet. When you create one, it will show up here.",
|
"empty_column.lists": "Jij hebt nog enkele lijst. Wanneer je er eentje hebt aangemaakt, valt deze hier te zien.",
|
||||||
"empty_column.mutes": "You haven't muted any users yet.",
|
"empty_column.mutes": "Jij hebt nog geen gebruikers genegeerd.",
|
||||||
"empty_column.notifications": "Je hebt nog geen meldingen. Begin met iemand een gesprek.",
|
"empty_column.notifications": "Je hebt nog geen meldingen. Begin met iemand een gesprek.",
|
||||||
"empty_column.public": "Er is hier helemaal niks! Toot iets in het openbaar of volg mensen van andere servers om het te vullen",
|
"empty_column.public": "Er is hier helemaal niks! Toot iets in het openbaar of volg mensen van andere servers om het te vullen",
|
||||||
"follow_request.authorize": "Goedkeuren",
|
"follow_request.authorize": "Goedkeuren",
|
||||||
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Boosts tonen",
|
"home.column_settings.show_reblogs": "Boosts tonen",
|
||||||
"home.column_settings.show_replies": "Reacties tonen",
|
"home.column_settings.show_replies": "Reacties tonen",
|
||||||
"keyboard_shortcuts.back": "om terug te gaan",
|
"keyboard_shortcuts.back": "om terug te gaan",
|
||||||
|
"keyboard_shortcuts.blocked": "om de door jou geblokkeerde gebruikers te tonen",
|
||||||
"keyboard_shortcuts.boost": "om te boosten",
|
"keyboard_shortcuts.boost": "om te boosten",
|
||||||
"keyboard_shortcuts.column": "om op een toot te focussen in één van de kolommen",
|
"keyboard_shortcuts.column": "om op een toot te focussen in één van de kolommen",
|
||||||
"keyboard_shortcuts.compose": "om het tekstvak voor toots te focussen",
|
"keyboard_shortcuts.compose": "om het tekstvak voor toots te focussen",
|
||||||
"keyboard_shortcuts.description": "Omschrijving",
|
"keyboard_shortcuts.description": "Omschrijving",
|
||||||
|
"keyboard_shortcuts.direct": "om jouw directe berichten te tonen",
|
||||||
"keyboard_shortcuts.down": "om naar beneden door de lijst te bewegen",
|
"keyboard_shortcuts.down": "om naar beneden door de lijst te bewegen",
|
||||||
"keyboard_shortcuts.enter": "om toot volledig te tonen",
|
"keyboard_shortcuts.enter": "om toot volledig te tonen",
|
||||||
"keyboard_shortcuts.favourite": "om als favoriet te markeren",
|
"keyboard_shortcuts.favourite": "om als favoriet te markeren",
|
||||||
|
"keyboard_shortcuts.favourites": "om jouw lijst met favorieten te tonen",
|
||||||
|
"keyboard_shortcuts.federated": "om de globale tijdlijn te tonen",
|
||||||
"keyboard_shortcuts.heading": "Sneltoetsen",
|
"keyboard_shortcuts.heading": "Sneltoetsen",
|
||||||
|
"keyboard_shortcuts.home": "om jouw starttijdlijn te tonen",
|
||||||
"keyboard_shortcuts.hotkey": "Sneltoets",
|
"keyboard_shortcuts.hotkey": "Sneltoets",
|
||||||
"keyboard_shortcuts.legend": "om deze legenda te tonen",
|
"keyboard_shortcuts.legend": "om deze legenda te tonen",
|
||||||
|
"keyboard_shortcuts.local": "om de lokale tijdlijn te tonen",
|
||||||
"keyboard_shortcuts.mention": "om de auteur te vermelden",
|
"keyboard_shortcuts.mention": "om de auteur te vermelden",
|
||||||
|
"keyboard_shortcuts.muted": "om de door jou genegeerde gebruikers te tonen",
|
||||||
|
"keyboard_shortcuts.my_profile": "om jouw profiel te tonen",
|
||||||
|
"keyboard_shortcuts.notifications": "om jouw meldingen te tonen",
|
||||||
|
"keyboard_shortcuts.pinned": "om jouw vastgezette toots te tonen",
|
||||||
"keyboard_shortcuts.profile": "om het gebruikersprofiel te openen",
|
"keyboard_shortcuts.profile": "om het gebruikersprofiel te openen",
|
||||||
"keyboard_shortcuts.reply": "om te reageren",
|
"keyboard_shortcuts.reply": "om te reageren",
|
||||||
|
"keyboard_shortcuts.requests": "om jouw volgverzoeken te tonen",
|
||||||
"keyboard_shortcuts.search": "om het zoekvak te focussen",
|
"keyboard_shortcuts.search": "om het zoekvak te focussen",
|
||||||
|
"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_hidden": "om tekst achter een waarschuwing (CW) te tonen/verbergen",
|
||||||
"keyboard_shortcuts.toot": "om een nieuwe toot te starten",
|
"keyboard_shortcuts.toot": "om een nieuwe toot te starten",
|
||||||
"keyboard_shortcuts.unfocus": "om het tekst- en zoekvak te ontfocussen",
|
"keyboard_shortcuts.unfocus": "om het tekst- en zoekvak te ontfocussen",
|
||||||
|
@ -171,16 +183,16 @@
|
||||||
"missing_indicator.label": "Niet gevonden",
|
"missing_indicator.label": "Niet gevonden",
|
||||||
"missing_indicator.sublabel": "Deze hulpbron kan niet gevonden worden",
|
"missing_indicator.sublabel": "Deze hulpbron kan niet gevonden worden",
|
||||||
"mute_modal.hide_notifications": "Verberg meldingen van deze persoon?",
|
"mute_modal.hide_notifications": "Verberg meldingen van deze persoon?",
|
||||||
"navigation_bar.apps": "Mobile apps",
|
"navigation_bar.apps": "Mobiele apps",
|
||||||
"navigation_bar.blocks": "Geblokkeerde gebruikers",
|
"navigation_bar.blocks": "Geblokkeerde gebruikers",
|
||||||
"navigation_bar.community_timeline": "Lokale tijdlijn",
|
"navigation_bar.community_timeline": "Lokale tijdlijn",
|
||||||
"navigation_bar.compose": "Compose new toot",
|
"navigation_bar.compose": "Nieuw toot schrijven",
|
||||||
"navigation_bar.direct": "Directe berichten",
|
"navigation_bar.direct": "Directe berichten",
|
||||||
"navigation_bar.discover": "Ontdekken",
|
"navigation_bar.discover": "Ontdekken",
|
||||||
"navigation_bar.domain_blocks": "Verborgen domeinen",
|
"navigation_bar.domain_blocks": "Genegeerde domeinen",
|
||||||
"navigation_bar.edit_profile": "Profiel bewerken",
|
"navigation_bar.edit_profile": "Profiel bewerken",
|
||||||
"navigation_bar.favourites": "Favorieten",
|
"navigation_bar.favourites": "Favorieten",
|
||||||
"navigation_bar.filters": "Genegeerde woorden",
|
"navigation_bar.filters": "Filters",
|
||||||
"navigation_bar.follow_requests": "Volgverzoeken",
|
"navigation_bar.follow_requests": "Volgverzoeken",
|
||||||
"navigation_bar.info": "Over deze server",
|
"navigation_bar.info": "Over deze server",
|
||||||
"navigation_bar.keyboard_shortcuts": "Sneltoetsen",
|
"navigation_bar.keyboard_shortcuts": "Sneltoetsen",
|
||||||
|
@ -268,7 +280,7 @@
|
||||||
"status.cancel_reblog_private": "Niet langer boosten",
|
"status.cancel_reblog_private": "Niet langer boosten",
|
||||||
"status.cannot_reblog": "Deze toot kan niet geboost worden",
|
"status.cannot_reblog": "Deze toot kan niet geboost worden",
|
||||||
"status.delete": "Verwijderen",
|
"status.delete": "Verwijderen",
|
||||||
"status.detailed_status": "Detailed conversation view",
|
"status.detailed_status": "Uitgebreide gespreksweergave",
|
||||||
"status.direct": "Directe toot @{name}",
|
"status.direct": "Directe toot @{name}",
|
||||||
"status.embed": "Embed",
|
"status.embed": "Embed",
|
||||||
"status.favourite": "Favoriet",
|
"status.favourite": "Favoriet",
|
||||||
|
@ -285,7 +297,7 @@
|
||||||
"status.reblog": "Boost",
|
"status.reblog": "Boost",
|
||||||
"status.reblog_private": "Boost naar oorspronkelijke ontvangers",
|
"status.reblog_private": "Boost naar oorspronkelijke ontvangers",
|
||||||
"status.reblogged_by": "{name} boostte",
|
"status.reblogged_by": "{name} boostte",
|
||||||
"status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
|
"status.reblogs.empty": "Niemand heeft deze toot nog geboost. Wanneer iemand dit doet, valt dat hier te zien.",
|
||||||
"status.redraft": "Verwijderen en herschrijven",
|
"status.redraft": "Verwijderen en herschrijven",
|
||||||
"status.reply": "Reageren",
|
"status.reply": "Reageren",
|
||||||
"status.replyAll": "Reageer op iedereen",
|
"status.replyAll": "Reageer op iedereen",
|
||||||
|
@ -307,7 +319,7 @@
|
||||||
"trends.count_by_accounts": "{count} {rawCount, plural, one {persoon praat} other {mensen praten}} hierover",
|
"trends.count_by_accounts": "{count} {rawCount, plural, one {persoon praat} other {mensen praten}} hierover",
|
||||||
"ui.beforeunload": "Je concept zal verloren gaan als je Mastodon verlaat.",
|
"ui.beforeunload": "Je concept zal verloren gaan als je Mastodon verlaat.",
|
||||||
"upload_area.title": "Hierin slepen om te uploaden",
|
"upload_area.title": "Hierin slepen om te uploaden",
|
||||||
"upload_button.label": "Media toevoegen",
|
"upload_button.label": "Media toevoegen (JPEG, PNG, GIF, WebM, MP4, MOV)",
|
||||||
"upload_form.description": "Omschrijf dit voor mensen met een visuele beperking",
|
"upload_form.description": "Omschrijf dit voor mensen met een visuele beperking",
|
||||||
"upload_form.focus": "Bijsnijden",
|
"upload_form.focus": "Bijsnijden",
|
||||||
"upload_form.undo": "Verwijderen",
|
"upload_form.undo": "Verwijderen",
|
||||||
|
|
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Vis fremhevinger",
|
"home.column_settings.show_reblogs": "Vis fremhevinger",
|
||||||
"home.column_settings.show_replies": "Vis svar",
|
"home.column_settings.show_replies": "Vis svar",
|
||||||
"keyboard_shortcuts.back": "for å navigere tilbake",
|
"keyboard_shortcuts.back": "for å navigere tilbake",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "å fremheve",
|
"keyboard_shortcuts.boost": "å fremheve",
|
||||||
"keyboard_shortcuts.column": "å fokusere en status i en av kolonnene",
|
"keyboard_shortcuts.column": "å fokusere en status i en av kolonnene",
|
||||||
"keyboard_shortcuts.compose": "å fokusere komponeringsfeltet",
|
"keyboard_shortcuts.compose": "å fokusere komponeringsfeltet",
|
||||||
"keyboard_shortcuts.description": "Description",
|
"keyboard_shortcuts.description": "Description",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "for å flytte ned i listen",
|
"keyboard_shortcuts.down": "for å flytte ned i listen",
|
||||||
"keyboard_shortcuts.enter": "to open status",
|
"keyboard_shortcuts.enter": "to open status",
|
||||||
"keyboard_shortcuts.favourite": "for å favorittmarkere",
|
"keyboard_shortcuts.favourite": "for å favorittmarkere",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "Lyntast",
|
"keyboard_shortcuts.hotkey": "Lyntast",
|
||||||
"keyboard_shortcuts.legend": "å vise denne forklaringen",
|
"keyboard_shortcuts.legend": "å vise denne forklaringen",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "å nevne forfatter",
|
"keyboard_shortcuts.mention": "å nevne forfatter",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "to open author's profile",
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "for å svare",
|
"keyboard_shortcuts.reply": "for å svare",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "å fokusere søk",
|
"keyboard_shortcuts.search": "å fokusere søk",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
"keyboard_shortcuts.toot": "å starte en helt ny tut",
|
"keyboard_shortcuts.toot": "å starte en helt ny tut",
|
||||||
"keyboard_shortcuts.unfocus": "å ufokusere komponerings-/søkefeltet",
|
"keyboard_shortcuts.unfocus": "å ufokusere komponerings-/søkefeltet",
|
||||||
|
|
|
@ -10,9 +10,9 @@
|
||||||
"account.endorse": "Mostrar pel perfil",
|
"account.endorse": "Mostrar pel perfil",
|
||||||
"account.follow": "Sègre",
|
"account.follow": "Sègre",
|
||||||
"account.followers": "Seguidors",
|
"account.followers": "Seguidors",
|
||||||
"account.followers.empty": "No one follows this user yet.",
|
"account.followers.empty": "Degun sèc pas aqueste utilizaire pel moment.",
|
||||||
"account.follows": "Abonaments",
|
"account.follows": "Abonaments",
|
||||||
"account.follows.empty": "This user doesn't follow anyone yet.",
|
"account.follows.empty": "Aqueste utilizaire sèc pas degun pel moment.",
|
||||||
"account.follows_you": "Vos sèc",
|
"account.follows_you": "Vos sèc",
|
||||||
"account.hide_reblogs": "Rescondre los partatges de @{name}",
|
"account.hide_reblogs": "Rescondre los partatges de @{name}",
|
||||||
"account.media": "Mèdias",
|
"account.media": "Mèdias",
|
||||||
|
@ -89,7 +89,7 @@
|
||||||
"confirmations.mute.confirm": "Rescondre",
|
"confirmations.mute.confirm": "Rescondre",
|
||||||
"confirmations.mute.message": "Volètz vertadièrament rescondre {name} ?",
|
"confirmations.mute.message": "Volètz vertadièrament rescondre {name} ?",
|
||||||
"confirmations.redraft.confirm": "Escafar & tornar formular",
|
"confirmations.redraft.confirm": "Escafar & tornar formular",
|
||||||
"confirmations.redraft.message": "Volètz vertadièrament escafar aqueste estatut e lo reformular ? Perdretz totas sas responsas, sos partiments e favorits.",
|
"confirmations.redraft.message": "Volètz vertadièrament escafar aqueste estatut e lo reformular ? Tote sos partiments e favorits seràn perduts, e sas responsas seràn orfanèlas.",
|
||||||
"confirmations.unfollow.confirm": "Quitar de sègre",
|
"confirmations.unfollow.confirm": "Quitar de sègre",
|
||||||
"confirmations.unfollow.message": "Volètz vertadièrament quitar de sègre {name} ?",
|
"confirmations.unfollow.message": "Volètz vertadièrament quitar de sègre {name} ?",
|
||||||
"embed.instructions": "Embarcar aqueste estatut per lo far veire sus un site Internet en copiar lo còdi çai-jos.",
|
"embed.instructions": "Embarcar aqueste estatut per lo far veire sus un site Internet en copiar lo còdi çai-jos.",
|
||||||
|
@ -108,7 +108,7 @@
|
||||||
"emoji_button.search_results": "Resultats de recèrca",
|
"emoji_button.search_results": "Resultats de recèrca",
|
||||||
"emoji_button.symbols": "Simbòls",
|
"emoji_button.symbols": "Simbòls",
|
||||||
"emoji_button.travel": "Viatges & lòcs",
|
"emoji_button.travel": "Viatges & lòcs",
|
||||||
"empty_column.blocks": "You haven't blocked any users yet.",
|
"empty_column.blocks": "Avètz pas blocat degun pel moment.",
|
||||||
"empty_column.community": "Lo flux public local es void. Escrivètz quicòm per lo garnir !",
|
"empty_column.community": "Lo flux public local es void. Escrivètz quicòm per lo garnir !",
|
||||||
"empty_column.direct": "Avètz pas encara cap de messatges. Quand ne mandatz un o que ne recebètz un, serà mostrat aquí.",
|
"empty_column.direct": "Avètz pas encara cap de messatges. Quand ne mandatz un o que ne recebètz un, serà mostrat aquí.",
|
||||||
"empty_column.domain_blocks": "There are no hidden domains yet.",
|
"empty_column.domain_blocks": "There are no hidden domains yet.",
|
||||||
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Mostrar los partatges",
|
"home.column_settings.show_reblogs": "Mostrar los partatges",
|
||||||
"home.column_settings.show_replies": "Mostrar las responsas",
|
"home.column_settings.show_replies": "Mostrar las responsas",
|
||||||
"keyboard_shortcuts.back": "anar enrèire",
|
"keyboard_shortcuts.back": "anar enrèire",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "partejar",
|
"keyboard_shortcuts.boost": "partejar",
|
||||||
"keyboard_shortcuts.column": "centrar un estatut a una colomna",
|
"keyboard_shortcuts.column": "centrar un estatut a una colomna",
|
||||||
"keyboard_shortcuts.compose": "anar al camp tèxte",
|
"keyboard_shortcuts.compose": "anar al camp tèxte",
|
||||||
"keyboard_shortcuts.description": "Descripcion",
|
"keyboard_shortcuts.description": "Descripcion",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "far davalar dins la lista",
|
"keyboard_shortcuts.down": "far davalar dins la lista",
|
||||||
"keyboard_shortcuts.enter": "dobrir los estatuts",
|
"keyboard_shortcuts.enter": "dobrir los estatuts",
|
||||||
"keyboard_shortcuts.favourite": "apondre als favorits",
|
"keyboard_shortcuts.favourite": "apondre als favorits",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Acorchis clavièr",
|
"keyboard_shortcuts.heading": "Acorchis clavièr",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "Acorchis",
|
"keyboard_shortcuts.hotkey": "Acorchis",
|
||||||
"keyboard_shortcuts.legend": "mostrar aquesta legenda",
|
"keyboard_shortcuts.legend": "mostrar aquesta legenda",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "mencionar l’autor",
|
"keyboard_shortcuts.mention": "mencionar l’autor",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "per dobrir lo perfil de l’autor",
|
"keyboard_shortcuts.profile": "per dobrir lo perfil de l’autor",
|
||||||
"keyboard_shortcuts.reply": "respondre",
|
"keyboard_shortcuts.reply": "respondre",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "anar a la recèrca",
|
"keyboard_shortcuts.search": "anar a la recèrca",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "mostrar/amagar lo tèxte dels avertiments",
|
"keyboard_shortcuts.toggle_hidden": "mostrar/amagar lo tèxte dels avertiments",
|
||||||
"keyboard_shortcuts.toot": "començar un estatut tot novèl",
|
"keyboard_shortcuts.toot": "començar un estatut tot novèl",
|
||||||
"keyboard_shortcuts.unfocus": "quitar lo camp tèxte/de recèrca",
|
"keyboard_shortcuts.unfocus": "quitar lo camp tèxte/de recèrca",
|
||||||
|
@ -307,7 +319,7 @@
|
||||||
"trends.count_by_accounts": "{count} {rawCount, plural, one {person} ne charra other {people}} ne charran",
|
"trends.count_by_accounts": "{count} {rawCount, plural, one {person} ne charra other {people}} ne charran",
|
||||||
"ui.beforeunload": "Vòstre brolhon serà perdut se quitatz Mastodon.",
|
"ui.beforeunload": "Vòstre brolhon serà perdut se quitatz Mastodon.",
|
||||||
"upload_area.title": "Lisatz e depausatz per mandar",
|
"upload_area.title": "Lisatz e depausatz per mandar",
|
||||||
"upload_button.label": "Ajustar un mèdia",
|
"upload_button.label": "Ajustar un mèdia (JPEG, PNG, GIF, WebM, MP4, MOV)",
|
||||||
"upload_form.description": "Descripcion pels mal vesents",
|
"upload_form.description": "Descripcion pels mal vesents",
|
||||||
"upload_form.focus": "Retalhar",
|
"upload_form.focus": "Retalhar",
|
||||||
"upload_form.undo": "Suprimir",
|
"upload_form.undo": "Suprimir",
|
||||||
|
|
|
@ -89,7 +89,7 @@
|
||||||
"confirmations.mute.confirm": "Wycisz",
|
"confirmations.mute.confirm": "Wycisz",
|
||||||
"confirmations.mute.message": "Czy na pewno chcesz wyciszyć {name}?",
|
"confirmations.mute.message": "Czy na pewno chcesz wyciszyć {name}?",
|
||||||
"confirmations.redraft.confirm": "Usuń i przeredaguj",
|
"confirmations.redraft.confirm": "Usuń i przeredaguj",
|
||||||
"confirmations.redraft.message": "Czy na pewno chcesz usunąć i przeredagować ten wpis? Utracisz wszystkie odpowiedzi, podbicia i polubienia dotyczące go.",
|
"confirmations.redraft.message": "Czy na pewno chcesz usunąć i przeredagować ten wpis? Polubienia i podbicia zostaną utracone, a odpowiedzi do oryginalnego wpisu zostaną osierocone.",
|
||||||
"confirmations.unfollow.confirm": "Przestań śledzić",
|
"confirmations.unfollow.confirm": "Przestań śledzić",
|
||||||
"confirmations.unfollow.message": "Czy na pewno zamierzasz przestać śledzić {name}?",
|
"confirmations.unfollow.message": "Czy na pewno zamierzasz przestać śledzić {name}?",
|
||||||
"embed.instructions": "Osadź ten wpis na swojej stronie wklejając poniższy kod.",
|
"embed.instructions": "Osadź ten wpis na swojej stronie wklejając poniższy kod.",
|
||||||
|
@ -319,11 +319,11 @@
|
||||||
"trends.count_by_accounts": "{count} {rawCount, plural, one {osoba rozmawia} few {osoby rozmawiają} other {osób rozmawia}} o tym",
|
"trends.count_by_accounts": "{count} {rawCount, plural, one {osoba rozmawia} few {osoby rozmawiają} other {osób rozmawia}} o tym",
|
||||||
"ui.beforeunload": "Utracisz tworzony wpis, jeżeli opuścisz Mastodona.",
|
"ui.beforeunload": "Utracisz tworzony wpis, jeżeli opuścisz Mastodona.",
|
||||||
"upload_area.title": "Przeciągnij i upuść aby wysłać",
|
"upload_area.title": "Przeciągnij i upuść aby wysłać",
|
||||||
"upload_button.label": "Dodaj zawartość multimedialną",
|
"upload_button.label": "Dodaj zawartość multimedialną (JPEG, PNG, GIF, WebM, MP4, MOV)",
|
||||||
"upload_form.description": "Wprowadź opis dla niewidomych i niedowidzących",
|
"upload_form.description": "Wprowadź opis dla niewidomych i niedowidzących",
|
||||||
"upload_form.focus": "Przytnij",
|
"upload_form.focus": "Przytnij",
|
||||||
"upload_form.undo": "Usuń",
|
"upload_form.undo": "Usuń",
|
||||||
"upload_progress.label": "Wysyłanie",
|
"upload_progress.label": "Wysyłanie...",
|
||||||
"video.close": "Zamknij film",
|
"video.close": "Zamknij film",
|
||||||
"video.exit_fullscreen": "Opuść tryb pełnoekranowy",
|
"video.exit_fullscreen": "Opuść tryb pełnoekranowy",
|
||||||
"video.expand": "Rozszerz film",
|
"video.expand": "Rozszerz film",
|
||||||
|
|
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Mostrar compartilhamentos",
|
"home.column_settings.show_reblogs": "Mostrar compartilhamentos",
|
||||||
"home.column_settings.show_replies": "Mostrar as respostas",
|
"home.column_settings.show_replies": "Mostrar as respostas",
|
||||||
"keyboard_shortcuts.back": "para navegar de volta",
|
"keyboard_shortcuts.back": "para navegar de volta",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "para compartilhar",
|
"keyboard_shortcuts.boost": "para compartilhar",
|
||||||
"keyboard_shortcuts.column": "Focar um status em uma das colunas",
|
"keyboard_shortcuts.column": "Focar um status em uma das colunas",
|
||||||
"keyboard_shortcuts.compose": "para focar a área de redação",
|
"keyboard_shortcuts.compose": "para focar a área de redação",
|
||||||
"keyboard_shortcuts.description": "Descrição",
|
"keyboard_shortcuts.description": "Descrição",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "para mover para baixo na lista",
|
"keyboard_shortcuts.down": "para mover para baixo na lista",
|
||||||
"keyboard_shortcuts.enter": "para expandir um status",
|
"keyboard_shortcuts.enter": "para expandir um status",
|
||||||
"keyboard_shortcuts.favourite": "para adicionar aos favoritos",
|
"keyboard_shortcuts.favourite": "para adicionar aos favoritos",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Atalhos de teclado",
|
"keyboard_shortcuts.heading": "Atalhos de teclado",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "Atalho",
|
"keyboard_shortcuts.hotkey": "Atalho",
|
||||||
"keyboard_shortcuts.legend": "para mostrar essa legenda",
|
"keyboard_shortcuts.legend": "para mostrar essa legenda",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "para mencionar o autor",
|
"keyboard_shortcuts.mention": "para mencionar o autor",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "para abrir o perfil do autor",
|
"keyboard_shortcuts.profile": "para abrir o perfil do autor",
|
||||||
"keyboard_shortcuts.reply": "para responder",
|
"keyboard_shortcuts.reply": "para responder",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "para focar a pesquisa",
|
"keyboard_shortcuts.search": "para focar a pesquisa",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "mostrar/esconder o texto com aviso de conteúdo",
|
"keyboard_shortcuts.toggle_hidden": "mostrar/esconder o texto com aviso de conteúdo",
|
||||||
"keyboard_shortcuts.toot": "para compor um novo toot",
|
"keyboard_shortcuts.toot": "para compor um novo toot",
|
||||||
"keyboard_shortcuts.unfocus": "para remover o foco da área de composição/pesquisa",
|
"keyboard_shortcuts.unfocus": "para remover o foco da área de composição/pesquisa",
|
||||||
|
|
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Mostrar as partilhas",
|
"home.column_settings.show_reblogs": "Mostrar as partilhas",
|
||||||
"home.column_settings.show_replies": "Mostrar as respostas",
|
"home.column_settings.show_replies": "Mostrar as respostas",
|
||||||
"keyboard_shortcuts.back": "para voltar",
|
"keyboard_shortcuts.back": "para voltar",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "para partilhar",
|
"keyboard_shortcuts.boost": "para partilhar",
|
||||||
"keyboard_shortcuts.column": "para focar uma publicação numa das colunas",
|
"keyboard_shortcuts.column": "para focar uma publicação numa das colunas",
|
||||||
"keyboard_shortcuts.compose": "para focar na área de publicação",
|
"keyboard_shortcuts.compose": "para focar na área de publicação",
|
||||||
"keyboard_shortcuts.description": "Descrição",
|
"keyboard_shortcuts.description": "Descrição",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "para mover para baixo na lista",
|
"keyboard_shortcuts.down": "para mover para baixo na lista",
|
||||||
"keyboard_shortcuts.enter": "para expandir uma publicação",
|
"keyboard_shortcuts.enter": "para expandir uma publicação",
|
||||||
"keyboard_shortcuts.favourite": "para adicionar aos favoritos",
|
"keyboard_shortcuts.favourite": "para adicionar aos favoritos",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Atalhos do teclado",
|
"keyboard_shortcuts.heading": "Atalhos do teclado",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "Atalho",
|
"keyboard_shortcuts.hotkey": "Atalho",
|
||||||
"keyboard_shortcuts.legend": "para mostrar esta legenda",
|
"keyboard_shortcuts.legend": "para mostrar esta legenda",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "para mencionar o autor",
|
"keyboard_shortcuts.mention": "para mencionar o autor",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "to open author's profile",
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "para responder",
|
"keyboard_shortcuts.reply": "para responder",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "para focar na pesquisa",
|
"keyboard_shortcuts.search": "para focar na pesquisa",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
"keyboard_shortcuts.toot": "para compor um novo post",
|
"keyboard_shortcuts.toot": "para compor um novo post",
|
||||||
"keyboard_shortcuts.unfocus": "para remover o foco da área de publicação/pesquisa",
|
"keyboard_shortcuts.unfocus": "para remover o foco da área de publicação/pesquisa",
|
||||||
|
|
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Показывать продвижения",
|
"home.column_settings.show_reblogs": "Показывать продвижения",
|
||||||
"home.column_settings.show_replies": "Показывать ответы",
|
"home.column_settings.show_replies": "Показывать ответы",
|
||||||
"keyboard_shortcuts.back": "перейти назад",
|
"keyboard_shortcuts.back": "перейти назад",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "продвинуть пост",
|
"keyboard_shortcuts.boost": "продвинуть пост",
|
||||||
"keyboard_shortcuts.column": "фокус на одном из столбцов",
|
"keyboard_shortcuts.column": "фокус на одном из столбцов",
|
||||||
"keyboard_shortcuts.compose": "фокус на поле ввода",
|
"keyboard_shortcuts.compose": "фокус на поле ввода",
|
||||||
"keyboard_shortcuts.description": "Описание",
|
"keyboard_shortcuts.description": "Описание",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "вниз по списку",
|
"keyboard_shortcuts.down": "вниз по списку",
|
||||||
"keyboard_shortcuts.enter": "развернуть пост",
|
"keyboard_shortcuts.enter": "развернуть пост",
|
||||||
"keyboard_shortcuts.favourite": "в избранное",
|
"keyboard_shortcuts.favourite": "в избранное",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Сочетания клавиш",
|
"keyboard_shortcuts.heading": "Сочетания клавиш",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "Гор. клавиша",
|
"keyboard_shortcuts.hotkey": "Гор. клавиша",
|
||||||
"keyboard_shortcuts.legend": "показать это окно",
|
"keyboard_shortcuts.legend": "показать это окно",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "упомянуть автора поста",
|
"keyboard_shortcuts.mention": "упомянуть автора поста",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "перейти к профилю автора",
|
"keyboard_shortcuts.profile": "перейти к профилю автора",
|
||||||
"keyboard_shortcuts.reply": "ответить",
|
"keyboard_shortcuts.reply": "ответить",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "перейти к поиску",
|
"keyboard_shortcuts.search": "перейти к поиску",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "показать/скрыть текст за предупреждением",
|
"keyboard_shortcuts.toggle_hidden": "показать/скрыть текст за предупреждением",
|
||||||
"keyboard_shortcuts.toot": "начать писать новый пост",
|
"keyboard_shortcuts.toot": "начать писать новый пост",
|
||||||
"keyboard_shortcuts.unfocus": "убрать фокус с поля ввода/поиска",
|
"keyboard_shortcuts.unfocus": "убрать фокус с поля ввода/поиска",
|
||||||
|
|
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Zobraziť povýšené",
|
"home.column_settings.show_reblogs": "Zobraziť povýšené",
|
||||||
"home.column_settings.show_replies": "Ukázať odpovede",
|
"home.column_settings.show_replies": "Ukázať odpovede",
|
||||||
"keyboard_shortcuts.back": "dostať sa naspäť",
|
"keyboard_shortcuts.back": "dostať sa naspäť",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "vyzdvihnúť",
|
"keyboard_shortcuts.boost": "vyzdvihnúť",
|
||||||
"keyboard_shortcuts.column": "zamerať sa na status v jednom zo stĺpcov",
|
"keyboard_shortcuts.column": "zamerať sa na status v jednom zo stĺpcov",
|
||||||
"keyboard_shortcuts.compose": "zamerať sa na písaciu plochu",
|
"keyboard_shortcuts.compose": "zamerať sa na písaciu plochu",
|
||||||
"keyboard_shortcuts.description": "Popis",
|
"keyboard_shortcuts.description": "Popis",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "posunúť sa dole v zozname",
|
"keyboard_shortcuts.down": "posunúť sa dole v zozname",
|
||||||
"keyboard_shortcuts.enter": "otvoriť správu",
|
"keyboard_shortcuts.enter": "otvoriť správu",
|
||||||
"keyboard_shortcuts.favourite": "pridať do obľúbených",
|
"keyboard_shortcuts.favourite": "pridať do obľúbených",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Klávesové skratky",
|
"keyboard_shortcuts.heading": "Klávesové skratky",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "Klávesa",
|
"keyboard_shortcuts.hotkey": "Klávesa",
|
||||||
"keyboard_shortcuts.legend": "zobraziť túto legendu",
|
"keyboard_shortcuts.legend": "zobraziť túto legendu",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "spomenúť autora",
|
"keyboard_shortcuts.mention": "spomenúť autora",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "to open author's profile",
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "odpovedať",
|
"keyboard_shortcuts.reply": "odpovedať",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "zamerať sa na vyhľadávanie",
|
"keyboard_shortcuts.search": "zamerať sa na vyhľadávanie",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "ukáž/skry text za CW",
|
"keyboard_shortcuts.toggle_hidden": "ukáž/skry text za CW",
|
||||||
"keyboard_shortcuts.toot": "začať úplne novú hlášku",
|
"keyboard_shortcuts.toot": "začať úplne novú hlášku",
|
||||||
"keyboard_shortcuts.unfocus": "nesústrediť sa na písaciu plochu, alebo hľadanie",
|
"keyboard_shortcuts.unfocus": "nesústrediť sa na písaciu plochu, alebo hľadanie",
|
||||||
|
|
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Pokaži sunke",
|
"home.column_settings.show_reblogs": "Pokaži sunke",
|
||||||
"home.column_settings.show_replies": "Pokaži odgovore",
|
"home.column_settings.show_replies": "Pokaži odgovore",
|
||||||
"keyboard_shortcuts.back": "za krmarjenje nazaj",
|
"keyboard_shortcuts.back": "za krmarjenje nazaj",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "suniti",
|
"keyboard_shortcuts.boost": "suniti",
|
||||||
"keyboard_shortcuts.column": "osredotočiti status v enega od stolpcev",
|
"keyboard_shortcuts.column": "osredotočiti status v enega od stolpcev",
|
||||||
"keyboard_shortcuts.compose": "osredotočiti na sestavljanje besedila",
|
"keyboard_shortcuts.compose": "osredotočiti na sestavljanje besedila",
|
||||||
"keyboard_shortcuts.description": "Opis",
|
"keyboard_shortcuts.description": "Opis",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "premakniti navzdol po seznamu",
|
"keyboard_shortcuts.down": "premakniti navzdol po seznamu",
|
||||||
"keyboard_shortcuts.enter": "odpreti status",
|
"keyboard_shortcuts.enter": "odpreti status",
|
||||||
"keyboard_shortcuts.favourite": "to favourite",
|
"keyboard_shortcuts.favourite": "to favourite",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Tipkovne bližnjice",
|
"keyboard_shortcuts.heading": "Tipkovne bližnjice",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "Hitra tipka",
|
"keyboard_shortcuts.hotkey": "Hitra tipka",
|
||||||
"keyboard_shortcuts.legend": "to display this legend",
|
"keyboard_shortcuts.legend": "to display this legend",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "to mention author",
|
"keyboard_shortcuts.mention": "to mention author",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "to open author's profile",
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "to reply",
|
"keyboard_shortcuts.reply": "to reply",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "to focus search",
|
"keyboard_shortcuts.search": "to focus search",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
"keyboard_shortcuts.toot": "da začnete povsem nov tut",
|
"keyboard_shortcuts.toot": "da začnete povsem nov tut",
|
||||||
"keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
|
"keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
|
||||||
|
|
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Prikaži i podržavanja",
|
"home.column_settings.show_reblogs": "Prikaži i podržavanja",
|
||||||
"home.column_settings.show_replies": "Prikaži odgovore",
|
"home.column_settings.show_replies": "Prikaži odgovore",
|
||||||
"keyboard_shortcuts.back": "da odete nazad",
|
"keyboard_shortcuts.back": "da odete nazad",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "da podržite",
|
"keyboard_shortcuts.boost": "da podržite",
|
||||||
"keyboard_shortcuts.column": "da se prebacite na status u jednoj od kolona",
|
"keyboard_shortcuts.column": "da se prebacite na status u jednoj od kolona",
|
||||||
"keyboard_shortcuts.compose": "da se prebacite na pisanje novog tuta",
|
"keyboard_shortcuts.compose": "da se prebacite na pisanje novog tuta",
|
||||||
"keyboard_shortcuts.description": "Opis",
|
"keyboard_shortcuts.description": "Opis",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "da se pomerite na dole u listi",
|
"keyboard_shortcuts.down": "da se pomerite na dole u listi",
|
||||||
"keyboard_shortcuts.enter": "da otvorite status",
|
"keyboard_shortcuts.enter": "da otvorite status",
|
||||||
"keyboard_shortcuts.favourite": "da označite kao omiljeno",
|
"keyboard_shortcuts.favourite": "da označite kao omiljeno",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Prečice na tastaturi",
|
"keyboard_shortcuts.heading": "Prečice na tastaturi",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "Prečica",
|
"keyboard_shortcuts.hotkey": "Prečica",
|
||||||
"keyboard_shortcuts.legend": "da prikažete ovaj podsetnik",
|
"keyboard_shortcuts.legend": "da prikažete ovaj podsetnik",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "da pomenete autora",
|
"keyboard_shortcuts.mention": "da pomenete autora",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "to open author's profile",
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "da odgovorite",
|
"keyboard_shortcuts.reply": "da odgovorite",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "da se prebacite na pretragu",
|
"keyboard_shortcuts.search": "da se prebacite na pretragu",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
"keyboard_shortcuts.toot": "da započnete skroz novi tut",
|
"keyboard_shortcuts.toot": "da započnete skroz novi tut",
|
||||||
"keyboard_shortcuts.unfocus": "da ne budete više na pretrazi/pravljenju novog tuta",
|
"keyboard_shortcuts.unfocus": "da ne budete više na pretrazi/pravljenju novog tuta",
|
||||||
|
|
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Прикажи и подржавања",
|
"home.column_settings.show_reblogs": "Прикажи и подржавања",
|
||||||
"home.column_settings.show_replies": "Прикажи одговоре",
|
"home.column_settings.show_replies": "Прикажи одговоре",
|
||||||
"keyboard_shortcuts.back": "да одете назад",
|
"keyboard_shortcuts.back": "да одете назад",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "да подржите",
|
"keyboard_shortcuts.boost": "да подржите",
|
||||||
"keyboard_shortcuts.column": "да се пребаците на статус у једној од колона",
|
"keyboard_shortcuts.column": "да се пребаците на статус у једној од колона",
|
||||||
"keyboard_shortcuts.compose": "да се пребаците на писање новог тута",
|
"keyboard_shortcuts.compose": "да се пребаците на писање новог тута",
|
||||||
"keyboard_shortcuts.description": "Опис",
|
"keyboard_shortcuts.description": "Опис",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "да се померите на доле у листи",
|
"keyboard_shortcuts.down": "да се померите на доле у листи",
|
||||||
"keyboard_shortcuts.enter": "да отворите статус",
|
"keyboard_shortcuts.enter": "да отворите статус",
|
||||||
"keyboard_shortcuts.favourite": "да означите као омиљено",
|
"keyboard_shortcuts.favourite": "да означите као омиљено",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Пречице на тастатури",
|
"keyboard_shortcuts.heading": "Пречице на тастатури",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "Пречица",
|
"keyboard_shortcuts.hotkey": "Пречица",
|
||||||
"keyboard_shortcuts.legend": "да прикажете овај подсетник",
|
"keyboard_shortcuts.legend": "да прикажете овај подсетник",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "да поменете аутора",
|
"keyboard_shortcuts.mention": "да поменете аутора",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "to open author's profile",
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "да одговорите",
|
"keyboard_shortcuts.reply": "да одговорите",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "да се пребаците на претрагу",
|
"keyboard_shortcuts.search": "да се пребаците на претрагу",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
"keyboard_shortcuts.toot": "да започнете скроз нови тут",
|
"keyboard_shortcuts.toot": "да започнете скроз нови тут",
|
||||||
"keyboard_shortcuts.unfocus": "да не будете више на претрази/прављењу новог тута",
|
"keyboard_shortcuts.unfocus": "да не будете више на претрази/прављењу новог тута",
|
||||||
|
|
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Visa knuffar",
|
"home.column_settings.show_reblogs": "Visa knuffar",
|
||||||
"home.column_settings.show_replies": "Visa svar",
|
"home.column_settings.show_replies": "Visa svar",
|
||||||
"keyboard_shortcuts.back": "att navigera tillbaka",
|
"keyboard_shortcuts.back": "att navigera tillbaka",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "att knuffa",
|
"keyboard_shortcuts.boost": "att knuffa",
|
||||||
"keyboard_shortcuts.column": "att fokusera en status i en av kolumnerna",
|
"keyboard_shortcuts.column": "att fokusera en status i en av kolumnerna",
|
||||||
"keyboard_shortcuts.compose": "att fokusera komponera text fältet",
|
"keyboard_shortcuts.compose": "att fokusera komponera text fältet",
|
||||||
"keyboard_shortcuts.description": "Description",
|
"keyboard_shortcuts.description": "Description",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "att flytta ner i listan",
|
"keyboard_shortcuts.down": "att flytta ner i listan",
|
||||||
"keyboard_shortcuts.enter": "to open status",
|
"keyboard_shortcuts.enter": "to open status",
|
||||||
"keyboard_shortcuts.favourite": "att favorisera",
|
"keyboard_shortcuts.favourite": "att favorisera",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "Snabbvalstangent",
|
"keyboard_shortcuts.hotkey": "Snabbvalstangent",
|
||||||
"keyboard_shortcuts.legend": "att visa denna översikt",
|
"keyboard_shortcuts.legend": "att visa denna översikt",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "att nämna författaren",
|
"keyboard_shortcuts.mention": "att nämna författaren",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "to open author's profile",
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "att svara",
|
"keyboard_shortcuts.reply": "att svara",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "att fokusera sökfältet",
|
"keyboard_shortcuts.search": "att fokusera sökfältet",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "att visa/gömma text bakom CW",
|
"keyboard_shortcuts.toggle_hidden": "att visa/gömma text bakom CW",
|
||||||
"keyboard_shortcuts.toot": "att börja en helt ny toot",
|
"keyboard_shortcuts.toot": "att börja en helt ny toot",
|
||||||
"keyboard_shortcuts.unfocus": "att avfokusera komponera text fält / sökfält",
|
"keyboard_shortcuts.unfocus": "att avfokusera komponera text fält / sökfält",
|
||||||
|
|
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "బూస్ట్ లను చూపించు",
|
"home.column_settings.show_reblogs": "బూస్ట్ లను చూపించు",
|
||||||
"home.column_settings.show_replies": "ప్రత్యుత్తరాలను చూపించు",
|
"home.column_settings.show_replies": "ప్రత్యుత్తరాలను చూపించు",
|
||||||
"keyboard_shortcuts.back": "వెనక్కి తిరిగి వెళ్ళడానికి",
|
"keyboard_shortcuts.back": "వెనక్కి తిరిగి వెళ్ళడానికి",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "బూస్ట్ చేయడానికి",
|
"keyboard_shortcuts.boost": "బూస్ట్ చేయడానికి",
|
||||||
"keyboard_shortcuts.column": "నిలువు వరుసలలో ఒకదానిపై దృష్టి పెట్టడానికి",
|
"keyboard_shortcuts.column": "నిలువు వరుసలలో ఒకదానిపై దృష్టి పెట్టడానికి",
|
||||||
"keyboard_shortcuts.compose": "కంపోజ్ టెక్స్ట్ఏరియా పై దృష్టి పెట్టడానికి",
|
"keyboard_shortcuts.compose": "కంపోజ్ టెక్స్ట్ఏరియా పై దృష్టి పెట్టడానికి",
|
||||||
"keyboard_shortcuts.description": "Description",
|
"keyboard_shortcuts.description": "Description",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "జాబితాలో క్రిందికి వెళ్ళడానికి",
|
"keyboard_shortcuts.down": "జాబితాలో క్రిందికి వెళ్ళడానికి",
|
||||||
"keyboard_shortcuts.enter": "to open status",
|
"keyboard_shortcuts.enter": "to open status",
|
||||||
"keyboard_shortcuts.favourite": "ఇష్టపడడానికి",
|
"keyboard_shortcuts.favourite": "ఇష్టపడడానికి",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "కీబోర్డ్ సత్వరమార్గాలు",
|
"keyboard_shortcuts.heading": "కీబోర్డ్ సత్వరమార్గాలు",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "హాట్ కీ",
|
"keyboard_shortcuts.hotkey": "హాట్ కీ",
|
||||||
"keyboard_shortcuts.legend": "ఈ లెజెండ్ ప్రదర్శించడానికి",
|
"keyboard_shortcuts.legend": "ఈ లెజెండ్ ప్రదర్శించడానికి",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "రచయితను ప్రస్తావించడానికి",
|
"keyboard_shortcuts.mention": "రచయితను ప్రస్తావించడానికి",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "రచయిత ప్రొఫైల్ ను తెరవాలంటే",
|
"keyboard_shortcuts.profile": "రచయిత ప్రొఫైల్ ను తెరవాలంటే",
|
||||||
"keyboard_shortcuts.reply": "ప్రత్యుత్తరం ఇవ్వడానికి",
|
"keyboard_shortcuts.reply": "ప్రత్యుత్తరం ఇవ్వడానికి",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "శోధనపై దృష్టి పెట్టండి",
|
"keyboard_shortcuts.search": "శోధనపై దృష్టి పెట్టండి",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "CW వెనుక ఉన్న పాఠ్యాన్ని చూపడానికి / దాచడానికి",
|
"keyboard_shortcuts.toggle_hidden": "CW వెనుక ఉన్న పాఠ్యాన్ని చూపడానికి / దాచడానికి",
|
||||||
"keyboard_shortcuts.toot": "ఒక సరికొత్త టూట్ను ప్రారంభించడానికి",
|
"keyboard_shortcuts.toot": "ఒక సరికొత్త టూట్ను ప్రారంభించడానికి",
|
||||||
"keyboard_shortcuts.unfocus": "పాఠ్యం వ్రాసే ఏరియా/శోధన పట్టిక నుండి బయటకు రావడానికి",
|
"keyboard_shortcuts.unfocus": "పాఠ్యం వ్రాసే ఏరియా/శోధన పట్టిక నుండి బయటకు రావడానికి",
|
||||||
|
|
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Show boosts",
|
"home.column_settings.show_reblogs": "Show boosts",
|
||||||
"home.column_settings.show_replies": "Show replies",
|
"home.column_settings.show_replies": "Show replies",
|
||||||
"keyboard_shortcuts.back": "to navigate back",
|
"keyboard_shortcuts.back": "to navigate back",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "to boost",
|
"keyboard_shortcuts.boost": "to boost",
|
||||||
"keyboard_shortcuts.column": "to focus a status in one of the columns",
|
"keyboard_shortcuts.column": "to focus a status in one of the columns",
|
||||||
"keyboard_shortcuts.compose": "to focus the compose textarea",
|
"keyboard_shortcuts.compose": "to focus the compose textarea",
|
||||||
"keyboard_shortcuts.description": "Description",
|
"keyboard_shortcuts.description": "Description",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "to move down in the list",
|
"keyboard_shortcuts.down": "to move down in the list",
|
||||||
"keyboard_shortcuts.enter": "to open status",
|
"keyboard_shortcuts.enter": "to open status",
|
||||||
"keyboard_shortcuts.favourite": "to favourite",
|
"keyboard_shortcuts.favourite": "to favourite",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "Hotkey",
|
"keyboard_shortcuts.hotkey": "Hotkey",
|
||||||
"keyboard_shortcuts.legend": "to display this legend",
|
"keyboard_shortcuts.legend": "to display this legend",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "to mention author",
|
"keyboard_shortcuts.mention": "to mention author",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "to open author's profile",
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "to reply",
|
"keyboard_shortcuts.reply": "to reply",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "to focus search",
|
"keyboard_shortcuts.search": "to focus search",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
"keyboard_shortcuts.toot": "to start a brand new toot",
|
"keyboard_shortcuts.toot": "to start a brand new toot",
|
||||||
"keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
|
"keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
|
||||||
|
|
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Boost edilenleri göster",
|
"home.column_settings.show_reblogs": "Boost edilenleri göster",
|
||||||
"home.column_settings.show_replies": "Cevapları göster",
|
"home.column_settings.show_replies": "Cevapları göster",
|
||||||
"keyboard_shortcuts.back": "to navigate back",
|
"keyboard_shortcuts.back": "to navigate back",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "to boost",
|
"keyboard_shortcuts.boost": "to boost",
|
||||||
"keyboard_shortcuts.column": "to focus a status in one of the columns",
|
"keyboard_shortcuts.column": "to focus a status in one of the columns",
|
||||||
"keyboard_shortcuts.compose": "to focus the compose textarea",
|
"keyboard_shortcuts.compose": "to focus the compose textarea",
|
||||||
"keyboard_shortcuts.description": "Description",
|
"keyboard_shortcuts.description": "Description",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "to move down in the list",
|
"keyboard_shortcuts.down": "to move down in the list",
|
||||||
"keyboard_shortcuts.enter": "to open status",
|
"keyboard_shortcuts.enter": "to open status",
|
||||||
"keyboard_shortcuts.favourite": "to favourite",
|
"keyboard_shortcuts.favourite": "to favourite",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "Hotkey",
|
"keyboard_shortcuts.hotkey": "Hotkey",
|
||||||
"keyboard_shortcuts.legend": "to display this legend",
|
"keyboard_shortcuts.legend": "to display this legend",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "to mention author",
|
"keyboard_shortcuts.mention": "to mention author",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "to open author's profile",
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "to reply",
|
"keyboard_shortcuts.reply": "to reply",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "to focus search",
|
"keyboard_shortcuts.search": "to focus search",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
"keyboard_shortcuts.toot": "to start a brand new toot",
|
"keyboard_shortcuts.toot": "to start a brand new toot",
|
||||||
"keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
|
"keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
|
||||||
|
@ -210,7 +222,7 @@
|
||||||
"notifications.group": "{count} notifications",
|
"notifications.group": "{count} notifications",
|
||||||
"onboarding.done": "Tamam",
|
"onboarding.done": "Tamam",
|
||||||
"onboarding.next": "Sıradaki",
|
"onboarding.next": "Sıradaki",
|
||||||
"onboarding.page_five.public_timelines": "Yerel zaman tüneli, bu sunucudaki herkesten gelen gönderileri gösterir.Federe zaman tüneli, kullanıcıların diğer sunuculardan takip ettiği kişilerin herkese açık gönderilerini gösterir. Bunlar herkese açık zaman tünelleridir ve yeni insanlarla tanışmak için harika yerlerdir. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new ",
|
"onboarding.page_five.public_timelines": "Yerel zaman tüneli, bu sunucudaki herkesten gelen gönderileri gösterir.Federe zaman tüneli, kullanıcıların diğer sunuculardan takip ettiği kişilerin herkese açık gönderilerini gösterir. Bunlar herkese açık zaman tünelleridir ve yeni insanlarla tanışmak için harika yerlerdir. The federated timeline shows public posts from everyone who people on {domain} follow. These are the Public Timelines, a great way to discover new",
|
||||||
"onboarding.page_four.home": "Takip ettiğiniz insanlardan gelen gönderileri gosteren zaman tünelidir",
|
"onboarding.page_four.home": "Takip ettiğiniz insanlardan gelen gönderileri gosteren zaman tünelidir",
|
||||||
"onboarding.page_four.notifications": "Herkimse sizinle iletişime geçtiğinde gelen bildirimleri gösterir.",
|
"onboarding.page_four.notifications": "Herkimse sizinle iletişime geçtiğinde gelen bildirimleri gösterir.",
|
||||||
"onboarding.page_one.federation": "Mastodon, geniş bir sosyal ağ kurmak için birleşen bağımsız sunuculardan oluşan bir ağdır.",
|
"onboarding.page_one.federation": "Mastodon, geniş bir sosyal ağ kurmak için birleşen bağımsız sunuculardan oluşan bir ağdır.",
|
||||||
|
|
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "Показувати передмухи",
|
"home.column_settings.show_reblogs": "Показувати передмухи",
|
||||||
"home.column_settings.show_replies": "Показувати відповіді",
|
"home.column_settings.show_replies": "Показувати відповіді",
|
||||||
"keyboard_shortcuts.back": "переходити назад",
|
"keyboard_shortcuts.back": "переходити назад",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "передмухувати",
|
"keyboard_shortcuts.boost": "передмухувати",
|
||||||
"keyboard_shortcuts.column": "фокусуватися на одній з колонок",
|
"keyboard_shortcuts.column": "фокусуватися на одній з колонок",
|
||||||
"keyboard_shortcuts.compose": "фокусуватися на полі введення",
|
"keyboard_shortcuts.compose": "фокусуватися на полі введення",
|
||||||
"keyboard_shortcuts.description": "Опис",
|
"keyboard_shortcuts.description": "Опис",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "рухатися вниз стрічкою",
|
"keyboard_shortcuts.down": "рухатися вниз стрічкою",
|
||||||
"keyboard_shortcuts.enter": "відкрити статус",
|
"keyboard_shortcuts.enter": "відкрити статус",
|
||||||
"keyboard_shortcuts.favourite": "вподобати",
|
"keyboard_shortcuts.favourite": "вподобати",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Гарячі клавіші",
|
"keyboard_shortcuts.heading": "Гарячі клавіші",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "Гаряча клавіша",
|
"keyboard_shortcuts.hotkey": "Гаряча клавіша",
|
||||||
"keyboard_shortcuts.legend": "показати підказку",
|
"keyboard_shortcuts.legend": "показати підказку",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "згадати автора",
|
"keyboard_shortcuts.mention": "згадати автора",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "відкрити профіль автора",
|
"keyboard_shortcuts.profile": "відкрити профіль автора",
|
||||||
"keyboard_shortcuts.reply": "відповісти",
|
"keyboard_shortcuts.reply": "відповісти",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "сфокусуватися на пошуку",
|
"keyboard_shortcuts.search": "сфокусуватися на пошуку",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "показати/приховати прихований текст",
|
"keyboard_shortcuts.toggle_hidden": "показати/приховати прихований текст",
|
||||||
"keyboard_shortcuts.toot": "почати писати новий дмух",
|
"keyboard_shortcuts.toot": "почати писати новий дмух",
|
||||||
"keyboard_shortcuts.unfocus": "розфокусуватися з нового допису чи пошуку",
|
"keyboard_shortcuts.unfocus": "розфокусуватися з нового допису чи пошуку",
|
||||||
|
|
2
app/javascript/mastodon/locales/whitelist_cy.json
Normal file
2
app/javascript/mastodon/locales/whitelist_cy.json
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
[
|
||||||
|
]
|
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "显示转嘟",
|
"home.column_settings.show_reblogs": "显示转嘟",
|
||||||
"home.column_settings.show_replies": "显示回复",
|
"home.column_settings.show_replies": "显示回复",
|
||||||
"keyboard_shortcuts.back": "返回上一页",
|
"keyboard_shortcuts.back": "返回上一页",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "转嘟",
|
"keyboard_shortcuts.boost": "转嘟",
|
||||||
"keyboard_shortcuts.column": "选择第 X 栏中的嘟文",
|
"keyboard_shortcuts.column": "选择第 X 栏中的嘟文",
|
||||||
"keyboard_shortcuts.compose": "选择嘟文撰写框",
|
"keyboard_shortcuts.compose": "选择嘟文撰写框",
|
||||||
"keyboard_shortcuts.description": "说明",
|
"keyboard_shortcuts.description": "说明",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "在列表中让光标下移",
|
"keyboard_shortcuts.down": "在列表中让光标下移",
|
||||||
"keyboard_shortcuts.enter": "展开嘟文",
|
"keyboard_shortcuts.enter": "展开嘟文",
|
||||||
"keyboard_shortcuts.favourite": "收藏嘟文",
|
"keyboard_shortcuts.favourite": "收藏嘟文",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "快捷键列表",
|
"keyboard_shortcuts.heading": "快捷键列表",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "快捷键",
|
"keyboard_shortcuts.hotkey": "快捷键",
|
||||||
"keyboard_shortcuts.legend": "显示此列表",
|
"keyboard_shortcuts.legend": "显示此列表",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "提及嘟文作者",
|
"keyboard_shortcuts.mention": "提及嘟文作者",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "to open author's profile",
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "回复嘟文",
|
"keyboard_shortcuts.reply": "回复嘟文",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "选择搜索框",
|
"keyboard_shortcuts.search": "选择搜索框",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "显示或隐藏被折叠的正文",
|
"keyboard_shortcuts.toggle_hidden": "显示或隐藏被折叠的正文",
|
||||||
"keyboard_shortcuts.toot": "发送新嘟文",
|
"keyboard_shortcuts.toot": "发送新嘟文",
|
||||||
"keyboard_shortcuts.unfocus": "取消输入",
|
"keyboard_shortcuts.unfocus": "取消输入",
|
||||||
|
|
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "顯示被轉推的文章",
|
"home.column_settings.show_reblogs": "顯示被轉推的文章",
|
||||||
"home.column_settings.show_replies": "顯示回應文章",
|
"home.column_settings.show_replies": "顯示回應文章",
|
||||||
"keyboard_shortcuts.back": "後退",
|
"keyboard_shortcuts.back": "後退",
|
||||||
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "轉推",
|
"keyboard_shortcuts.boost": "轉推",
|
||||||
"keyboard_shortcuts.column": "把標示移動到其中一列",
|
"keyboard_shortcuts.column": "把標示移動到其中一列",
|
||||||
"keyboard_shortcuts.compose": "把標示移動到文字輸入區",
|
"keyboard_shortcuts.compose": "把標示移動到文字輸入區",
|
||||||
"keyboard_shortcuts.description": "描述",
|
"keyboard_shortcuts.description": "描述",
|
||||||
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "在列表往下移動",
|
"keyboard_shortcuts.down": "在列表往下移動",
|
||||||
"keyboard_shortcuts.enter": "打開文章",
|
"keyboard_shortcuts.enter": "打開文章",
|
||||||
"keyboard_shortcuts.favourite": "收藏",
|
"keyboard_shortcuts.favourite": "收藏",
|
||||||
|
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||||
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "鍵盤快速鍵",
|
"keyboard_shortcuts.heading": "鍵盤快速鍵",
|
||||||
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
"keyboard_shortcuts.hotkey": "快速鍵",
|
"keyboard_shortcuts.hotkey": "快速鍵",
|
||||||
"keyboard_shortcuts.legend": "顯示這個說明",
|
"keyboard_shortcuts.legend": "顯示這個說明",
|
||||||
|
"keyboard_shortcuts.local": "to open local timeline",
|
||||||
"keyboard_shortcuts.mention": "提及作者",
|
"keyboard_shortcuts.mention": "提及作者",
|
||||||
|
"keyboard_shortcuts.muted": "to open muted users list",
|
||||||
|
"keyboard_shortcuts.my_profile": "to open your profile",
|
||||||
|
"keyboard_shortcuts.notifications": "to open notifications column",
|
||||||
|
"keyboard_shortcuts.pinned": "to open pinned toots list",
|
||||||
"keyboard_shortcuts.profile": "to open author's profile",
|
"keyboard_shortcuts.profile": "to open author's profile",
|
||||||
"keyboard_shortcuts.reply": "回覆",
|
"keyboard_shortcuts.reply": "回覆",
|
||||||
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "把標示移動到搜索",
|
"keyboard_shortcuts.search": "把標示移動到搜索",
|
||||||
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "顯示或隱藏被標為敏感的文字",
|
"keyboard_shortcuts.toggle_hidden": "顯示或隱藏被標為敏感的文字",
|
||||||
"keyboard_shortcuts.toot": "新的推文",
|
"keyboard_shortcuts.toot": "新的推文",
|
||||||
"keyboard_shortcuts.unfocus": "把標示移離文字輸入和搜索",
|
"keyboard_shortcuts.unfocus": "把標示移離文字輸入和搜索",
|
||||||
|
|
|
@ -1,18 +1,18 @@
|
||||||
{
|
{
|
||||||
"account.badges.bot": "機器人",
|
"account.badges.bot": "機器人",
|
||||||
"account.block": "封鎖 @{name}",
|
"account.block": "封鎖 @{name}",
|
||||||
"account.block_domain": "隱藏來自 {domain} 的一切貼文",
|
"account.block_domain": "隱藏來自 {domain} 的一切嘟文",
|
||||||
"account.blocked": "已被封鎖的",
|
"account.blocked": "已被封鎖的",
|
||||||
"account.direct": "發送私訊給 @{name}",
|
"account.direct": "發送私訊給 @{name}",
|
||||||
"account.disclaimer_full": "下列資料不一定完整。",
|
"account.disclaimer_full": "下列資料不一定完整。",
|
||||||
"account.domain_blocked": "站點被隱藏",
|
"account.domain_blocked": "站點被隱藏",
|
||||||
"account.edit_profile": "編輯使用者資訊",
|
"account.edit_profile": "編輯使用者資訊",
|
||||||
"account.endorse": "Feature on profile",
|
"account.endorse": "在個人資訊頁面上推薦對方",
|
||||||
"account.follow": "關注",
|
"account.follow": "關注",
|
||||||
"account.followers": "關注者",
|
"account.followers": "關注者",
|
||||||
"account.followers.empty": "No one follows this user yet.",
|
"account.followers.empty": "還沒有人關注這個使用者",
|
||||||
"account.follows": "正在關注",
|
"account.follows": "正在關注",
|
||||||
"account.follows.empty": "This user doesn't follow anyone yet.",
|
"account.follows.empty": "這個使用者還沒有關注任何人",
|
||||||
"account.follows_you": "關注你",
|
"account.follows_you": "關注你",
|
||||||
"account.hide_reblogs": "隱藏來自 @{name} 的轉推",
|
"account.hide_reblogs": "隱藏來自 @{name} 的轉推",
|
||||||
"account.media": "媒體",
|
"account.media": "媒體",
|
||||||
|
@ -29,7 +29,7 @@
|
||||||
"account.show_reblogs": "顯示來自 @{name} 的嘟文",
|
"account.show_reblogs": "顯示來自 @{name} 的嘟文",
|
||||||
"account.unblock": "取消封鎖 @{name}",
|
"account.unblock": "取消封鎖 @{name}",
|
||||||
"account.unblock_domain": "不再隱藏 {domain}",
|
"account.unblock_domain": "不再隱藏 {domain}",
|
||||||
"account.unendorse": "Don't feature on profile",
|
"account.unendorse": "不再於個人資訊頁面上推薦對方",
|
||||||
"account.unfollow": "取消關注",
|
"account.unfollow": "取消關注",
|
||||||
"account.unmute": "不再靜音 @{name}",
|
"account.unmute": "不再靜音 @{name}",
|
||||||
"account.unmute_notifications": "不再對來自 @{name} 的通知靜音",
|
"account.unmute_notifications": "不再對來自 @{name} 的通知靜音",
|
||||||
|
@ -67,10 +67,10 @@
|
||||||
"compose_form.direct_message_warning": "這條嘟文僅對有被提及的使用者才能看到。",
|
"compose_form.direct_message_warning": "這條嘟文僅對有被提及的使用者才能看到。",
|
||||||
"compose_form.direct_message_warning_learn_more": "了解更多",
|
"compose_form.direct_message_warning_learn_more": "了解更多",
|
||||||
"compose_form.hashtag_warning": "此則推文將不會在任何主題標籤中看見,只有公開的推文可以用主題標籤來搜尋。",
|
"compose_form.hashtag_warning": "此則推文將不會在任何主題標籤中看見,只有公開的推文可以用主題標籤來搜尋。",
|
||||||
"compose_form.lock_disclaimer": "你的帳號沒有{locked}。任何人都可以關注你,看到發給關注者的貼文。",
|
"compose_form.lock_disclaimer": "你的帳號沒有{locked}。任何人都可以關注你,看到發給關注者的嘟文。",
|
||||||
"compose_form.lock_disclaimer.lock": "上鎖",
|
"compose_form.lock_disclaimer.lock": "上鎖",
|
||||||
"compose_form.placeholder": "在想些什麼?",
|
"compose_form.placeholder": "在想些什麼?",
|
||||||
"compose_form.publish": "貼掉",
|
"compose_form.publish": "嘟掉",
|
||||||
"compose_form.publish_loud": "{publish}!",
|
"compose_form.publish_loud": "{publish}!",
|
||||||
"compose_form.sensitive.marked": "此媒體已被標註為敏感的",
|
"compose_form.sensitive.marked": "此媒體已被標註為敏感的",
|
||||||
"compose_form.sensitive.unmarked": "此媒體未被標註為敏感的",
|
"compose_form.sensitive.unmarked": "此媒體未被標註為敏感的",
|
||||||
|
@ -92,7 +92,7 @@
|
||||||
"confirmations.redraft.message": "你確定要刪除這條嘟文並重新編輯它嗎? 所有相關的回覆、轉嘟與最愛都會被刪除。",
|
"confirmations.redraft.message": "你確定要刪除這條嘟文並重新編輯它嗎? 所有相關的回覆、轉嘟與最愛都會被刪除。",
|
||||||
"confirmations.unfollow.confirm": "取消關注",
|
"confirmations.unfollow.confirm": "取消關注",
|
||||||
"confirmations.unfollow.message": "真的不要繼續關注 {name} 了嗎?",
|
"confirmations.unfollow.message": "真的不要繼續關注 {name} 了嗎?",
|
||||||
"embed.instructions": "要內嵌此貼文,請將以下代碼貼進你的網站。",
|
"embed.instructions": "要內嵌此嘟文,請將以下代碼貼進你的網站。",
|
||||||
"embed.preview": "看上去會變成這樣:",
|
"embed.preview": "看上去會變成這樣:",
|
||||||
"emoji_button.activity": "活動",
|
"emoji_button.activity": "活動",
|
||||||
"emoji_button.custom": "自訂",
|
"emoji_button.custom": "自訂",
|
||||||
|
@ -108,25 +108,25 @@
|
||||||
"emoji_button.search_results": "搜尋結果",
|
"emoji_button.search_results": "搜尋結果",
|
||||||
"emoji_button.symbols": "符號",
|
"emoji_button.symbols": "符號",
|
||||||
"emoji_button.travel": "旅遊與地點",
|
"emoji_button.travel": "旅遊與地點",
|
||||||
"empty_column.blocks": "You haven't blocked any users yet.",
|
"empty_column.blocks": "你還沒有封鎖任何使用者。",
|
||||||
"empty_column.community": "本地時間軸是空的。公開寫點什麼吧!",
|
"empty_column.community": "本地時間軸是空的。公開寫點什麼吧!",
|
||||||
"empty_column.direct": "你還沒有使用過私訊。當你發出或著收到私訊時,它會在這裡顯示。",
|
"empty_column.direct": "你還沒有使用過私訊。當你發出或著收到私訊時,它會在這裡顯示。",
|
||||||
"empty_column.domain_blocks": "There are no hidden domains yet.",
|
"empty_column.domain_blocks": "還沒有隱藏任何網域。",
|
||||||
"empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
|
"empty_column.favourited_statuses": "你還沒有收藏任何嘟文。收藏後的嘟文會顯示在這裡。",
|
||||||
"empty_column.favourites": "No one has favourited this toot yet. When someone does, they will show up here.",
|
"empty_column.favourites": "還沒有人收藏此嘟文。如果有人收藏,會顯示在這裡。",
|
||||||
"empty_column.follow_requests": "You don't have any follow requests yet. When you receive one, it will show up here.",
|
"empty_column.follow_requests": "還沒有人請求關注你。如果收到關注請求,會顯示在這裡。",
|
||||||
"empty_column.hashtag": "這個主題標籤下什麼都沒有。",
|
"empty_column.hashtag": "這個主題標籤下什麼都沒有。",
|
||||||
"empty_column.home": "你還沒關注任何人。造訪{public}或利用搜尋功能找到其他用者。",
|
"empty_column.home": "你還沒關注任何人。造訪{public}或利用搜尋功能找到其他用者。",
|
||||||
"empty_column.home.public_timeline": "公開時間軸",
|
"empty_column.home.public_timeline": "公開時間軸",
|
||||||
"empty_column.list": "此份清單尚未有東西。當此清單的成員貼出了新的狀態時,它們就會出現在這裡。",
|
"empty_column.list": "此份名單尚未有東西。當此名單的成員嘟出了新的狀態時,它們就會出現在這裡。",
|
||||||
"empty_column.lists": "You don't have any lists yet. When you create one, it will show up here.",
|
"empty_column.lists": "你還沒有建立任何名單。你建立的名單將會顯示在這裡。",
|
||||||
"empty_column.mutes": "You haven't muted any users yet.",
|
"empty_column.mutes": "你還沒有靜音任何使用者。",
|
||||||
"empty_column.notifications": "還沒有任何通知。和別的使用者互動來開始對話。",
|
"empty_column.notifications": "還沒有任何通知。和別的使用者互動來開始對話。",
|
||||||
"empty_column.public": "這裡什麼都沒有! 寫一些公開的嘟文,或著關注其他站點的使用者後,這裡就會有嘟文出現了",
|
"empty_column.public": "這裡什麼都沒有! 寫一些公開的嘟文,或著關注其他站點的使用者後,這裡就會有嘟文出現了",
|
||||||
"follow_request.authorize": "授權",
|
"follow_request.authorize": "授權",
|
||||||
"follow_request.reject": "拒絕",
|
"follow_request.reject": "拒絕",
|
||||||
"getting_started.developers": "開發",
|
"getting_started.developers": "開發",
|
||||||
"getting_started.documentation": "Documentation",
|
"getting_started.documentation": "文件",
|
||||||
"getting_started.find_friends": "尋找 Twitter 好友",
|
"getting_started.find_friends": "尋找 Twitter 好友",
|
||||||
"getting_started.heading": "馬上開始",
|
"getting_started.heading": "馬上開始",
|
||||||
"getting_started.invite": "邀請使用者",
|
"getting_started.invite": "邀請使用者",
|
||||||
|
@ -137,20 +137,32 @@
|
||||||
"home.column_settings.show_reblogs": "顯示轉推",
|
"home.column_settings.show_reblogs": "顯示轉推",
|
||||||
"home.column_settings.show_replies": "顯示回應",
|
"home.column_settings.show_replies": "顯示回應",
|
||||||
"keyboard_shortcuts.back": "回到上一個",
|
"keyboard_shortcuts.back": "回到上一個",
|
||||||
|
"keyboard_shortcuts.blocked": "到封鎖的使用者名單",
|
||||||
"keyboard_shortcuts.boost": "到轉推",
|
"keyboard_shortcuts.boost": "到轉推",
|
||||||
"keyboard_shortcuts.column": "選擇第 X 欄中的嘟文",
|
"keyboard_shortcuts.column": "選擇第 X 欄中的嘟文",
|
||||||
"keyboard_shortcuts.compose": "焦點移至撰寫文字區塊",
|
"keyboard_shortcuts.compose": "焦點移至撰寫文字區塊",
|
||||||
"keyboard_shortcuts.description": "描述",
|
"keyboard_shortcuts.description": "描述",
|
||||||
|
"keyboard_shortcuts.direct": "到私訊欄",
|
||||||
"keyboard_shortcuts.down": "在列表往下移動",
|
"keyboard_shortcuts.down": "在列表往下移動",
|
||||||
"keyboard_shortcuts.enter": "to open status",
|
"keyboard_shortcuts.enter": "看嘟文",
|
||||||
"keyboard_shortcuts.favourite": "收藏",
|
"keyboard_shortcuts.favourite": "收藏",
|
||||||
|
"keyboard_shortcuts.favourites": "到收藏名單",
|
||||||
|
"keyboard_shortcuts.federated": "到其他站點時間軸",
|
||||||
"keyboard_shortcuts.heading": "鍵盤快速鍵",
|
"keyboard_shortcuts.heading": "鍵盤快速鍵",
|
||||||
|
"keyboard_shortcuts.home": "到主頁時間軸",
|
||||||
"keyboard_shortcuts.hotkey": "快速鍵",
|
"keyboard_shortcuts.hotkey": "快速鍵",
|
||||||
"keyboard_shortcuts.legend": "顯示這個說明",
|
"keyboard_shortcuts.legend": "顯示這個說明",
|
||||||
|
"keyboard_shortcuts.local": "到本地時間軸",
|
||||||
"keyboard_shortcuts.mention": "到提到的作者",
|
"keyboard_shortcuts.mention": "到提到的作者",
|
||||||
"keyboard_shortcuts.profile": "to open author's profile",
|
"keyboard_shortcuts.muted": "到靜音的使用者列表",
|
||||||
|
"keyboard_shortcuts.my_profile": "到你的個人資訊頁",
|
||||||
|
"keyboard_shortcuts.notifications": "打開通知欄",
|
||||||
|
"keyboard_shortcuts.pinned": "到收藏的嘟文名單",
|
||||||
|
"keyboard_shortcuts.profile": "到嘟文作者的個人資訊頁",
|
||||||
"keyboard_shortcuts.reply": "到回應",
|
"keyboard_shortcuts.reply": "到回應",
|
||||||
|
"keyboard_shortcuts.requests": "打開關注請求名單",
|
||||||
"keyboard_shortcuts.search": "把滑鼠移動到搜尋",
|
"keyboard_shortcuts.search": "把滑鼠移動到搜尋",
|
||||||
|
"keyboard_shortcuts.start": "到「馬上開始」",
|
||||||
"keyboard_shortcuts.toggle_hidden": "顯示或隱藏被標為敏感的嘟文",
|
"keyboard_shortcuts.toggle_hidden": "顯示或隱藏被標為敏感的嘟文",
|
||||||
"keyboard_shortcuts.toot": "新的嘟文",
|
"keyboard_shortcuts.toot": "新的嘟文",
|
||||||
"keyboard_shortcuts.unfocus": "取消輸入",
|
"keyboard_shortcuts.unfocus": "取消輸入",
|
||||||
|
@ -174,13 +186,13 @@
|
||||||
"navigation_bar.apps": "Mobile apps",
|
"navigation_bar.apps": "Mobile apps",
|
||||||
"navigation_bar.blocks": "封鎖的使用者",
|
"navigation_bar.blocks": "封鎖的使用者",
|
||||||
"navigation_bar.community_timeline": "本地時間軸",
|
"navigation_bar.community_timeline": "本地時間軸",
|
||||||
"navigation_bar.compose": "Compose new toot",
|
"navigation_bar.compose": "寫新的嘟文",
|
||||||
"navigation_bar.direct": "私訊",
|
"navigation_bar.direct": "私訊",
|
||||||
"navigation_bar.discover": "探索",
|
"navigation_bar.discover": "探索",
|
||||||
"navigation_bar.domain_blocks": "隱藏的站點",
|
"navigation_bar.domain_blocks": "隱藏的站點",
|
||||||
"navigation_bar.edit_profile": "編輯使用者資訊",
|
"navigation_bar.edit_profile": "編輯使用者資訊",
|
||||||
"navigation_bar.favourites": "最愛",
|
"navigation_bar.favourites": "最愛",
|
||||||
"navigation_bar.filters": "Muted words",
|
"navigation_bar.filters": "消音的詞",
|
||||||
"navigation_bar.follow_requests": "關注請求",
|
"navigation_bar.follow_requests": "關注請求",
|
||||||
"navigation_bar.info": "關於本站",
|
"navigation_bar.info": "關於本站",
|
||||||
"navigation_bar.keyboard_shortcuts": "快捷鍵",
|
"navigation_bar.keyboard_shortcuts": "快捷鍵",
|
||||||
|
@ -234,7 +246,7 @@
|
||||||
"privacy.direct.short": "私訊",
|
"privacy.direct.short": "私訊",
|
||||||
"privacy.private.long": "只有關注你的使用者能看到",
|
"privacy.private.long": "只有關注你的使用者能看到",
|
||||||
"privacy.private.short": "僅關注者",
|
"privacy.private.short": "僅關注者",
|
||||||
"privacy.public.long": "貼到公開時間軸",
|
"privacy.public.long": "嘟到公開時間軸",
|
||||||
"privacy.public.short": "公開",
|
"privacy.public.short": "公開",
|
||||||
"privacy.unlisted.long": "公開,但不會顯示在公開時間軸",
|
"privacy.unlisted.long": "公開,但不會顯示在公開時間軸",
|
||||||
"privacy.unlisted.short": "不公開",
|
"privacy.unlisted.short": "不公開",
|
||||||
|
@ -268,7 +280,7 @@
|
||||||
"status.cancel_reblog_private": "取消轉嘟",
|
"status.cancel_reblog_private": "取消轉嘟",
|
||||||
"status.cannot_reblog": "這篇嘟文無法被轉嘟",
|
"status.cannot_reblog": "這篇嘟文無法被轉嘟",
|
||||||
"status.delete": "刪除",
|
"status.delete": "刪除",
|
||||||
"status.detailed_status": "Detailed conversation view",
|
"status.detailed_status": "對話的詳細內容",
|
||||||
"status.direct": "發送私訊給 @{name}",
|
"status.direct": "發送私訊給 @{name}",
|
||||||
"status.embed": "嵌入",
|
"status.embed": "嵌入",
|
||||||
"status.favourite": "最愛",
|
"status.favourite": "最愛",
|
||||||
|
@ -285,7 +297,7 @@
|
||||||
"status.reblog": "轉嘟",
|
"status.reblog": "轉嘟",
|
||||||
"status.reblog_private": "轉嘟給原有關注者",
|
"status.reblog_private": "轉嘟給原有關注者",
|
||||||
"status.reblogged_by": "{name} 轉嘟了",
|
"status.reblogged_by": "{name} 轉嘟了",
|
||||||
"status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
|
"status.reblogs.empty": "還沒有人轉嘟。如果有,會顯示在這裡。",
|
||||||
"status.redraft": "刪除 & 編輯",
|
"status.redraft": "刪除 & 編輯",
|
||||||
"status.reply": "回覆",
|
"status.reply": "回覆",
|
||||||
"status.replyAll": "回覆所有人",
|
"status.replyAll": "回覆所有人",
|
||||||
|
|
|
@ -2279,28 +2279,6 @@ a.account__display-name {
|
||||||
.getting-started {
|
.getting-started {
|
||||||
color: $dark-text-color;
|
color: $dark-text-color;
|
||||||
|
|
||||||
p {
|
|
||||||
color: $dark-text-color;
|
|
||||||
font-size: 13px;
|
|
||||||
margin-bottom: 20px;
|
|
||||||
|
|
||||||
a {
|
|
||||||
color: $dark-text-color;
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
text-decoration: none;
|
|
||||||
color: $darker-text-color;
|
|
||||||
|
|
||||||
&:hover,
|
|
||||||
&:focus,
|
|
||||||
&:active {
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&__footer {
|
&__footer {
|
||||||
flex: 0 0 auto;
|
flex: 0 0 auto;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
|
@ -2313,6 +2291,28 @@ a.account__display-name {
|
||||||
ul li {
|
ul li {
|
||||||
display: inline;
|
display: inline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
color: $dark-text-color;
|
||||||
|
font-size: 13px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: $dark-text-color;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
color: $darker-text-color;
|
||||||
|
|
||||||
|
&:hover,
|
||||||
|
&:focus,
|
||||||
|
&:active {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__trends {
|
&__trends {
|
||||||
|
@ -5367,7 +5367,7 @@ noscript {
|
||||||
dt,
|
dt,
|
||||||
dd {
|
dd {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
padding: 14px 20px;
|
padding: 14px 5px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
max-height: 48px;
|
max-height: 48px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
|
@ -345,6 +345,23 @@
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
box-shadow: 0 0 15px rgba($base-shadow-color, 0.2);
|
box-shadow: 0 0 15px rgba($base-shadow-color, 0.2);
|
||||||
|
|
||||||
|
&.inactive {
|
||||||
|
opacity: 0.5;
|
||||||
|
|
||||||
|
.public-account-header__image,
|
||||||
|
.avatar {
|
||||||
|
filter: grayscale(100%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo-button {
|
||||||
|
background-color: $secondary-text-color;
|
||||||
|
|
||||||
|
svg path:last-child {
|
||||||
|
fill: $secondary-text-color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
&__image {
|
&__image {
|
||||||
border-radius: 4px 4px 0 0;
|
border-radius: 4px 4px 0 0;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
@ -582,6 +599,10 @@
|
||||||
border-bottom: 4px solid $highlight-text-color;
|
border-bottom: 4px solid $highlight-text-color;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.inactive::after {
|
||||||
|
border-bottom-color: $secondary-text-color;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
|
|
|
@ -23,7 +23,7 @@ class Formatter
|
||||||
|
|
||||||
unless status.local?
|
unless status.local?
|
||||||
html = reformat(raw_content)
|
html = reformat(raw_content)
|
||||||
html = encode_custom_emojis(html, status.emojis) if options[:custom_emojify]
|
html = encode_custom_emojis(html, status.emojis, options[:autoplay]) if options[:custom_emojify]
|
||||||
return html.html_safe # rubocop:disable Rails/OutputSafety
|
return html.html_safe # rubocop:disable Rails/OutputSafety
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -33,7 +33,7 @@ class Formatter
|
||||||
html = raw_content
|
html = raw_content
|
||||||
html = "RT @#{prepend_reblog} #{html}" if prepend_reblog
|
html = "RT @#{prepend_reblog} #{html}" if prepend_reblog
|
||||||
html = encode_and_link_urls(html, linkable_accounts)
|
html = encode_and_link_urls(html, linkable_accounts)
|
||||||
html = encode_custom_emojis(html, status.emojis) if options[:custom_emojify]
|
html = encode_custom_emojis(html, status.emojis, options[:autoplay]) if options[:custom_emojify]
|
||||||
html = simple_format(html, {}, sanitize: false)
|
html = simple_format(html, {}, sanitize: false)
|
||||||
html = html.delete("\n")
|
html = html.delete("\n")
|
||||||
|
|
||||||
|
@ -53,7 +53,7 @@ class Formatter
|
||||||
|
|
||||||
def simplified_format(account, **options)
|
def simplified_format(account, **options)
|
||||||
html = account.local? ? linkify(account.note) : reformat(account.note)
|
html = account.local? ? linkify(account.note) : reformat(account.note)
|
||||||
html = encode_custom_emojis(html, account.emojis) if options[:custom_emojify]
|
html = encode_custom_emojis(html, account.emojis, options[:autoplay]) if options[:custom_emojify]
|
||||||
html.html_safe # rubocop:disable Rails/OutputSafety
|
html.html_safe # rubocop:disable Rails/OutputSafety
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -61,22 +61,22 @@ class Formatter
|
||||||
Sanitize.fragment(html, config)
|
Sanitize.fragment(html, config)
|
||||||
end
|
end
|
||||||
|
|
||||||
def format_spoiler(status)
|
def format_spoiler(status, **options)
|
||||||
html = encode(status.spoiler_text)
|
html = encode(status.spoiler_text)
|
||||||
html = encode_custom_emojis(html, status.emojis)
|
html = encode_custom_emojis(html, status.emojis, options[:autoplay])
|
||||||
html.html_safe # rubocop:disable Rails/OutputSafety
|
html.html_safe # rubocop:disable Rails/OutputSafety
|
||||||
end
|
end
|
||||||
|
|
||||||
def format_display_name(account, **options)
|
def format_display_name(account, **options)
|
||||||
html = encode(account.display_name.presence || account.username)
|
html = encode(account.display_name.presence || account.username)
|
||||||
html = encode_custom_emojis(html, account.emojis) if options[:custom_emojify]
|
html = encode_custom_emojis(html, account.emojis, options[:autoplay]) if options[:custom_emojify]
|
||||||
html.html_safe # rubocop:disable Rails/OutputSafety
|
html.html_safe # rubocop:disable Rails/OutputSafety
|
||||||
end
|
end
|
||||||
|
|
||||||
def format_field(account, str, **options)
|
def format_field(account, str, **options)
|
||||||
return reformat(str).html_safe unless account.local? # rubocop:disable Rails/OutputSafety
|
return reformat(str).html_safe unless account.local? # rubocop:disable Rails/OutputSafety
|
||||||
html = encode_and_link_urls(str, me: true)
|
html = encode_and_link_urls(str, me: true)
|
||||||
html = encode_custom_emojis(html, account.emojis) if options[:custom_emojify]
|
html = encode_custom_emojis(html, account.emojis, options[:autoplay]) if options[:custom_emojify]
|
||||||
html.html_safe # rubocop:disable Rails/OutputSafety
|
html.html_safe # rubocop:disable Rails/OutputSafety
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -120,10 +120,14 @@ class Formatter
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def encode_custom_emojis(html, emojis)
|
def encode_custom_emojis(html, emojis, animate = false)
|
||||||
return html if emojis.empty?
|
return html if emojis.empty?
|
||||||
|
|
||||||
emoji_map = emojis.map { |e| [e.shortcode, full_asset_url(e.image.url(:static))] }.to_h
|
emoji_map = if animate
|
||||||
|
emojis.map { |e| [e.shortcode, full_asset_url(e.image.url)] }.to_h
|
||||||
|
else
|
||||||
|
emojis.map { |e| [e.shortcode, full_asset_url(e.image.url(:static))] }.to_h
|
||||||
|
end
|
||||||
|
|
||||||
i = -1
|
i = -1
|
||||||
tag_open_index = nil
|
tag_open_index = nil
|
||||||
|
|
|
@ -73,15 +73,15 @@ class Request
|
||||||
algorithm = 'rsa-sha256'
|
algorithm = 'rsa-sha256'
|
||||||
signature = Base64.strict_encode64(@keypair.sign(OpenSSL::Digest::SHA256.new, signed_string))
|
signature = Base64.strict_encode64(@keypair.sign(OpenSSL::Digest::SHA256.new, signed_string))
|
||||||
|
|
||||||
"keyId=\"#{key_id}\",algorithm=\"#{algorithm}\",headers=\"#{signed_headers}\",signature=\"#{signature}\""
|
"keyId=\"#{key_id}\",algorithm=\"#{algorithm}\",headers=\"#{signed_headers.keys.join(' ').downcase}\",signature=\"#{signature}\""
|
||||||
end
|
end
|
||||||
|
|
||||||
def signed_string
|
def signed_string
|
||||||
@headers.map { |key, value| "#{key.downcase}: #{value}" }.join("\n")
|
signed_headers.map { |key, value| "#{key.downcase}: #{value}" }.join("\n")
|
||||||
end
|
end
|
||||||
|
|
||||||
def signed_headers
|
def signed_headers
|
||||||
@headers.keys.join(' ').downcase
|
@headers.without('User-Agent', 'Accept-Encoding')
|
||||||
end
|
end
|
||||||
|
|
||||||
def key_id
|
def key_id
|
||||||
|
|
|
@ -18,7 +18,7 @@ module Remotable
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
return if !%w(http https).include?(parsed_url.scheme) || parsed_url.host.empty? || self[attribute_name] == url
|
return if !%w(http https).include?(parsed_url.scheme) || parsed_url.host.blank? || self[attribute_name] == url
|
||||||
|
|
||||||
begin
|
begin
|
||||||
Request.new(:get, url).perform do |response|
|
Request.new(:get, url).perform do |response|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.public-account-header
|
.public-account-header{:class => ("inactive" if account.moved?)}
|
||||||
.public-account-header__image
|
.public-account-header__image
|
||||||
= image_tag account.header.url, class: 'parallax'
|
= image_tag account.header.url, class: 'parallax'
|
||||||
.public-account-header__bar
|
.public-account-header__bar
|
||||||
|
|
|
@ -2,20 +2,24 @@
|
||||||
%td
|
%td
|
||||||
%samp= relay.inbox_url
|
%samp= relay.inbox_url
|
||||||
%td
|
%td
|
||||||
- if relay.enabled?
|
- if relay.accepted?
|
||||||
%span.positive-hint
|
%span.positive-hint
|
||||||
= fa_icon('check')
|
= fa_icon('check')
|
||||||
= ' '
|
= ' '
|
||||||
= t 'admin.relays.enabled'
|
= t 'admin.relays.enabled'
|
||||||
|
- elsif relay.pending?
|
||||||
|
= fa_icon('hourglass')
|
||||||
|
= ' '
|
||||||
|
= t 'admin.relays.pending'
|
||||||
- else
|
- else
|
||||||
%span.negative-hint
|
%span.negative-hint
|
||||||
= fa_icon('times')
|
= fa_icon('times')
|
||||||
= ' '
|
= ' '
|
||||||
= t 'admin.relays.disabled'
|
= t 'admin.relays.disabled'
|
||||||
%td
|
%td
|
||||||
- if relay.enabled?
|
- if relay.accepted?
|
||||||
= table_link_to 'power-off', t('admin.relays.disable'), disable_admin_relay_path(relay), method: :post, data: { confirm: t('admin.accounts.are_you_sure') }
|
= table_link_to 'power-off', t('admin.relays.disable'), disable_admin_relay_path(relay), method: :post, data: { confirm: t('admin.accounts.are_you_sure') }
|
||||||
- else
|
- elsif !relay.pending?
|
||||||
= table_link_to 'power-off', t('admin.relays.enable'), enable_admin_relay_path(relay), method: :post, data: { confirm: t('admin.accounts.are_you_sure') }
|
= table_link_to 'power-off', t('admin.relays.enable'), enable_admin_relay_path(relay), method: :post, data: { confirm: t('admin.accounts.are_you_sure') }
|
||||||
|
|
||||||
= table_link_to 'times', t('admin.relays.delete'), admin_relay_path(relay), method: :delete, data: { confirm: t('admin.accounts.are_you_sure') }
|
= table_link_to 'times', t('admin.relays.delete'), admin_relay_path(relay), method: :delete, data: { confirm: t('admin.accounts.are_you_sure') }
|
||||||
|
|
|
@ -1,10 +1,13 @@
|
||||||
.detailed-status.detailed-status--flex
|
.detailed-status.detailed-status--flex
|
||||||
= link_to TagManager.instance.url_for(status.account), class: 'detailed-status__display-name p-author h-card', target: stream_link_target, rel: 'noopener' do
|
= link_to TagManager.instance.url_for(status.account), class: 'detailed-status__display-name p-author h-card', target: stream_link_target, rel: 'noopener' do
|
||||||
.detailed-status__display-avatar
|
.detailed-status__display-avatar
|
||||||
= image_tag status.account.avatar.url(:original), width: 48, height: 48, alt: '', class: 'account__avatar u-photo'
|
- if current_account&.user&.setting_auto_play_gif || autoplay
|
||||||
|
= image_tag status.account.avatar_original_url, width: 48, height: 48, alt: '', class: 'account__avatar u-photo'
|
||||||
|
- else
|
||||||
|
= image_tag status.account.avatar_static_url, width: 48, height: 48, alt: '', class: 'account__avatar u-photo'
|
||||||
%span.display-name
|
%span.display-name
|
||||||
%bdi
|
%bdi
|
||||||
%strong.display-name__html.p-name.emojify= display_name(status.account, custom_emojify: true)
|
%strong.display-name__html.p-name.emojify= display_name(status.account, custom_emojify: true, autoplay: autoplay)
|
||||||
%span.display-name__account
|
%span.display-name__account
|
||||||
= acct(status.account)
|
= acct(status.account)
|
||||||
= fa_icon('lock') if status.account.locked?
|
= fa_icon('lock') if status.account.locked?
|
||||||
|
@ -14,16 +17,16 @@
|
||||||
.status__content.emojify<
|
.status__content.emojify<
|
||||||
- if status.spoiler_text?
|
- if status.spoiler_text?
|
||||||
%p{ style: 'margin-bottom: 0' }<
|
%p{ style: 'margin-bottom: 0' }<
|
||||||
%span.p-summary> #{Formatter.instance.format_spoiler(status)}
|
%span.p-summary> #{Formatter.instance.format_spoiler(status, autoplay: autoplay)}
|
||||||
%a.status__content__spoiler-link{ href: '#' }= t('statuses.show_more')
|
%a.status__content__spoiler-link{ href: '#' }= t('statuses.show_more')
|
||||||
.e-content{ lang: status.language, style: "display: #{status.spoiler_text? ? 'none' : 'block'}; direction: #{rtl_status?(status) ? 'rtl' : 'ltr'}" }= Formatter.instance.format(status, custom_emojify: true)
|
.e-content{ lang: status.language, style: "display: #{status.spoiler_text? ? 'none' : 'block'}; direction: #{rtl_status?(status) ? 'rtl' : 'ltr'}" }= Formatter.instance.format(status, custom_emojify: true, autoplay: autoplay)
|
||||||
|
|
||||||
- if !status.media_attachments.empty?
|
- if !status.media_attachments.empty?
|
||||||
- if status.media_attachments.first.video?
|
- if status.media_attachments.first.video?
|
||||||
- video = status.media_attachments.first
|
- video = status.media_attachments.first
|
||||||
= react_component :video, src: video.file.url(:original), preview: video.file.url(:small), sensitive: status.sensitive? && !current_account&.user&.setting_display_sensitive_media, width: 670, height: 380, detailed: true, inline: true, alt: video.description
|
= react_component :video, src: video.file.url(:original), preview: video.file.url(:small), sensitive: status.sensitive? && !current_account&.user&.setting_display_sensitive_media, width: 670, height: 380, detailed: true, inline: true, alt: video.description
|
||||||
- else
|
- else
|
||||||
= react_component :media_gallery, height: 380, sensitive: status.sensitive? && !current_account&.user&.setting_display_sensitive_media, standalone: true, 'autoPlayGif': current_account&.user&.setting_auto_play_gif, 'reduceMotion': current_account&.user&.setting_reduce_motion, media: status.media_attachments.map { |a| ActiveModelSerializers::SerializableResource.new(a, serializer: REST::MediaAttachmentSerializer).as_json }
|
= react_component :media_gallery, height: 380, sensitive: status.sensitive? && !current_account&.user&.setting_display_sensitive_media, standalone: true, 'autoPlayGif': current_account&.user&.setting_auto_play_gif || autoplay, 'reduceMotion': current_account&.user&.setting_reduce_motion, media: status.media_attachments.map { |a| ActiveModelSerializers::SerializableResource.new(a, serializer: REST::MediaAttachmentSerializer).as_json }
|
||||||
- elsif status.preview_cards.first
|
- elsif status.preview_cards.first
|
||||||
= react_component :card, 'maxDescription': 160, card: ActiveModelSerializers::SerializableResource.new(status.preview_cards.first, serializer: REST::PreviewCardSerializer).as_json
|
= react_component :card, 'maxDescription': 160, card: ActiveModelSerializers::SerializableResource.new(status.preview_cards.first, serializer: REST::PreviewCardSerializer).as_json
|
||||||
|
|
||||||
|
|
|
@ -7,26 +7,29 @@
|
||||||
= link_to TagManager.instance.url_for(status.account), class: 'status__display-name p-author h-card', target: stream_link_target, rel: 'noopener' do
|
= link_to TagManager.instance.url_for(status.account), class: 'status__display-name p-author h-card', target: stream_link_target, rel: 'noopener' do
|
||||||
.status__avatar
|
.status__avatar
|
||||||
%div
|
%div
|
||||||
= image_tag status.account.avatar(:original), width: 48, height: 48, alt: '', class: 'u-photo account__avatar'
|
- if current_account&.user&.setting_auto_play_gif || autoplay
|
||||||
|
= image_tag status.account.avatar_original_url, width: 48, height: 48, alt: '', class: 'u-photo account__avatar'
|
||||||
|
- else
|
||||||
|
= image_tag status.account.avatar_static_url, width: 48, height: 48, alt: '', class: 'u-photo account__avatar'
|
||||||
%span.display-name
|
%span.display-name
|
||||||
%bdi
|
%bdi
|
||||||
%strong.display-name__html.p-name.emojify= display_name(status.account, custom_emojify: true)
|
%strong.display-name__html.p-name.emojify= display_name(status.account, custom_emojify: true, autoplay: autoplay)
|
||||||
%span.display-name__account
|
%span.display-name__account
|
||||||
= acct(status.account)
|
= acct(status.account)
|
||||||
= fa_icon('lock') if status.account.locked?
|
= fa_icon('lock') if status.account.locked?
|
||||||
.status__content.emojify<
|
.status__content.emojify<
|
||||||
- if status.spoiler_text?
|
- if status.spoiler_text?
|
||||||
%p{ style: 'margin-bottom: 0' }<
|
%p{ style: 'margin-bottom: 0' }<
|
||||||
%span.p-summary> #{Formatter.instance.format_spoiler(status)}
|
%span.p-summary> #{Formatter.instance.format_spoiler(status, autoplay: autoplay)}
|
||||||
%a.status__content__spoiler-link{ href: '#' }= t('statuses.show_more')
|
%a.status__content__spoiler-link{ href: '#' }= t('statuses.show_more')
|
||||||
.e-content{ lang: status.language, style: "display: #{status.spoiler_text? ? 'none' : 'block'}; direction: #{rtl_status?(status) ? 'rtl' : 'ltr'}" }= Formatter.instance.format(status, custom_emojify: true)
|
.e-content{ lang: status.language, style: "display: #{status.spoiler_text? ? 'none' : 'block'}; direction: #{rtl_status?(status) ? 'rtl' : 'ltr'}" }= Formatter.instance.format(status, custom_emojify: true, autoplay: autoplay)
|
||||||
|
|
||||||
- unless status.media_attachments.empty?
|
- unless status.media_attachments.empty?
|
||||||
- if status.media_attachments.first.video?
|
- if status.media_attachments.first.video?
|
||||||
- video = status.media_attachments.first
|
- video = status.media_attachments.first
|
||||||
= react_component :video, src: video.file.url(:original), preview: video.file.url(:small), sensitive: status.sensitive? && !current_account&.user&.setting_display_sensitive_media, width: 610, height: 343, inline: true, alt: video.description
|
= react_component :video, src: video.file.url(:original), preview: video.file.url(:small), sensitive: status.sensitive? && !current_account&.user&.setting_display_sensitive_media, width: 610, height: 343, inline: true, alt: video.description
|
||||||
- else
|
- else
|
||||||
= react_component :media_gallery, height: 343, sensitive: status.sensitive? && !current_account&.user&.setting_display_sensitive_media, 'autoPlayGif': current_account&.user&.setting_auto_play_gif, media: status.media_attachments.map { |a| ActiveModelSerializers::SerializableResource.new(a, serializer: REST::MediaAttachmentSerializer).as_json }
|
= react_component :media_gallery, height: 343, sensitive: status.sensitive? && !current_account&.user&.setting_display_sensitive_media, 'autoPlayGif': current_account&.user&.setting_auto_play_gif || autoplay, media: status.media_attachments.map { |a| ActiveModelSerializers::SerializableResource.new(a, serializer: REST::MediaAttachmentSerializer).as_json }
|
||||||
|
|
||||||
.status__action-bar
|
.status__action-bar
|
||||||
.status__action-bar__counter
|
.status__action-bar__counter
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
is_successor ||= false
|
is_successor ||= false
|
||||||
direct_reply_id ||= false
|
direct_reply_id ||= false
|
||||||
parent_id ||= false
|
parent_id ||= false
|
||||||
|
autoplay ||= current_account&.user&.setting_auto_play_gif
|
||||||
is_direct_parent = direct_reply_id == status.id
|
is_direct_parent = direct_reply_id == status.id
|
||||||
is_direct_child = parent_id == status.in_reply_to_id
|
is_direct_child = parent_id == status.in_reply_to_id
|
||||||
centered ||= include_threads && !is_predecessor && !is_successor
|
centered ||= include_threads && !is_predecessor && !is_successor
|
||||||
|
@ -18,7 +19,7 @@
|
||||||
.entry{ class: entry_classes }
|
.entry{ class: entry_classes }
|
||||||
= link_to_more TagManager.instance.url_for(@next_ancestor)
|
= link_to_more TagManager.instance.url_for(@next_ancestor)
|
||||||
|
|
||||||
= render partial: 'stream_entries/status', collection: @ancestors, as: :status, locals: { is_predecessor: true, direct_reply_id: status.in_reply_to_id }
|
= render partial: 'stream_entries/status', collection: @ancestors, as: :status, locals: { is_predecessor: true, direct_reply_id: status.in_reply_to_id }, autoplay: autoplay
|
||||||
|
|
||||||
.entry{ class: entry_classes }
|
.entry{ class: entry_classes }
|
||||||
|
|
||||||
|
@ -38,14 +39,14 @@
|
||||||
%span
|
%span
|
||||||
= t('stream_entries.pinned')
|
= t('stream_entries.pinned')
|
||||||
|
|
||||||
= render (centered ? 'stream_entries/detailed_status' : 'stream_entries/simple_status'), status: status.proper
|
= render (centered ? 'stream_entries/detailed_status' : 'stream_entries/simple_status'), status: status.proper, autoplay: autoplay
|
||||||
|
|
||||||
- if include_threads
|
- if include_threads
|
||||||
- if @since_descendant_thread_id
|
- if @since_descendant_thread_id
|
||||||
.entry{ class: entry_classes }
|
.entry{ class: entry_classes }
|
||||||
= link_to_more short_account_status_url(status.account.username, status, max_descendant_thread_id: @since_descendant_thread_id + 1)
|
= link_to_more short_account_status_url(status.account.username, status, max_descendant_thread_id: @since_descendant_thread_id + 1)
|
||||||
- @descendant_threads.each do |thread|
|
- @descendant_threads.each do |thread|
|
||||||
= render partial: 'stream_entries/status', collection: thread[:statuses], as: :status, locals: { is_successor: true, parent_id: status.id }
|
= render partial: 'stream_entries/status', collection: thread[:statuses], as: :status, locals: { is_successor: true, parent_id: status.id }, autoplay: autoplay
|
||||||
|
|
||||||
- if thread[:next_status]
|
- if thread[:next_status]
|
||||||
.entry{ class: entry_classes }
|
.entry{ class: entry_classes }
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
- cache @stream_entry.activity do
|
- cache @stream_entry.activity do
|
||||||
.activity-stream.activity-stream--headless
|
.activity-stream.activity-stream--headless
|
||||||
= render "stream_entries/#{@type}", @type.to_sym => @stream_entry.activity, centered: true
|
= render "stream_entries/#{@type}", @type.to_sym => @stream_entry.activity, centered: true, autoplay: @autoplay
|
||||||
|
|
|
@ -42,6 +42,7 @@ module Mastodon
|
||||||
:bg,
|
:bg,
|
||||||
:ca,
|
:ca,
|
||||||
:co,
|
:co,
|
||||||
|
:cy,
|
||||||
:da,
|
:da,
|
||||||
:de,
|
:de,
|
||||||
:el,
|
:el,
|
||||||
|
|
|
@ -84,7 +84,7 @@
|
||||||
"check_name": "PermitAttributes",
|
"check_name": "PermitAttributes",
|
||||||
"message": "Potentially dangerous key allowed for mass assignment",
|
"message": "Potentially dangerous key allowed for mass assignment",
|
||||||
"file": "app/controllers/admin/reports_controller.rb",
|
"file": "app/controllers/admin/reports_controller.rb",
|
||||||
"line": 86,
|
"line": 80,
|
||||||
"link": "https://brakemanscanner.org/docs/warning_types/mass_assignment/",
|
"link": "https://brakemanscanner.org/docs/warning_types/mass_assignment/",
|
||||||
"code": "params.permit(:account_id, :resolved, :target_account_id)",
|
"code": "params.permit(:account_id, :resolved, :target_account_id)",
|
||||||
"render_path": null,
|
"render_path": null,
|
||||||
|
@ -97,25 +97,6 @@
|
||||||
"confidence": "High",
|
"confidence": "High",
|
||||||
"note": ""
|
"note": ""
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"warning_type": "Dynamic Render Path",
|
|
||||||
"warning_code": 15,
|
|
||||||
"fingerprint": "44d3f14e05d8fbb5b23e13ac02f15aa38b2a2f0f03b9ba76bab7f98e155a4a4e",
|
|
||||||
"check_name": "Render",
|
|
||||||
"message": "Render path contains parameter value",
|
|
||||||
"file": "app/views/stream_entries/embed.html.haml",
|
|
||||||
"line": 3,
|
|
||||||
"link": "https://brakemanscanner.org/docs/warning_types/dynamic_render_path/",
|
|
||||||
"code": "render(action => \"stream_entries/#{Account.find_local!(params[:account_username]).statuses.find(params[:id]).stream_entry.activity_type.downcase}\", { Account.find_local!(params[:account_username]).statuses.find(params[:id]).stream_entry.activity_type.downcase.to_sym => Account.find_local!(params[:account_username]).statuses.find(params[:id]).stream_entry.activity, :centered => true })",
|
|
||||||
"render_path": [{"type":"controller","class":"StatusesController","method":"embed","line":58,"file":"app/controllers/statuses_controller.rb"}],
|
|
||||||
"location": {
|
|
||||||
"type": "template",
|
|
||||||
"template": "stream_entries/embed"
|
|
||||||
},
|
|
||||||
"user_input": "params[:id]",
|
|
||||||
"confidence": "Weak",
|
|
||||||
"note": ""
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"warning_type": "Dynamic Render Path",
|
"warning_type": "Dynamic Render Path",
|
||||||
"warning_code": 15,
|
"warning_code": 15,
|
||||||
|
@ -174,6 +155,25 @@
|
||||||
"confidence": "Weak",
|
"confidence": "Weak",
|
||||||
"note": ""
|
"note": ""
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"warning_type": "Dynamic Render Path",
|
||||||
|
"warning_code": 15,
|
||||||
|
"fingerprint": "67afc0d5f7775fa5bd91d1912e1b5505aeedef61876347546fa20f92fd6915e6",
|
||||||
|
"check_name": "Render",
|
||||||
|
"message": "Render path contains parameter value",
|
||||||
|
"file": "app/views/stream_entries/embed.html.haml",
|
||||||
|
"line": 3,
|
||||||
|
"link": "https://brakemanscanner.org/docs/warning_types/dynamic_render_path/",
|
||||||
|
"code": "render(action => \"stream_entries/#{Account.find_local!(params[:account_username]).statuses.find(params[:id]).stream_entry.activity_type.downcase}\", { Account.find_local!(params[:account_username]).statuses.find(params[:id]).stream_entry.activity_type.downcase.to_sym => Account.find_local!(params[:account_username]).statuses.find(params[:id]).stream_entry.activity, :centered => true, :autoplay => ActiveModel::Type::Boolean.new.cast(params[:autoplay]) })",
|
||||||
|
"render_path": [{"type":"controller","class":"StatusesController","method":"embed","line":59,"file":"app/controllers/statuses_controller.rb"}],
|
||||||
|
"location": {
|
||||||
|
"type": "template",
|
||||||
|
"template": "stream_entries/embed"
|
||||||
|
},
|
||||||
|
"user_input": "params[:id]",
|
||||||
|
"confidence": "Weak",
|
||||||
|
"note": ""
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"warning_type": "Cross-Site Scripting",
|
"warning_type": "Cross-Site Scripting",
|
||||||
"warning_code": 4,
|
"warning_code": 4,
|
||||||
|
@ -388,6 +388,6 @@
|
||||||
"note": ""
|
"note": ""
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"updated": "2018-08-18 00:49:25 +0200",
|
"updated": "2018-08-30 21:55:10 +0200",
|
||||||
"brakeman_version": "4.2.1"
|
"brakeman_version": "4.2.1"
|
||||||
}
|
}
|
||||||
|
|
3
config/locales/activerecord.cy.yml
Normal file
3
config/locales/activerecord.cy.yml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
---
|
||||||
|
cy:
|
||||||
|
activerecord: {}
|
|
@ -30,16 +30,22 @@ ar:
|
||||||
other_instances: خوادم أخرى
|
other_instances: خوادم أخرى
|
||||||
privacy_policy: سياسة الخصوصية
|
privacy_policy: سياسة الخصوصية
|
||||||
source_code: الشفرة المصدرية
|
source_code: الشفرة المصدرية
|
||||||
status_count_after: منشورا
|
status_count_after:
|
||||||
|
one: منشور
|
||||||
|
other: منشورات
|
||||||
status_count_before: نشروا
|
status_count_before: نشروا
|
||||||
terms: شروط الخدمة
|
terms: شروط الخدمة
|
||||||
user_count_after: مستخدم
|
user_count_after:
|
||||||
|
one: مستخدِم
|
||||||
|
other: مستخدِمين
|
||||||
user_count_before: يستضيف
|
user_count_before: يستضيف
|
||||||
what_is_mastodon: ما هو ماستدون ؟
|
what_is_mastodon: ما هو ماستدون ؟
|
||||||
accounts:
|
accounts:
|
||||||
choices_html: 'توصيات %{name} :'
|
choices_html: 'توصيات %{name} :'
|
||||||
follow: إتبع
|
follow: إتبع
|
||||||
followers: متابِعون
|
followers:
|
||||||
|
one: متابِع
|
||||||
|
other: متابِعون
|
||||||
following: يتابعون
|
following: يتابعون
|
||||||
joined: انضم·ت في %{date}
|
joined: انضم·ت في %{date}
|
||||||
media: الوسائط
|
media: الوسائط
|
||||||
|
@ -50,7 +56,10 @@ ar:
|
||||||
people_who_follow: الأشخاص الذين يتبعون %{name}
|
people_who_follow: الأشخاص الذين يتبعون %{name}
|
||||||
pin_errors:
|
pin_errors:
|
||||||
following: يجب أن تكون مِن متابعي حساب الشخص الذي تريد إبرازه
|
following: يجب أن تكون مِن متابعي حساب الشخص الذي تريد إبرازه
|
||||||
posts: منشورات
|
posts:
|
||||||
|
one: تبويق
|
||||||
|
other: تبويقات
|
||||||
|
posts_tab_heading: تبويقات
|
||||||
posts_with_replies: التبويقات و الردود
|
posts_with_replies: التبويقات و الردود
|
||||||
reserved_username: إسم المستخدم محجوز
|
reserved_username: إسم المستخدم محجوز
|
||||||
roles:
|
roles:
|
||||||
|
@ -293,6 +302,7 @@ ar:
|
||||||
add_new: إضافة مُرحّل جديد
|
add_new: إضافة مُرحّل جديد
|
||||||
enable_hint: عندما تقوم بتنشيط هذه الميزة، سوف يشترك خادومك في جميع التبويقات القادمة مِن هذا المُرحِّل و سيشرع كذلك بإرسال كافة التبويقات العمومية إليه.
|
enable_hint: عندما تقوم بتنشيط هذه الميزة، سوف يشترك خادومك في جميع التبويقات القادمة مِن هذا المُرحِّل و سيشرع كذلك بإرسال كافة التبويقات العمومية إليه.
|
||||||
inbox_url: رابط المُرحّل
|
inbox_url: رابط المُرحّل
|
||||||
|
pending: في انتظار تسريح المُرحِّل
|
||||||
setup: إعداد اتصال بمُرحّل
|
setup: إعداد اتصال بمُرحّل
|
||||||
status: الحالة
|
status: الحالة
|
||||||
title: المُرحّلات
|
title: المُرحّلات
|
||||||
|
@ -347,6 +357,9 @@ ar:
|
||||||
contact_information:
|
contact_information:
|
||||||
email: البريد الإلكتروني المهني
|
email: البريد الإلكتروني المهني
|
||||||
username: الإتصال بالمستخدِم
|
username: الإتصال بالمستخدِم
|
||||||
|
custom_css:
|
||||||
|
desc_html: يقوم بتغيير المظهر بواسطة سي أس أس يُحمَّل على كافة الصفحات
|
||||||
|
title: سي أس أس مخصص
|
||||||
hero:
|
hero:
|
||||||
desc_html: معروض على الصفحة الأولى. لا يقل عن 600 × 100 بكسل. عند عدم التعيين ، تعود الصورة إلى النسخة المصغرة على سبيل المثال
|
desc_html: معروض على الصفحة الأولى. لا يقل عن 600 × 100 بكسل. عند عدم التعيين ، تعود الصورة إلى النسخة المصغرة على سبيل المثال
|
||||||
title: الصورة الرأسية
|
title: الصورة الرأسية
|
||||||
|
@ -414,6 +427,10 @@ ar:
|
||||||
last_delivery: آخر إيداع
|
last_delivery: آخر إيداع
|
||||||
title: WebSub
|
title: WebSub
|
||||||
topic: الموضوع
|
topic: الموضوع
|
||||||
|
suspensions:
|
||||||
|
hint_html: 'لتأكيد إجراء تعليق الحساب، يُرجى إدخال %{value} في الحقل التالي:'
|
||||||
|
proceed: مواصلة
|
||||||
|
title: تعليق الحساب %{acct}
|
||||||
title: الإدارة
|
title: الإدارة
|
||||||
admin_mailer:
|
admin_mailer:
|
||||||
new_report:
|
new_report:
|
||||||
|
@ -787,6 +804,7 @@ ar:
|
||||||
title: المغادرة بأرشيف الحساب
|
title: المغادرة بأرشيف الحساب
|
||||||
welcome:
|
welcome:
|
||||||
edit_profile_action: تهيئة الملف الشخصي
|
edit_profile_action: تهيئة الملف الشخصي
|
||||||
|
edit_profile_step: يُمكنك·كي تخصيص ملفك الشخصي عن طريق تحميل صورة رمزية ورأسية و بتعديل إسمك·كي العلني وأكثر. و إن أردت·تي معاينة المتابِعين و المتابعات الجُدد قبيل السماح لهم·ن بمتابَعتك فيمكنك·كي تأمين حسابك·كي.
|
||||||
explanation: ها هي بعض النصائح قبل بداية الإستخدام
|
explanation: ها هي بعض النصائح قبل بداية الإستخدام
|
||||||
final_action: اشرَع في النشر
|
final_action: اشرَع في النشر
|
||||||
final_step: |-
|
final_step: |-
|
||||||
|
@ -797,7 +815,9 @@ ar:
|
||||||
review_preferences_action: تعديل التفضيلات
|
review_preferences_action: تعديل التفضيلات
|
||||||
subject: أهلًا بك على ماستدون
|
subject: أهلًا بك على ماستدون
|
||||||
tip_bridge_html: إن كنت قادما مِن تويتر، باستطاعتك العثور على أصدقائك على ماستدون باستخدام <a href="%{bridge_url}">تطبيق الجسر</a> بشرط أن يكون أصدقاؤك قد سجلوا حساباتهم على الجسر مِن قبل، و إلّا فلن تنجح العملية !
|
tip_bridge_html: إن كنت قادما مِن تويتر، باستطاعتك العثور على أصدقائك على ماستدون باستخدام <a href="%{bridge_url}">تطبيق الجسر</a> بشرط أن يكون أصدقاؤك قد سجلوا حساباتهم على الجسر مِن قبل، و إلّا فلن تنجح العملية !
|
||||||
|
tip_federated_timeline: الخيط الزمني الفديرالي هو بمثابة شبه نظرة شاملة على شبكة ماستدون. غير أنه لا يشمل إلا على الأشخاص المتابَعين مِن طرف جيرانك و جاراتك، لذا فهذا الخيط لا يعكس كافة الشبكة برُمّتها.
|
||||||
tip_following: أنت تتبع تلقائيا مديري و مديرات الخادم. للعثور على أشخاص مميزين أو قد تهمك حساباتهم بإمكانك الإطلاع على الخيوط المحلية و كذا الفدرالية.
|
tip_following: أنت تتبع تلقائيا مديري و مديرات الخادم. للعثور على أشخاص مميزين أو قد تهمك حساباتهم بإمكانك الإطلاع على الخيوط المحلية و كذا الفدرالية.
|
||||||
|
tip_local_timeline: الخيط الزمني المحلي هو بمثابة نظرة سريعة على الأشخاص المتواجدين على %{instance} يمكن اعتبارهم كجيرانك وجاراتك الأقرب إليك!
|
||||||
tips: نصائح
|
tips: نصائح
|
||||||
title: أهلاً بك، %{name} !
|
title: أهلاً بك، %{name} !
|
||||||
users:
|
users:
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
cs:
|
cs:
|
||||||
about:
|
about:
|
||||||
about_hashtag_html: Toto jsou veřejné tooty označené hashtagem<strong>#%{hashtag}</strong>. Pokud máte účet kdekoliv na fediverse, můžete s nimi interagovat.
|
about_hashtag_html: Toto jsou veřejné tooty označené hashtagem <strong>#%{hashtag}</strong>. Pokud máte účet kdekoliv na fediverse, můžete s nimi interagovat.
|
||||||
about_mastodon_html: Mastodon je sociální síť založená na otevřených webových protokolech a svobodném, otevřeném softwaru. Je decentrovalizovaná jako e-mail.
|
about_mastodon_html: Mastodon je sociální síť založená na otevřených webových protokolech a svobodném, otevřeném softwaru. Je decentrovalizovaná jako e-mail.
|
||||||
about_this: O této instanci
|
about_this: O této instanci
|
||||||
administered_by: 'Server spravuje:'
|
administered_by: 'Server spravuje:'
|
||||||
|
@ -24,22 +24,28 @@ cs:
|
||||||
real_conversation_title: Vytvořen pro opravdovou konverzaci
|
real_conversation_title: Vytvořen pro opravdovou konverzaci
|
||||||
within_reach_body: Několik aplikací pro iOS, Android a jiné platformy vám díky jednoduchému API ekosystému dovolují držet krok s vašimi přáteli, ať už jste kdekoliv.
|
within_reach_body: Několik aplikací pro iOS, Android a jiné platformy vám díky jednoduchému API ekosystému dovolují držet krok s vašimi přáteli, ať už jste kdekoliv.
|
||||||
within_reach_title: Vždy v dosahu
|
within_reach_title: Vždy v dosahu
|
||||||
generic_description: "%{domain} je jedním serverem v síti"
|
generic_description: "%{domain} je jedním ze serverů v síti"
|
||||||
hosted_on: Mastodon hostovaný na %{domain}
|
hosted_on: Mastodon hostovaný na %{domain}
|
||||||
learn_more: Zjistit více
|
learn_more: Zjistit více
|
||||||
other_instances: Seznam instancí
|
other_instances: Seznam instancí
|
||||||
privacy_policy: Zásady soukromí
|
privacy_policy: Zásady soukromí
|
||||||
source_code: Zdrojový kód
|
source_code: Zdrojový kód
|
||||||
status_count_after: příspěvků
|
status_count_after:
|
||||||
|
one: příspěvek
|
||||||
|
other: příspěvků
|
||||||
status_count_before: Kteří napsali
|
status_count_before: Kteří napsali
|
||||||
terms: Podmínky používání
|
terms: Podmínky používání
|
||||||
user_count_after: uživatelů
|
user_count_after:
|
||||||
|
one: uživatele
|
||||||
|
other: uživatelů
|
||||||
user_count_before: Domov
|
user_count_before: Domov
|
||||||
what_is_mastodon: Co je Mastodon?
|
what_is_mastodon: Co je Mastodon?
|
||||||
accounts:
|
accounts:
|
||||||
choices_html: 'Volby uživatele %{name}:'
|
choices_html: 'Volby uživatele %{name}:'
|
||||||
follow: Sledovat
|
follow: Sledovat
|
||||||
followers: Sledovatelé
|
followers:
|
||||||
|
one: Sledovatel
|
||||||
|
other: Sledovatelé
|
||||||
following: Sleduje
|
following: Sleduje
|
||||||
joined: Připojil/a se %{date}
|
joined: Připojil/a se %{date}
|
||||||
media: Média
|
media: Média
|
||||||
|
@ -50,7 +56,10 @@ cs:
|
||||||
people_who_follow: Lidé, kteří sledují uživatele %{name}
|
people_who_follow: Lidé, kteří sledují uživatele %{name}
|
||||||
pin_errors:
|
pin_errors:
|
||||||
following: Musíte již sledovat osobu, kterou chcete podpořit
|
following: Musíte již sledovat osobu, kterou chcete podpořit
|
||||||
posts: Tooty
|
posts:
|
||||||
|
one: Toot
|
||||||
|
other: Tooty
|
||||||
|
posts_tab_heading: Tooty
|
||||||
posts_with_replies: Tooty a odpovědi
|
posts_with_replies: Tooty a odpovědi
|
||||||
reserved_username: Toto uživatelské jméno je rezervováno
|
reserved_username: Toto uživatelské jméno je rezervováno
|
||||||
roles:
|
roles:
|
||||||
|
@ -294,6 +303,7 @@ cs:
|
||||||
description_html: "<strong>Federovací most</strong> je přechodný server, který vyměňuje velká množství veřejných tootů mezi servery, které z něj odebírají a poblikují na něj. <strong>Může pomoci malým a středně velkým serverům objevovat obsah z fediverse</strong>, což by jinak vyžadovalo, aby místní uživatelé manuálně sledovali jiné lidi na vzdálených serverech."
|
description_html: "<strong>Federovací most</strong> je přechodný server, který vyměňuje velká množství veřejných tootů mezi servery, které z něj odebírají a poblikují na něj. <strong>Může pomoci malým a středně velkým serverům objevovat obsah z fediverse</strong>, což by jinak vyžadovalo, aby místní uživatelé manuálně sledovali jiné lidi na vzdálených serverech."
|
||||||
enable_hint: Je-li tohle povoleno, začne váš server odebírat všechny veřejné tooty z tohoto mostu a odesílat na něj své vlastní veřejné tooty.
|
enable_hint: Je-li tohle povoleno, začne váš server odebírat všechny veřejné tooty z tohoto mostu a odesílat na něj své vlastní veřejné tooty.
|
||||||
inbox_url: URL mostu
|
inbox_url: URL mostu
|
||||||
|
pending: Čekám na souhlas mostu
|
||||||
setup: Nastavit připojení k mostu
|
setup: Nastavit připojení k mostu
|
||||||
status: Stav
|
status: Stav
|
||||||
title: Mosty
|
title: Mosty
|
||||||
|
@ -346,11 +356,14 @@ cs:
|
||||||
contact_information:
|
contact_information:
|
||||||
email: Pracovní e-mail
|
email: Pracovní e-mail
|
||||||
username: Uživatelské jméno kontaktu
|
username: Uživatelské jméno kontaktu
|
||||||
|
custom_css:
|
||||||
|
desc_html: Pozměnit vzhled pomocí šablony CSS načtené na každé stránce
|
||||||
|
title: Vlastní CSS
|
||||||
hero:
|
hero:
|
||||||
desc_html: Zobrazuje se na hlavní stránce. Doporučuje se rozlišení alespoň 600x100px. Pokud toto není nastavené, bude zobrazena miniatura instance
|
desc_html: Zobrazuje se na hlavní stránce. Doporučuje se rozlišení alespoň 600x100px. Pokud toto není nastavené, bude zobrazena miniatura instance
|
||||||
title: Hlavní obrázek
|
title: Hlavní obrázek
|
||||||
peers_api_enabled:
|
peers_api_enabled:
|
||||||
desc_html: Domény, na které tato instanve narazila ve fediverse
|
desc_html: Domény, na které tato instance narazila ve fediverse
|
||||||
title: Zveřejnit seznam objevených instancí
|
title: Zveřejnit seznam objevených instancí
|
||||||
preview_sensitive_media:
|
preview_sensitive_media:
|
||||||
desc_html: Náhledy odkazů na jiných stránkách budou zobrazeny i pokud jsou media označena jako citlivá
|
desc_html: Náhledy odkazů na jiných stránkách budou zobrazeny i pokud jsou media označena jako citlivá
|
||||||
|
@ -415,8 +428,11 @@ cs:
|
||||||
title: WebSub
|
title: WebSub
|
||||||
topic: Téma
|
topic: Téma
|
||||||
suspensions:
|
suspensions:
|
||||||
|
bad_acct_msg: Hodnota pro potvrzení neodpovídá. Suspendujete správný účet?
|
||||||
|
hint_html: 'Pro potvrzení suspenzace účtu prosím zadejte do pole níže %{value}:'
|
||||||
proceed: Pokračovat
|
proceed: Pokračovat
|
||||||
title: Suspendovat účet %{acct}
|
title: Suspendovat účet %{acct}
|
||||||
|
warning_html: 'Suspenzace tohoto účtu <strong>nenávratně</strong> smaže z tohoto účtu data, včetně:'
|
||||||
title: Administrace
|
title: Administrace
|
||||||
admin_mailer:
|
admin_mailer:
|
||||||
new_report:
|
new_report:
|
||||||
|
|
150
config/locales/cy.yml
Normal file
150
config/locales/cy.yml
Normal file
|
@ -0,0 +1,150 @@
|
||||||
|
---
|
||||||
|
cy:
|
||||||
|
about:
|
||||||
|
about_hashtag_html: Dyma dwtiau cyhoeddus wedi eu tagio gyda <strong>#%{hashtag}</strong>. Gallwch ryngweithio gyda nhw os oes gennych gyfrif yn unrhywle yn y ffedysawd.
|
||||||
|
about_this: Ynghylch
|
||||||
|
administered_by: 'Gweinyddir gan:'
|
||||||
|
api: API
|
||||||
|
apps: Apiau symudol
|
||||||
|
contact: Cyswllt
|
||||||
|
documentation: Dogfennaeth
|
||||||
|
learn_more: Dysgu mwy
|
||||||
|
privacy_policy: Polisi preifatrwydd
|
||||||
|
source_code: Cod ffynhonnell
|
||||||
|
status_count_after:
|
||||||
|
one: statws
|
||||||
|
terms: Telerau Gwasanaeth
|
||||||
|
user_count_after:
|
||||||
|
one: defnyddiwr
|
||||||
|
other: defnyddiwyr
|
||||||
|
what_is_mastodon: Beth yw Mastodon?
|
||||||
|
accounts:
|
||||||
|
choices_html: 'Dewisiadau %{name}:'
|
||||||
|
follow: Dilynwch
|
||||||
|
followers:
|
||||||
|
one: Dilynwr
|
||||||
|
other: Dilynwyr
|
||||||
|
joined: Ymunodd %{date}
|
||||||
|
media: Cyfryngau
|
||||||
|
network_hidden: Nid yw'r wybodaeth hon ar gael
|
||||||
|
nothing_here: Does dim byd yma!
|
||||||
|
posts:
|
||||||
|
one: Tŵt
|
||||||
|
other: Tŵtiau
|
||||||
|
posts_tab_heading: Tŵtiau
|
||||||
|
roles:
|
||||||
|
admin: Gweinyddwr
|
||||||
|
bot: Bot
|
||||||
|
moderator: Safonwr
|
||||||
|
unfollow: Dad-ddilyn
|
||||||
|
admin:
|
||||||
|
account_moderation_notes:
|
||||||
|
create: Gadael nodyn
|
||||||
|
delete: Dileu
|
||||||
|
accounts:
|
||||||
|
are_you_sure: Ydych chi'n siŵr?
|
||||||
|
avatar: Afatar
|
||||||
|
by_domain: Parth
|
||||||
|
change_email:
|
||||||
|
current_email: E-bost Cyfredol
|
||||||
|
label: Newid E-bost
|
||||||
|
new_email: E-bost Newydd
|
||||||
|
submit: Newid E-bost
|
||||||
|
title: Newid E-bost i %{username}
|
||||||
|
confirm: Cadarnhau
|
||||||
|
confirmed: Cadarnhawyd
|
||||||
|
disable: Diffodd
|
||||||
|
domain: Parth
|
||||||
|
edit: Golygu
|
||||||
|
email: E-bost
|
||||||
|
email_status: Statws E-bost
|
||||||
|
enable: Galluogi
|
||||||
|
feed_url: Ffrwd URL
|
||||||
|
inbox_url: URL Mewnflwch
|
||||||
|
ip: IP
|
||||||
|
location:
|
||||||
|
all: Popeth
|
||||||
|
local: Leol
|
||||||
|
remote: Pell
|
||||||
|
title: Lleoliad
|
||||||
|
media_attachments: Atodiadau
|
||||||
|
moderation:
|
||||||
|
all: Popeth
|
||||||
|
title: Cymedroli
|
||||||
|
outbox_url: URL blwch allan
|
||||||
|
profile_url: URL proffil
|
||||||
|
public: Cyhoeddus
|
||||||
|
reset: Ailosod
|
||||||
|
reset_password: Newid cyfrinair
|
||||||
|
roles:
|
||||||
|
user: Defnyddiwr
|
||||||
|
search: Chwilio
|
||||||
|
show:
|
||||||
|
report: adrodd
|
||||||
|
subscribe: Tanysgrifio
|
||||||
|
title: Cyfrifon
|
||||||
|
username: Enw defnyddiwr
|
||||||
|
web: Gwe
|
||||||
|
custom_emojis:
|
||||||
|
by_domain: Parth
|
||||||
|
copy: Copïo
|
||||||
|
delete: Dileu
|
||||||
|
enable: Galluogi
|
||||||
|
listed: Rhestredig
|
||||||
|
upload: Lanlwytho
|
||||||
|
dashboard:
|
||||||
|
config: Cyfluniad
|
||||||
|
feature_registrations: Cofrestriadau
|
||||||
|
features: Nodweddion
|
||||||
|
software: Meddalwedd
|
||||||
|
title: Dangosfwrdd
|
||||||
|
trends: Tueddiadau
|
||||||
|
instances:
|
||||||
|
domain_name: Parth
|
||||||
|
authorize_follow:
|
||||||
|
follow: Dilynwch
|
||||||
|
title: Dilynwch %{acct}
|
||||||
|
invites:
|
||||||
|
expires_in:
|
||||||
|
'86400': 1 dydd
|
||||||
|
max_uses_prompt: Dim terfyn
|
||||||
|
table:
|
||||||
|
uses: Defnyddiau
|
||||||
|
migrations:
|
||||||
|
proceed: Cadw
|
||||||
|
moderation:
|
||||||
|
title: Cymedroli
|
||||||
|
notification_mailer:
|
||||||
|
favourite:
|
||||||
|
title: Ffefryn newydd
|
||||||
|
mention:
|
||||||
|
action: Ateb
|
||||||
|
pagination:
|
||||||
|
next: Nesaf
|
||||||
|
prev: Blaenorol
|
||||||
|
preferences:
|
||||||
|
languages: Ieithoedd
|
||||||
|
other: Arall
|
||||||
|
web: Gwe
|
||||||
|
remote_unfollow:
|
||||||
|
error: Gwall
|
||||||
|
title: Teitl
|
||||||
|
sessions:
|
||||||
|
browser: Porwr
|
||||||
|
browsers:
|
||||||
|
alipay: ''
|
||||||
|
blackberry: ''
|
||||||
|
current_session: Sesiwn cyfredol
|
||||||
|
description: "%{browser} ar %{platform}"
|
||||||
|
title: Sesiynau
|
||||||
|
themes:
|
||||||
|
contrast: Cyferbyniad uchel
|
||||||
|
default: ''
|
||||||
|
mastodon-light: Mastodon (golau)
|
||||||
|
time:
|
||||||
|
formats:
|
||||||
|
default: "%b %d, %Y, %H:%M"
|
||||||
|
month: "%b %Y"
|
||||||
|
user_mailer:
|
||||||
|
welcome:
|
||||||
|
subject: Croeso i Mastodon
|
File diff suppressed because one or more lines are too long
3
config/locales/devise.cy.yml
Normal file
3
config/locales/devise.cy.yml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
---
|
||||||
|
cy:
|
||||||
|
devise: {}
|
3
config/locales/doorkeeper.cy.yml
Normal file
3
config/locales/doorkeeper.cy.yml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
---
|
||||||
|
cy:
|
||||||
|
doorkeeper: {}
|
|
@ -30,16 +30,22 @@ el:
|
||||||
other_instances: Λίστα κόμβων
|
other_instances: Λίστα κόμβων
|
||||||
privacy_policy: Πολιτική απορρήτου
|
privacy_policy: Πολιτική απορρήτου
|
||||||
source_code: Πηγαίος κώδικας
|
source_code: Πηγαίος κώδικας
|
||||||
status_count_after: καταστάσεις
|
status_count_after:
|
||||||
|
one: δημοσίευση
|
||||||
|
other: δημοσιεύσεις
|
||||||
status_count_before: Που έγραψαν
|
status_count_before: Που έγραψαν
|
||||||
terms: Όροι χρήσης
|
terms: Όροι χρήσης
|
||||||
user_count_after: χρήστες
|
user_count_after:
|
||||||
|
one: χρήστης
|
||||||
|
other: χρήστες
|
||||||
user_count_before: Σπίτι για
|
user_count_before: Σπίτι για
|
||||||
what_is_mastodon: Τι είναι το Mastodon;
|
what_is_mastodon: Τι είναι το Mastodon;
|
||||||
accounts:
|
accounts:
|
||||||
choices_html: 'Επιλογές του/της %{name}:'
|
choices_html: 'Επιλογές του/της %{name}:'
|
||||||
follow: Ακολούθησε
|
follow: Ακολούθησε
|
||||||
followers: Ακόλουθοι
|
followers:
|
||||||
|
one: Ακόλουθος
|
||||||
|
other: Ακόλουθοι
|
||||||
following: Ακολουθεί
|
following: Ακολουθεί
|
||||||
joined: Εγγράφηκε στις %{date}
|
joined: Εγγράφηκε στις %{date}
|
||||||
media: Πολυμέσα
|
media: Πολυμέσα
|
||||||
|
@ -50,7 +56,10 @@ el:
|
||||||
people_who_follow: Χρήστες που ακολουθούν τον/την %{name}
|
people_who_follow: Χρήστες που ακολουθούν τον/την %{name}
|
||||||
pin_errors:
|
pin_errors:
|
||||||
following: Πρέπει ήδη να ακολουθείς το άτομο που θέλεις να επιδοκιμάσεις
|
following: Πρέπει ήδη να ακολουθείς το άτομο που θέλεις να επιδοκιμάσεις
|
||||||
posts: Τουτ
|
posts:
|
||||||
|
one: Τουτ
|
||||||
|
other: Τουτ
|
||||||
|
posts_tab_heading: Τουτ
|
||||||
posts_with_replies: Τουτ και απαντήσεις
|
posts_with_replies: Τουτ και απαντήσεις
|
||||||
reserved_username: Το όνομα χρήστη είναι κατειλημμένο
|
reserved_username: Το όνομα χρήστη είναι κατειλημμένο
|
||||||
roles:
|
roles:
|
||||||
|
@ -294,6 +303,7 @@ el:
|
||||||
description_html: Ο <strong>ομοσπονδιακός ανταποκριτής</strong> είναι ένας ενδιάμεσος εξυπηρετητής (server) που ανταλλάσσει μεγάλους όγκους δημόσιων τουτ μεταξύ εξυπηρετητών που εγγράφονται και δημοσιεύουν σε αυτόν. <strong>Βοηθάει μικρούς και μεσαίους εξυπηρετητές να ανακαλύψουν περιεχόμενο στο fediverse</strong>, που υπό άλλες συνθήκες θα χρειαζόταν κάποιους τοπικούς χρήστες που να ακολουθούν χρήστες σε απομακρυσμένους εξυπηρετητές.
|
description_html: Ο <strong>ομοσπονδιακός ανταποκριτής</strong> είναι ένας ενδιάμεσος εξυπηρετητής (server) που ανταλλάσσει μεγάλους όγκους δημόσιων τουτ μεταξύ εξυπηρετητών που εγγράφονται και δημοσιεύουν σε αυτόν. <strong>Βοηθάει μικρούς και μεσαίους εξυπηρετητές να ανακαλύψουν περιεχόμενο στο fediverse</strong>, που υπό άλλες συνθήκες θα χρειαζόταν κάποιους τοπικούς χρήστες που να ακολουθούν χρήστες σε απομακρυσμένους εξυπηρετητές.
|
||||||
enable_hint: Μόλις ενεργοποιηθεί, ο εξυπηρετητής (server) σου θα εγγραφεί σε όλα τα δημόσια τουτ αυτού του ανταποκριτή (relay) και θα αρχίσει να προωθεί τα δικά του δημόσια τουτ σε αυτόν.
|
enable_hint: Μόλις ενεργοποιηθεί, ο εξυπηρετητής (server) σου θα εγγραφεί σε όλα τα δημόσια τουτ αυτού του ανταποκριτή (relay) και θα αρχίσει να προωθεί τα δικά του δημόσια τουτ σε αυτόν.
|
||||||
inbox_url: URL ανταποκριτή
|
inbox_url: URL ανταποκριτή
|
||||||
|
pending: Περιμένοντας την έγκριση του ανταποκριτή
|
||||||
setup: Όρισε μια σύνδεση ανταπόκρισης
|
setup: Όρισε μια σύνδεση ανταπόκρισης
|
||||||
status: Κατάσταση
|
status: Κατάσταση
|
||||||
title: Ανταποκριτές
|
title: Ανταποκριτές
|
||||||
|
@ -346,6 +356,9 @@ el:
|
||||||
contact_information:
|
contact_information:
|
||||||
email: Επαγγελματικό email
|
email: Επαγγελματικό email
|
||||||
username: Όνομα χρήστη επικοινωνίας
|
username: Όνομα χρήστη επικοινωνίας
|
||||||
|
custom_css:
|
||||||
|
desc_html: Τροποποίηση της εμφάνισης μέσω CSS που φορτώνεται σε κάθε σελίδα
|
||||||
|
title: Προσαρμοσμένο CSS
|
||||||
hero:
|
hero:
|
||||||
desc_html: Εμφανίζεται στην μπροστινή σελίδα. Συνίσταται τουλάχιστον 600x100px. Όταν λείπει, χρησιμοποιείται η μικρογραφία του κόμβου
|
desc_html: Εμφανίζεται στην μπροστινή σελίδα. Συνίσταται τουλάχιστον 600x100px. Όταν λείπει, χρησιμοποιείται η μικρογραφία του κόμβου
|
||||||
title: Εικόνα ήρωα
|
title: Εικόνα ήρωα
|
||||||
|
@ -414,6 +427,12 @@ el:
|
||||||
last_delivery: Τελευταία παράδοση
|
last_delivery: Τελευταία παράδοση
|
||||||
title: WebSub
|
title: WebSub
|
||||||
topic: Θέμα
|
topic: Θέμα
|
||||||
|
suspensions:
|
||||||
|
bad_acct_msg: Η τιμή επιβεβαίωσης δεν ταιριάζει. Σίγουρα αναστέλλεις το σωστό λογαριασμό;
|
||||||
|
hint_html: 'Για να επιβεβαιώσεις την αναστολή του λογαριασμού, γράψε %{value} στο ακόλουθο πεδίο:'
|
||||||
|
proceed: Συνέχεια
|
||||||
|
title: Αναστολή %{acct}
|
||||||
|
warning_html: 'Αναστέλλοντας αυτό το λογαριασμό θα διαγραφούν <strong>αμετάκλητα</strong> δεδομένα του, μεταξύ των οποίων:'
|
||||||
title: Διαχείριση
|
title: Διαχείριση
|
||||||
admin_mailer:
|
admin_mailer:
|
||||||
new_report:
|
new_report:
|
||||||
|
|
|
@ -303,6 +303,8 @@ en:
|
||||||
description_html: A <strong>federation relay</strong> is an intermediary server that exchanges large volumes of public toots between servers that subscribe and publish to it. <strong>It can help small and medium servers discover content from the fediverse</strong>, which would otherwise require local users manually following other people on remote servers.
|
description_html: A <strong>federation relay</strong> is an intermediary server that exchanges large volumes of public toots between servers that subscribe and publish to it. <strong>It can help small and medium servers discover content from the fediverse</strong>, which would otherwise require local users manually following other people on remote servers.
|
||||||
enable_hint: Once enabled, your server will subscribe to all public toots from this relay, and will begin sending this server's public toots to it.
|
enable_hint: Once enabled, your server will subscribe to all public toots from this relay, and will begin sending this server's public toots to it.
|
||||||
inbox_url: Relay URL
|
inbox_url: Relay URL
|
||||||
|
pending: Waiting for relay's approval
|
||||||
|
save_and_enable: Save and enable
|
||||||
setup: Setup a relay connection
|
setup: Setup a relay connection
|
||||||
status: Status
|
status: Status
|
||||||
title: Relays
|
title: Relays
|
||||||
|
|
|
@ -6,6 +6,7 @@ eu:
|
||||||
about_this: Honi buruz
|
about_this: Honi buruz
|
||||||
administered_by: 'Administratzailea(k):'
|
administered_by: 'Administratzailea(k):'
|
||||||
api: APIa
|
api: APIa
|
||||||
|
apps: Aplikazio mugikorrak
|
||||||
closed_registrations: Harpidetza itxita dago orain instantzia honetan. Hala ere, beste instantzia bat aurkitu dezakezu kontua egiteko eta hona ere sarbidea izan.
|
closed_registrations: Harpidetza itxita dago orain instantzia honetan. Hala ere, beste instantzia bat aurkitu dezakezu kontua egiteko eta hona ere sarbidea izan.
|
||||||
contact: Kontaktua
|
contact: Kontaktua
|
||||||
contact_missing: Ezarri gabe
|
contact_missing: Ezarri gabe
|
||||||
|
@ -29,16 +30,22 @@ eu:
|
||||||
other_instances: Instantzien zerrenda
|
other_instances: Instantzien zerrenda
|
||||||
privacy_policy: Pribatutasun politika
|
privacy_policy: Pribatutasun politika
|
||||||
source_code: Iturburu kodea
|
source_code: Iturburu kodea
|
||||||
status_count_after: mezu idatzi dituzte
|
status_count_after:
|
||||||
|
one: mezu
|
||||||
|
other: mezu
|
||||||
status_count_before: Hauek
|
status_count_before: Hauek
|
||||||
terms: Erabilera baldintzak
|
terms: Erabilera baldintzak
|
||||||
user_count_after: erabiltzaile daude
|
user_count_after:
|
||||||
|
one: erabiltzaile
|
||||||
|
other: erabiltzaile
|
||||||
user_count_before: Hemen
|
user_count_before: Hemen
|
||||||
what_is_mastodon: Zer da Mastodon?
|
what_is_mastodon: Zer da Mastodon?
|
||||||
accounts:
|
accounts:
|
||||||
choices_html: "%{name}(r)en aukerak:"
|
choices_html: "%{name}(r)en aukerak:"
|
||||||
follow: Jarraitu
|
follow: Jarraitu
|
||||||
followers: Jarraitzaile
|
followers:
|
||||||
|
one: Jarraitzaile
|
||||||
|
other: jarraitzaile
|
||||||
following: Jarraitzen
|
following: Jarraitzen
|
||||||
joined: "%{date}(e)an elkartua"
|
joined: "%{date}(e)an elkartua"
|
||||||
media: Multimedia
|
media: Multimedia
|
||||||
|
@ -49,7 +56,10 @@ eu:
|
||||||
people_who_follow: "%{name} jarraitzen dutenak"
|
people_who_follow: "%{name} jarraitzen dutenak"
|
||||||
pin_errors:
|
pin_errors:
|
||||||
following: Onetsi nahi duzun pertsona aurretik jarraitu behar duzu
|
following: Onetsi nahi duzun pertsona aurretik jarraitu behar duzu
|
||||||
posts: Toot-ak
|
posts:
|
||||||
|
one: Toot
|
||||||
|
other: Toot
|
||||||
|
posts_tab_heading: Tootak
|
||||||
posts_with_replies: Toot eta erantzunak
|
posts_with_replies: Toot eta erantzunak
|
||||||
reserved_username: Erabiltzaile-izena erreserbatuta dago
|
reserved_username: Erabiltzaile-izena erreserbatuta dago
|
||||||
roles:
|
roles:
|
||||||
|
@ -184,6 +194,7 @@ eu:
|
||||||
unsuspend_account: "%{name}(e)k %{target} kontuaren kanporaketa atzera bota du"
|
unsuspend_account: "%{name}(e)k %{target} kontuaren kanporaketa atzera bota du"
|
||||||
update_custom_emoji: "%{name}(e)k %{target} emoji-a eguneratu du"
|
update_custom_emoji: "%{name}(e)k %{target} emoji-a eguneratu du"
|
||||||
update_status: "%{name} (e)k %{target}(r)en mezua aldatu du"
|
update_status: "%{name} (e)k %{target}(r)en mezua aldatu du"
|
||||||
|
deleted_status: "(ezabatutako mezua)"
|
||||||
title: Auditoria-egunkaria
|
title: Auditoria-egunkaria
|
||||||
custom_emojis:
|
custom_emojis:
|
||||||
by_domain: Domeinua
|
by_domain: Domeinua
|
||||||
|
@ -280,6 +291,7 @@ eu:
|
||||||
search: Bilatu
|
search: Bilatu
|
||||||
title: Instantzia ezagunak
|
title: Instantzia ezagunak
|
||||||
invites:
|
invites:
|
||||||
|
deactivate_all: Desgaitu guztiak
|
||||||
filter:
|
filter:
|
||||||
all: Denak
|
all: Denak
|
||||||
available: Eskuragarri
|
available: Eskuragarri
|
||||||
|
@ -288,6 +300,7 @@ eu:
|
||||||
title: Gonbidapenak
|
title: Gonbidapenak
|
||||||
relays:
|
relays:
|
||||||
add_new: Gehitu hari berria
|
add_new: Gehitu hari berria
|
||||||
|
status: Mezuak
|
||||||
report_notes:
|
report_notes:
|
||||||
created_msg: Salaketa oharra ongi sortu da!
|
created_msg: Salaketa oharra ongi sortu da!
|
||||||
destroyed_msg: Salaketa oharra ongi ezabatu da!
|
destroyed_msg: Salaketa oharra ongi ezabatu da!
|
||||||
|
@ -337,6 +350,9 @@ eu:
|
||||||
contact_information:
|
contact_information:
|
||||||
email: Laneko e-mail helbidea
|
email: Laneko e-mail helbidea
|
||||||
username: Kontaktuaren erabiltzaile-izena
|
username: Kontaktuaren erabiltzaile-izena
|
||||||
|
custom_css:
|
||||||
|
desc_html: Aldatu itxura orri bakoitzean kargatutako CSS bidez
|
||||||
|
title: CSS pertsonala
|
||||||
hero:
|
hero:
|
||||||
desc_html: Azaleko orrian bistaratua. Gutxienez 600x100px aholkatzen da. Ezartzen ez bada, instantziaren irudia hartuko du
|
desc_html: Azaleko orrian bistaratua. Gutxienez 600x100px aholkatzen da. Ezartzen ez bada, instantziaren irudia hartuko du
|
||||||
title: Azaleko irudia
|
title: Azaleko irudia
|
||||||
|
@ -372,6 +388,7 @@ eu:
|
||||||
desc_html: Zure jokabide-koderako toki on bat, arauak, gidalerroak eta zure instantzia desberdin egiten duten bestelakoak. HTML etiketak erabili ditzakezu
|
desc_html: Zure jokabide-koderako toki on bat, arauak, gidalerroak eta zure instantzia desberdin egiten duten bestelakoak. HTML etiketak erabili ditzakezu
|
||||||
title: Informazio hedatu pertsonalizatua
|
title: Informazio hedatu pertsonalizatua
|
||||||
site_short_description:
|
site_short_description:
|
||||||
|
desc_html: Albo-barra eta meta etiketetan bistaratua. Deskribatu zerk egiten duen Mastodon zerbitzari hau berezia paragrafo batean. Hutsik lagatzekotan lehenetsitako deskripzioa agertuko da.
|
||||||
title: Instantziaren deskripzio laburra
|
title: Instantziaren deskripzio laburra
|
||||||
site_terms:
|
site_terms:
|
||||||
desc_html: Zure pribatutasun politika, erabilera baldintzak eta bestelako testu legalak idatzi ditzakezu. HTML etiketak erabili ditzakezu
|
desc_html: Zure pribatutasun politika, erabilera baldintzak eta bestelako testu legalak idatzi ditzakezu. HTML etiketak erabili ditzakezu
|
||||||
|
@ -394,6 +411,7 @@ eu:
|
||||||
media:
|
media:
|
||||||
title: Multimedia
|
title: Multimedia
|
||||||
no_media: Multimediarik ez
|
no_media: Multimediarik ez
|
||||||
|
no_status_selected: Ez da mezurik aldatu ez delako mezurik aukeratu
|
||||||
title: Kontuaren mezuak
|
title: Kontuaren mezuak
|
||||||
with_media: Multimediarekin
|
with_media: Multimediarekin
|
||||||
subscriptions:
|
subscriptions:
|
||||||
|
@ -403,6 +421,11 @@ eu:
|
||||||
last_delivery: Azken bidalketa
|
last_delivery: Azken bidalketa
|
||||||
title: WebSub
|
title: WebSub
|
||||||
topic: Mintzagaia
|
topic: Mintzagaia
|
||||||
|
suspensions:
|
||||||
|
bad_acct_msg: Berrespen balioa ez dator bat. Dagokion kontua kanporatzen ari zara?
|
||||||
|
hint_html: 'Kontuaren kanporatzea berresteko, sartu %{value} beheko eremuan:'
|
||||||
|
title: Kanporatu %{acct}
|
||||||
|
warning_html: 'Kontu hau kanporatzeak <strong>behin betiko</strong> ezabatuko ditu kontu honetako datuak, hauek barne:'
|
||||||
title: Administrazioa
|
title: Administrazioa
|
||||||
admin_mailer:
|
admin_mailer:
|
||||||
new_report:
|
new_report:
|
||||||
|
|
|
@ -6,6 +6,7 @@ fa:
|
||||||
about_this: درباره
|
about_this: درباره
|
||||||
administered_by: 'با مدیریت:'
|
administered_by: 'با مدیریت:'
|
||||||
api: رابط برنامهنویسی کاربردی
|
api: رابط برنامهنویسی کاربردی
|
||||||
|
apps: اپهای موبایل
|
||||||
closed_registrations: ثبتنام روی این سرور هماینک فعال نیست. اما شما میتوانید سرور دیگری بیابید و با حسابی که آنجا میسازید دقیقاً به همین شبکه دسترسی داشته باشید.
|
closed_registrations: ثبتنام روی این سرور هماینک فعال نیست. اما شما میتوانید سرور دیگری بیابید و با حسابی که آنجا میسازید دقیقاً به همین شبکه دسترسی داشته باشید.
|
||||||
contact: تماس
|
contact: تماس
|
||||||
contact_missing: تعیین نشده
|
contact_missing: تعیین نشده
|
||||||
|
@ -29,16 +30,22 @@ fa:
|
||||||
other_instances: فهرست سرورها
|
other_instances: فهرست سرورها
|
||||||
privacy_policy: سیاست رازداری
|
privacy_policy: سیاست رازداری
|
||||||
source_code: کدهای منبع
|
source_code: کدهای منبع
|
||||||
status_count_after: چیز نوشتهاند
|
status_count_after:
|
||||||
|
one: نوشته
|
||||||
|
other: نوشته
|
||||||
status_count_before: که جمعاً
|
status_count_before: که جمعاً
|
||||||
terms: شرایط کاربری
|
terms: شرایط کاربری
|
||||||
user_count_after: کاربر
|
user_count_after:
|
||||||
|
one: کاربر
|
||||||
|
other: کاربر
|
||||||
user_count_before: دارای
|
user_count_before: دارای
|
||||||
what_is_mastodon: ماستدون چیست؟
|
what_is_mastodon: ماستدون چیست؟
|
||||||
accounts:
|
accounts:
|
||||||
choices_html: 'انتخابهای %{name}:'
|
choices_html: 'انتخابهای %{name}:'
|
||||||
follow: پی بگیرید
|
follow: پی بگیرید
|
||||||
followers: پیگیران
|
followers:
|
||||||
|
one: پیگیر
|
||||||
|
other: پیگیر
|
||||||
following: پی میگیرد
|
following: پی میگیرد
|
||||||
joined: کاربر از %{date}
|
joined: کاربر از %{date}
|
||||||
media: عکس و ویدیو
|
media: عکس و ویدیو
|
||||||
|
@ -49,7 +56,10 @@ fa:
|
||||||
people_who_follow: کسانی که %{name} را پی میگیرند
|
people_who_follow: کسانی که %{name} را پی میگیرند
|
||||||
pin_errors:
|
pin_errors:
|
||||||
following: شما باید پیگیر کاربری باشید که میخواهید ثابت کنید
|
following: شما باید پیگیر کاربری باشید که میخواهید ثابت کنید
|
||||||
posts: نوشتهها
|
posts:
|
||||||
|
one: بوق
|
||||||
|
other: بوق
|
||||||
|
posts_tab_heading: بوقها
|
||||||
posts_with_replies: نوشتهها و پاسخها
|
posts_with_replies: نوشتهها و پاسخها
|
||||||
reserved_username: این نام کاربری در دسترس نیست
|
reserved_username: این نام کاربری در دسترس نیست
|
||||||
roles:
|
roles:
|
||||||
|
@ -281,6 +291,7 @@ fa:
|
||||||
search: جستجو
|
search: جستجو
|
||||||
title: سرورهای شناختهشده
|
title: سرورهای شناختهشده
|
||||||
invites:
|
invites:
|
||||||
|
deactivate_all: غیرفعالکردن همه
|
||||||
filter:
|
filter:
|
||||||
all: همه
|
all: همه
|
||||||
available: در دسترس
|
available: در دسترس
|
||||||
|
@ -292,6 +303,7 @@ fa:
|
||||||
description_html: یک <strong>رلهٔ میانسروری</strong> (federation relay) یک سرور میانجی است که حجم زیادی از بوقهای عمومی را بین سرورهای گوناگونی که عضوش میشوند جابهجا میکند. <strong>رلهها به سرورهای کوچک و متوسط کمک میکنند تا مطالب عمومی بیشتری را بیابند.</strong> اگر رله نباشد، این مطالب عمومی تنها وقتی پیدا میشوند که کاربران محلی خودشان پیگیر کاربران روی سرورهای دیگر شوند.
|
description_html: یک <strong>رلهٔ میانسروری</strong> (federation relay) یک سرور میانجی است که حجم زیادی از بوقهای عمومی را بین سرورهای گوناگونی که عضوش میشوند جابهجا میکند. <strong>رلهها به سرورهای کوچک و متوسط کمک میکنند تا مطالب عمومی بیشتری را بیابند.</strong> اگر رله نباشد، این مطالب عمومی تنها وقتی پیدا میشوند که کاربران محلی خودشان پیگیر کاربران روی سرورهای دیگر شوند.
|
||||||
enable_hint: اگر فعال باشد، سرور شما عضو همهٔ بوقهای عمومیای را که از این رله میآید میگیرد، و بوقهای عمومی این سرور را به آن میفرستند.
|
enable_hint: اگر فعال باشد، سرور شما عضو همهٔ بوقهای عمومیای را که از این رله میآید میگیرد، و بوقهای عمومی این سرور را به آن میفرستند.
|
||||||
inbox_url: نشانی رله
|
inbox_url: نشانی رله
|
||||||
|
pending: در انتظار پذیرش رله
|
||||||
setup: پیوستن به رلهها
|
setup: پیوستن به رلهها
|
||||||
status: وضعیت
|
status: وضعیت
|
||||||
title: رلهها
|
title: رلهها
|
||||||
|
@ -344,6 +356,9 @@ fa:
|
||||||
contact_information:
|
contact_information:
|
||||||
email: ایمیل کاری
|
email: ایمیل کاری
|
||||||
username: نام کاربری
|
username: نام کاربری
|
||||||
|
custom_css:
|
||||||
|
desc_html: ظاهر ماستدون را با CSS-ای که در همهٔ صفحهها جاسازی میشود تغییر دهید
|
||||||
|
title: سبک CSS سفارشی
|
||||||
hero:
|
hero:
|
||||||
desc_html: در صفحهٔ آغازین نمایش مییابد. دستکم ۶۰۰×۱۰۰ پیکسل توصیه میشود. اگر تعیین نشود، با تصویر بندانگشتی سرور جایگزین خواهد شد
|
desc_html: در صفحهٔ آغازین نمایش مییابد. دستکم ۶۰۰×۱۰۰ پیکسل توصیه میشود. اگر تعیین نشود، با تصویر بندانگشتی سرور جایگزین خواهد شد
|
||||||
title: تصویر سربرگ
|
title: تصویر سربرگ
|
||||||
|
@ -412,6 +427,12 @@ fa:
|
||||||
last_delivery: آخرین ارسال
|
last_delivery: آخرین ارسال
|
||||||
title: WebSub
|
title: WebSub
|
||||||
topic: موضوع
|
topic: موضوع
|
||||||
|
suspensions:
|
||||||
|
bad_acct_msg: محتوایی که برای تأیید وارد کردید منطبق نبود. آیا دارید حساب درستی را معلق میکنید؟
|
||||||
|
hint_html: 'برای تأیید معلقکردن حساب، لطفاً در کادر زیر %{value} را وارد کنید:'
|
||||||
|
proceed: ادامه
|
||||||
|
title: معلقکردن %{acct}
|
||||||
|
warning_html: 'معلقکردن این حساب <strong>برای همیشه</strong> دادههایش را پاک میکند. دادههایی شامل:'
|
||||||
title: مدیریت سرور
|
title: مدیریت سرور
|
||||||
admin_mailer:
|
admin_mailer:
|
||||||
new_report:
|
new_report:
|
||||||
|
@ -660,6 +681,9 @@ fa:
|
||||||
no_account_html: هنوز عضو نیستید؟ <a href='%{sign_up_path}' target='_blank'>اینجا میتوانید حساب باز کنید</a>
|
no_account_html: هنوز عضو نیستید؟ <a href='%{sign_up_path}' target='_blank'>اینجا میتوانید حساب باز کنید</a>
|
||||||
proceed: درخواست پیگیری
|
proceed: درخواست پیگیری
|
||||||
prompt: 'شما قرار است این حساب را پیگیری کنید:'
|
prompt: 'شما قرار است این حساب را پیگیری کنید:'
|
||||||
|
remote_interaction:
|
||||||
|
proceed: ادامهٔ برهمکنش
|
||||||
|
prompt: 'شما میخواهید دربارهٔ این بوق کاری کنید:'
|
||||||
remote_unfollow:
|
remote_unfollow:
|
||||||
error: خطا
|
error: خطا
|
||||||
title: عنوان
|
title: عنوان
|
||||||
|
@ -743,6 +767,7 @@ fa:
|
||||||
private: نوشتههای غیرعمومی را نمیتوان ثابت کرد
|
private: نوشتههای غیرعمومی را نمیتوان ثابت کرد
|
||||||
reblog: بازبوقها را نمیتوان ثابت کرد
|
reblog: بازبوقها را نمیتوان ثابت کرد
|
||||||
show_more: نمایش
|
show_more: نمایش
|
||||||
|
sign_in_to_participate: برای شرکت در گفتگو وارد حساب خود شوید
|
||||||
title: '%{name}: "%{quote}"'
|
title: '%{name}: "%{quote}"'
|
||||||
visibilities:
|
visibilities:
|
||||||
private: خصوصی
|
private: خصوصی
|
||||||
|
|
|
@ -30,16 +30,22 @@ fr:
|
||||||
other_instances: Liste des instances
|
other_instances: Liste des instances
|
||||||
privacy_policy: Politique de vie privée
|
privacy_policy: Politique de vie privée
|
||||||
source_code: Code source
|
source_code: Code source
|
||||||
status_count_after: statuts
|
status_count_after:
|
||||||
|
one: Statut
|
||||||
|
other: Statuts
|
||||||
status_count_before: Ayant publié
|
status_count_before: Ayant publié
|
||||||
terms: Conditions d'utilisation
|
terms: Conditions d'utilisation
|
||||||
user_count_after: utilisateur⋅ice⋅s
|
user_count_after:
|
||||||
|
one: utilisateur
|
||||||
|
other: utilisateurs
|
||||||
user_count_before: Abrite
|
user_count_before: Abrite
|
||||||
what_is_mastodon: Qu’est-ce que Mastodon ?
|
what_is_mastodon: Qu’est-ce que Mastodon ?
|
||||||
accounts:
|
accounts:
|
||||||
choices_html: "%{name} recommande :"
|
choices_html: "%{name} recommande :"
|
||||||
follow: Suivre
|
follow: Suivre
|
||||||
followers: Abonné⋅e⋅s
|
followers:
|
||||||
|
one: Abonné·e
|
||||||
|
other: Abonné⋅e⋅s
|
||||||
following: Abonnements
|
following: Abonnements
|
||||||
joined: Inscrit·e en %{date}
|
joined: Inscrit·e en %{date}
|
||||||
media: Médias
|
media: Médias
|
||||||
|
@ -50,7 +56,10 @@ fr:
|
||||||
people_who_follow: Personnes qui suivent %{name}
|
people_who_follow: Personnes qui suivent %{name}
|
||||||
pin_errors:
|
pin_errors:
|
||||||
following: Vous devez être déjà abonné·e à la personne que vous désirez recommander
|
following: Vous devez être déjà abonné·e à la personne que vous désirez recommander
|
||||||
posts: Statuts
|
posts:
|
||||||
|
one: Pouet
|
||||||
|
other: Pouets
|
||||||
|
posts_tab_heading: Pouets
|
||||||
posts_with_replies: Statuts & réponses
|
posts_with_replies: Statuts & réponses
|
||||||
reserved_username: Ce nom d’utilisateur⋅ice est réservé
|
reserved_username: Ce nom d’utilisateur⋅ice est réservé
|
||||||
roles:
|
roles:
|
||||||
|
@ -294,6 +303,7 @@ fr:
|
||||||
description_html: Un <strong>relai de fédération</strong> est un serveur intermédiaire qui échange de grandes quantités de pouets entre les serveurs qui publient dessus et ceux qui y sont abonnés. <strong>Il peut aider les petites et moyennes instances à découvrir du contenu sur le fediverse</strong>, ce qui normalement nécessiterait que les membres locaux suivent des gens inscrits sur des serveurs distants.
|
description_html: Un <strong>relai de fédération</strong> est un serveur intermédiaire qui échange de grandes quantités de pouets entre les serveurs qui publient dessus et ceux qui y sont abonnés. <strong>Il peut aider les petites et moyennes instances à découvrir du contenu sur le fediverse</strong>, ce qui normalement nécessiterait que les membres locaux suivent des gens inscrits sur des serveurs distants.
|
||||||
enable_hint: Une fois activé, votre serveur souscrira à tous les pouets publics présents sur ce relais et y enverra ses propres pouets publics.
|
enable_hint: Une fois activé, votre serveur souscrira à tous les pouets publics présents sur ce relais et y enverra ses propres pouets publics.
|
||||||
inbox_url: URL de relais
|
inbox_url: URL de relais
|
||||||
|
pending: En attente de l'approbation du relai
|
||||||
setup: Paramétrer une connexion de relais
|
setup: Paramétrer une connexion de relais
|
||||||
status: Statut
|
status: Statut
|
||||||
title: Relais
|
title: Relais
|
||||||
|
@ -346,6 +356,9 @@ fr:
|
||||||
contact_information:
|
contact_information:
|
||||||
email: Entrez une adresse courriel publique
|
email: Entrez une adresse courriel publique
|
||||||
username: Entrez un nom d’utilisateur⋅ice
|
username: Entrez un nom d’utilisateur⋅ice
|
||||||
|
custom_css:
|
||||||
|
desc_html: Modifier l'apparence avec une CSS chargée sur chaque page
|
||||||
|
title: CSS personnalisée
|
||||||
hero:
|
hero:
|
||||||
desc_html: Affichée sur la page d’accueil. Au moins 600x100px recommandé. Lorsqu’elle n’est pas définie, se rabat sur la vignette de l’instance
|
desc_html: Affichée sur la page d’accueil. Au moins 600x100px recommandé. Lorsqu’elle n’est pas définie, se rabat sur la vignette de l’instance
|
||||||
title: Image d’en-tête
|
title: Image d’en-tête
|
||||||
|
@ -414,6 +427,12 @@ fr:
|
||||||
last_delivery: Dernière livraison
|
last_delivery: Dernière livraison
|
||||||
title: WebSub
|
title: WebSub
|
||||||
topic: Sujet
|
topic: Sujet
|
||||||
|
suspensions:
|
||||||
|
bad_acct_msg: La valeur de confirmation n'a pas correspondu. Êtes-vous certain de suspendre le bon compte ?
|
||||||
|
hint_html: 'Pour confirmer la suspension du compte, veuillez entrer %{value} dans le champ ci-dessous :'
|
||||||
|
proceed: Traité
|
||||||
|
title: Suspension de %{acct}
|
||||||
|
warning_html: 'Suspendre ce compte effacera <strong>irréversiblement</strong> les données de ce compte, ce qui inclut :'
|
||||||
title: Administration
|
title: Administration
|
||||||
admin_mailer:
|
admin_mailer:
|
||||||
new_report:
|
new_report:
|
||||||
|
|
|
@ -30,16 +30,22 @@ gl:
|
||||||
other_instances: Listado de instancias
|
other_instances: Listado de instancias
|
||||||
privacy_policy: Política de intimidade
|
privacy_policy: Política de intimidade
|
||||||
source_code: Código fonte
|
source_code: Código fonte
|
||||||
status_count_after: estados
|
status_count_after:
|
||||||
|
one: estado
|
||||||
|
other: estados
|
||||||
status_count_before: Que publicaron
|
status_count_before: Que publicaron
|
||||||
terms: Termos do servizo
|
terms: Termos do servizo
|
||||||
user_count_after: usuarias
|
user_count_after:
|
||||||
|
one: usuaria
|
||||||
|
other: usuarias
|
||||||
user_count_before: Fogar de
|
user_count_before: Fogar de
|
||||||
what_is_mastodon: Qué é Mastodon?
|
what_is_mastodon: Qué é Mastodon?
|
||||||
accounts:
|
accounts:
|
||||||
choices_html: 'Eleccións de %{name}:'
|
choices_html: 'Eleccións de %{name}:'
|
||||||
follow: Seguir
|
follow: Seguir
|
||||||
followers: Seguidoras
|
followers:
|
||||||
|
one: Seguidora
|
||||||
|
other: Seguidoras
|
||||||
following: Seguindo
|
following: Seguindo
|
||||||
joined: Uneuse %{date}
|
joined: Uneuse %{date}
|
||||||
media: Medios
|
media: Medios
|
||||||
|
@ -50,7 +56,10 @@ gl:
|
||||||
people_who_follow: Personas que seguen a %{name}
|
people_who_follow: Personas que seguen a %{name}
|
||||||
pin_errors:
|
pin_errors:
|
||||||
following: Debe seguir a persoa que intenta recomendar
|
following: Debe seguir a persoa que intenta recomendar
|
||||||
posts: Mensaxes
|
posts:
|
||||||
|
one: Toot
|
||||||
|
other: Toots
|
||||||
|
posts_tab_heading: Toots
|
||||||
posts_with_replies: Toots e respostas
|
posts_with_replies: Toots e respostas
|
||||||
reserved_username: O nome de usuaria está reservado
|
reserved_username: O nome de usuaria está reservado
|
||||||
roles:
|
roles:
|
||||||
|
@ -294,6 +303,7 @@ gl:
|
||||||
description_html: Un <strong>repetidor da federación</strong> é un servidor intermedio que intercambia grandes volumes de toots públicos entre servidores que se suscriban e publiquen nel. <strong>Pode axudar a servidores pequenos e medios a descubrir contido no fediverso</strong>, o que de outro xeito precisaría que as usuarias locais seguisen a outra xente en servidores remotos.
|
description_html: Un <strong>repetidor da federación</strong> é un servidor intermedio que intercambia grandes volumes de toots públicos entre servidores que se suscriban e publiquen nel. <strong>Pode axudar a servidores pequenos e medios a descubrir contido no fediverso</strong>, o que de outro xeito precisaría que as usuarias locais seguisen a outra xente en servidores remotos.
|
||||||
enable_hint: Unha vez activado, o seu servidor suscribirase a todos os toots públicos de este servidor, e tamén comezará a eviar a el os toots públicos do servidor.
|
enable_hint: Unha vez activado, o seu servidor suscribirase a todos os toots públicos de este servidor, e tamén comezará a eviar a el os toots públicos do servidor.
|
||||||
inbox_url: URL do repetidor
|
inbox_url: URL do repetidor
|
||||||
|
pending: Agardando polo permiso do repetidor
|
||||||
setup: Configurar a conexión ao repetidor
|
setup: Configurar a conexión ao repetidor
|
||||||
status: Estado
|
status: Estado
|
||||||
title: Repetidores
|
title: Repetidores
|
||||||
|
@ -346,6 +356,9 @@ gl:
|
||||||
contact_information:
|
contact_information:
|
||||||
email: e-mail de traballo
|
email: e-mail de traballo
|
||||||
username: Nome de usuaria de contacto
|
username: Nome de usuaria de contacto
|
||||||
|
custom_css:
|
||||||
|
desc_html: Modificar o aspecto con CSS cargado en cada páxina
|
||||||
|
title: CSS personalizado
|
||||||
hero:
|
hero:
|
||||||
desc_html: Mostrado na portada. Recoméndase 600x100px como mínimo. Si non se establece, mostrará a imaxe por omisión da instancia
|
desc_html: Mostrado na portada. Recoméndase 600x100px como mínimo. Si non se establece, mostrará a imaxe por omisión da instancia
|
||||||
title: Imáxe Heróe
|
title: Imáxe Heróe
|
||||||
|
@ -414,6 +427,12 @@ gl:
|
||||||
last_delivery: Última entrega
|
last_delivery: Última entrega
|
||||||
title: WebSub
|
title: WebSub
|
||||||
topic: Asunto
|
topic: Asunto
|
||||||
|
suspensions:
|
||||||
|
bad_acct_msg: O valor de confirmación non é coincidente. Está a suspender a conta correcta?
|
||||||
|
hint_html: 'Para confirmar a suspensión da conta introduza %{value} no campo inferior:'
|
||||||
|
proceed: Proceder
|
||||||
|
title: Suspender %{acct}
|
||||||
|
warning_html: 'Ao suspender esta conta eliminará <strong>de xeito irreversible</strong> os datos de esta conta, que inclúe:'
|
||||||
title: Administración
|
title: Administración
|
||||||
admin_mailer:
|
admin_mailer:
|
||||||
new_report:
|
new_report:
|
||||||
|
|
|
@ -298,6 +298,7 @@ ja:
|
||||||
description_html: "<strong>連合リレー</strong>とは、登録しているサーバー間の公開トゥートを仲介するサーバーです。<strong>中小規模のサーバーが連合のコンテンツを見つけるのを助けます。</strong>これを使用しない場合、ローカルユーザーがリモートユーザーを手動でフォローする必要があります。"
|
description_html: "<strong>連合リレー</strong>とは、登録しているサーバー間の公開トゥートを仲介するサーバーです。<strong>中小規模のサーバーが連合のコンテンツを見つけるのを助けます。</strong>これを使用しない場合、ローカルユーザーがリモートユーザーを手動でフォローする必要があります。"
|
||||||
enable_hint: 有効にすると、リレーから全ての公開トゥートを受信するようになり、またこのサーバーの全ての公開トゥートをリレーに送信するようになります。
|
enable_hint: 有効にすると、リレーから全ての公開トゥートを受信するようになり、またこのサーバーの全ての公開トゥートをリレーに送信するようになります。
|
||||||
inbox_url: リレーURL
|
inbox_url: リレーURL
|
||||||
|
pending: リレーサーバーの承認待ちです
|
||||||
setup: リレー接続を設定する
|
setup: リレー接続を設定する
|
||||||
status: ステータス
|
status: ステータス
|
||||||
title: リレー
|
title: リレー
|
||||||
|
@ -350,6 +351,9 @@ ja:
|
||||||
contact_information:
|
contact_information:
|
||||||
email: ビジネスメールアドレス
|
email: ビジネスメールアドレス
|
||||||
username: 連絡先のユーザー名
|
username: 連絡先のユーザー名
|
||||||
|
custom_css:
|
||||||
|
desc_html: 全ページに適用されるCSSの編集
|
||||||
|
title: カスタムCSS
|
||||||
hero:
|
hero:
|
||||||
desc_html: フロントページに表示されます。サイズは600x100px以上推奨です。未設定の場合、インスタンスのサムネイルが使用されます
|
desc_html: フロントページに表示されます。サイズは600x100px以上推奨です。未設定の場合、インスタンスのサムネイルが使用されます
|
||||||
title: ヒーローイメージ
|
title: ヒーローイメージ
|
||||||
|
|
|
@ -30,16 +30,22 @@ nl:
|
||||||
other_instances: Andere servers
|
other_instances: Andere servers
|
||||||
privacy_policy: Privacybeleid
|
privacy_policy: Privacybeleid
|
||||||
source_code: Broncode
|
source_code: Broncode
|
||||||
status_count_after: toots
|
status_count_after:
|
||||||
|
one: toot
|
||||||
|
other: toots
|
||||||
status_count_before: Zij schreven
|
status_count_before: Zij schreven
|
||||||
terms: Gebruiksvoorwaarden
|
terms: Gebruiksvoorwaarden
|
||||||
user_count_after: gebruikers
|
user_count_after:
|
||||||
|
one: gebruiker
|
||||||
|
other: gebruikers
|
||||||
user_count_before: Thuisbasis van
|
user_count_before: Thuisbasis van
|
||||||
what_is_mastodon: Wat is Mastodon?
|
what_is_mastodon: Wat is Mastodon?
|
||||||
accounts:
|
accounts:
|
||||||
choices_html: 'Aanbevelingen van %{name}:'
|
choices_html: 'Aanbevelingen van %{name}:'
|
||||||
follow: Volgen
|
follow: Volgen
|
||||||
followers: Volgers
|
followers:
|
||||||
|
one: Volger
|
||||||
|
other: Volgers
|
||||||
following: Volgend
|
following: Volgend
|
||||||
joined: Geregistreerd in %{date}
|
joined: Geregistreerd in %{date}
|
||||||
media: Media
|
media: Media
|
||||||
|
@ -50,7 +56,10 @@ nl:
|
||||||
people_who_follow: Mensen die %{name} volgen
|
people_who_follow: Mensen die %{name} volgen
|
||||||
pin_errors:
|
pin_errors:
|
||||||
following: Je moet dit account wel al volgen, alvorens je het kan aanbevelen
|
following: Je moet dit account wel al volgen, alvorens je het kan aanbevelen
|
||||||
posts: Toots
|
posts:
|
||||||
|
one: Toot
|
||||||
|
other: Toots
|
||||||
|
posts_tab_heading: Toots
|
||||||
posts_with_replies: Toots en reacties
|
posts_with_replies: Toots en reacties
|
||||||
reserved_username: Deze gebruikersnaam is gereserveerd
|
reserved_username: Deze gebruikersnaam is gereserveerd
|
||||||
roles:
|
roles:
|
||||||
|
@ -294,6 +303,7 @@ nl:
|
||||||
description_html: Een <strong>federatierelay</strong> is een tussenliggende server die grote hoeveelheden openbare toots uitwisselt tussen servers die zich hierop hebben geabonneerd. <strong>Het kan kleine en middelgrote servers helpen om content uit de fediverse te ontdekken</strong>, waarvoor anders lokale gebruikers handmatig mensen van externe servers moeten volgen.
|
description_html: Een <strong>federatierelay</strong> is een tussenliggende server die grote hoeveelheden openbare toots uitwisselt tussen servers die zich hierop hebben geabonneerd. <strong>Het kan kleine en middelgrote servers helpen om content uit de fediverse te ontdekken</strong>, waarvoor anders lokale gebruikers handmatig mensen van externe servers moeten volgen.
|
||||||
enable_hint: Eenmaal ingeschakeld gaat jouw server zich op alle openbare toots van deze relayserver abonneren en stuurt het de openbare toots van jouw server naar de relayserver.
|
enable_hint: Eenmaal ingeschakeld gaat jouw server zich op alle openbare toots van deze relayserver abonneren en stuurt het de openbare toots van jouw server naar de relayserver.
|
||||||
inbox_url: Relay-URL
|
inbox_url: Relay-URL
|
||||||
|
pending: Aan het wachten op toestemming van de relayserver
|
||||||
setup: Een verbinding met een relayserver maken
|
setup: Een verbinding met een relayserver maken
|
||||||
status: Status
|
status: Status
|
||||||
title: Relayservers
|
title: Relayservers
|
||||||
|
@ -346,6 +356,9 @@ nl:
|
||||||
contact_information:
|
contact_information:
|
||||||
email: Vul een openbaar gebruikt e-mailadres in
|
email: Vul een openbaar gebruikt e-mailadres in
|
||||||
username: Vul een gebruikersnaam in
|
username: Vul een gebruikersnaam in
|
||||||
|
custom_css:
|
||||||
|
desc_html: Het uiterlijk van deze server met CSS aanpassen
|
||||||
|
title: Aangepaste CSS
|
||||||
hero:
|
hero:
|
||||||
desc_html: Wordt op de voorpagina getoond. Tenminste 600x100px aanbevolen. Wanneer dit niet is ingesteld wordt de thumbnail van de Mastodonserver getoond
|
desc_html: Wordt op de voorpagina getoond. Tenminste 600x100px aanbevolen. Wanneer dit niet is ingesteld wordt de thumbnail van de Mastodonserver getoond
|
||||||
title: Hero-afbeelding
|
title: Hero-afbeelding
|
||||||
|
@ -414,6 +427,12 @@ nl:
|
||||||
last_delivery: Laatste bezorging
|
last_delivery: Laatste bezorging
|
||||||
title: WebSub
|
title: WebSub
|
||||||
topic: Account
|
topic: Account
|
||||||
|
suspensions:
|
||||||
|
bad_acct_msg: De bevestigingswaarde kwam niet overeen. Schort je wel het juiste account op?
|
||||||
|
hint_html: Vul in het veld hieronder %{value} in, om het opschorten van dit account te bevestigen.
|
||||||
|
proceed: Ga verder
|
||||||
|
title: "%{acct} opschorten"
|
||||||
|
warning_html: 'Door het opschorten van dit account worden gegevens van dit account <strong>permanent</strong> verwijderd, waaronder:'
|
||||||
title: Beheer
|
title: Beheer
|
||||||
admin_mailer:
|
admin_mailer:
|
||||||
new_report:
|
new_report:
|
||||||
|
@ -660,7 +679,7 @@ nl:
|
||||||
acct: Geef jouw account@domein op die je wilt gebruiken
|
acct: Geef jouw account@domein op die je wilt gebruiken
|
||||||
missing_resource: Kon vereiste doorverwijzings-URL voor jouw account niet vinden
|
missing_resource: Kon vereiste doorverwijzings-URL voor jouw account niet vinden
|
||||||
no_account_html: Heb je geen account? Je kunt er <a href='%{sign_up_path}' target='_blank'>hier een registreren</a>
|
no_account_html: Heb je geen account? Je kunt er <a href='%{sign_up_path}' target='_blank'>hier een registreren</a>
|
||||||
proceed: Ga door om te volgen
|
proceed: Ga verder om te volgen
|
||||||
prompt: 'Jij gaat volgen:'
|
prompt: 'Jij gaat volgen:'
|
||||||
remote_interaction:
|
remote_interaction:
|
||||||
proceed: Ga de interactie aan
|
proceed: Ga de interactie aan
|
||||||
|
@ -843,7 +862,7 @@ nl:
|
||||||
<p>This document is CC-BY-SA. It was last updated March 7, 2018.</p>
|
<p>This document is CC-BY-SA. It was last updated March 7, 2018.</p>
|
||||||
|
|
||||||
<p>Originally adapted from the <a href="https://github.com/discourse/discourse">Discourse privacy policy</a>.</p>
|
<p>Originally adapted from the <a href="https://github.com/discourse/discourse">Discourse privacy policy</a>.</p>
|
||||||
title: "%{instance} Terms of Service and Privacy Policy"
|
title: Gebruiksvoorwaarden en privacybeleid van %{instance}
|
||||||
themes:
|
themes:
|
||||||
contrast: Hoog contrast
|
contrast: Hoog contrast
|
||||||
default: Mastodon
|
default: Mastodon
|
||||||
|
@ -862,7 +881,7 @@ nl:
|
||||||
generate_recovery_codes: Herstelcodes genereren
|
generate_recovery_codes: Herstelcodes genereren
|
||||||
instructions_html: "<strong>Scan deze QR-code in Google Authenticator of een soortgelijke app op jouw mobiele telefoon</strong>. Van nu af aan genereert deze app aanmeldcodes die je bij het aanmelden moet invoeren."
|
instructions_html: "<strong>Scan deze QR-code in Google Authenticator of een soortgelijke app op jouw mobiele telefoon</strong>. Van nu af aan genereert deze app aanmeldcodes die je bij het aanmelden moet invoeren."
|
||||||
lost_recovery_codes: Met herstelcodes kun je toegang tot jouw account krijgen wanneer je jouw telefoon bent kwijtgeraakt. Wanneer je jouw herstelcodes bent kwijtgeraakt, kan je ze hier opnieuw genereren. Jouw oude herstelcodes zijn daarna ongeldig.
|
lost_recovery_codes: Met herstelcodes kun je toegang tot jouw account krijgen wanneer je jouw telefoon bent kwijtgeraakt. Wanneer je jouw herstelcodes bent kwijtgeraakt, kan je ze hier opnieuw genereren. Jouw oude herstelcodes zijn daarna ongeldig.
|
||||||
manual_instructions: Hieronder vind je de geheime code in platte tekst. Voor het geval je de QR-code niet kunt scannen en het handmatig moet invoeren.
|
manual_instructions: Voor het geval je de QR-code niet kunt scannen en het handmatig moet invoeren, vind je hieronder geheime code in gewone tekst.
|
||||||
recovery_codes: Herstelcodes back-uppen
|
recovery_codes: Herstelcodes back-uppen
|
||||||
recovery_codes_regenerated: Opnieuw genereren herstelcodes geslaagd
|
recovery_codes_regenerated: Opnieuw genereren herstelcodes geslaagd
|
||||||
recovery_instructions_html: Wanneer je ooit de toegang verliest tot jouw telefoon, kan je met behulp van een van de herstelcodes hieronder opnieuw toegang krijgen tot jouw account. <strong>Zorg ervoor dat je de herstelcodes op een veilige plek bewaard</strong>. Je kunt ze bijvoorbeeld printen en ze samen met andere belangrijke documenten bewaren.
|
recovery_instructions_html: Wanneer je ooit de toegang verliest tot jouw telefoon, kan je met behulp van een van de herstelcodes hieronder opnieuw toegang krijgen tot jouw account. <strong>Zorg ervoor dat je de herstelcodes op een veilige plek bewaard</strong>. Je kunt ze bijvoorbeeld printen en ze samen met andere belangrijke documenten bewaren.
|
||||||
|
|
|
@ -334,7 +334,7 @@ oc:
|
||||||
target: Cibla
|
target: Cibla
|
||||||
title: Senhalament
|
title: Senhalament
|
||||||
unassign: Levar
|
unassign: Levar
|
||||||
unresolved: Pas resolguts
|
unresolved: Pas resolgut
|
||||||
updated_at: Actualizat
|
updated_at: Actualizat
|
||||||
view: Veire
|
view: Veire
|
||||||
settings:
|
settings:
|
||||||
|
|
|
@ -410,6 +410,7 @@ pl:
|
||||||
media:
|
media:
|
||||||
title: Media
|
title: Media
|
||||||
no_media: Bez zawartości multimedialnej
|
no_media: Bez zawartości multimedialnej
|
||||||
|
no_status_selected: Żaden wpis nie został zmieniony, bo żaden nie został wybrany
|
||||||
title: Wpisy konta
|
title: Wpisy konta
|
||||||
with_media: Z zawartością multimedialną
|
with_media: Z zawartością multimedialną
|
||||||
subscriptions:
|
subscriptions:
|
||||||
|
|
|
@ -30,16 +30,22 @@ pt-BR:
|
||||||
other_instances: Lista de instâncias
|
other_instances: Lista de instâncias
|
||||||
privacy_policy: Política de Privacidade
|
privacy_policy: Política de Privacidade
|
||||||
source_code: Código-fonte
|
source_code: Código-fonte
|
||||||
status_count_after: publicações
|
status_count_after:
|
||||||
|
one: status
|
||||||
|
other: status
|
||||||
status_count_before: Autores de
|
status_count_before: Autores de
|
||||||
terms: Termos de serviço
|
terms: Termos de serviço
|
||||||
user_count_after: usuários
|
user_count_after:
|
||||||
|
one: usuário
|
||||||
|
other: usuários
|
||||||
user_count_before: Casa de
|
user_count_before: Casa de
|
||||||
what_is_mastodon: O que é Mastodon?
|
what_is_mastodon: O que é Mastodon?
|
||||||
accounts:
|
accounts:
|
||||||
choices_html: 'Escolhas de %{name}:'
|
choices_html: 'Escolhas de %{name}:'
|
||||||
follow: Seguir
|
follow: Seguir
|
||||||
followers: Seguidores
|
followers:
|
||||||
|
one: Seguidor
|
||||||
|
other: Seguidores
|
||||||
following: Seguindo
|
following: Seguindo
|
||||||
joined: Participa desde %{date}
|
joined: Participa desde %{date}
|
||||||
media: Mídia
|
media: Mídia
|
||||||
|
@ -50,7 +56,10 @@ pt-BR:
|
||||||
people_who_follow: Pessoas que seguem %{name}
|
people_who_follow: Pessoas que seguem %{name}
|
||||||
pin_errors:
|
pin_errors:
|
||||||
following: Você tem que estar seguindo a pessoa que você quer sugerir
|
following: Você tem que estar seguindo a pessoa que você quer sugerir
|
||||||
posts: Toots
|
posts:
|
||||||
|
one: Toot
|
||||||
|
other: Toots
|
||||||
|
posts_tab_heading: Toots
|
||||||
posts_with_replies: Toots e respostas
|
posts_with_replies: Toots e respostas
|
||||||
reserved_username: Este usuário está reservado
|
reserved_username: Este usuário está reservado
|
||||||
roles:
|
roles:
|
||||||
|
@ -346,6 +355,9 @@ pt-BR:
|
||||||
contact_information:
|
contact_information:
|
||||||
email: E-mail
|
email: E-mail
|
||||||
username: Contate usuário
|
username: Contate usuário
|
||||||
|
custom_css:
|
||||||
|
desc_html: Modificar o visual com CSS que é carregado em todas as páginas
|
||||||
|
title: CSS customizado
|
||||||
hero:
|
hero:
|
||||||
desc_html: Aparece na página inicial. Ao menos 600x100px é recomendado. Se não estiver definido, o thumbnail da instância é usado no lugar
|
desc_html: Aparece na página inicial. Ao menos 600x100px é recomendado. Se não estiver definido, o thumbnail da instância é usado no lugar
|
||||||
title: Imagem de capa
|
title: Imagem de capa
|
||||||
|
@ -414,6 +426,12 @@ pt-BR:
|
||||||
last_delivery: Última entrega
|
last_delivery: Última entrega
|
||||||
title: WebSub
|
title: WebSub
|
||||||
topic: Tópico
|
topic: Tópico
|
||||||
|
suspensions:
|
||||||
|
bad_acct_msg: Os valores de confirmação não correspondem. Você está suspendendo a conta certa?
|
||||||
|
hint_html: 'Para confirmar a suspensão da conta, por favor digite %{value} no campo abaixo:'
|
||||||
|
proceed: Prosseguir
|
||||||
|
title: Suspender %{acct}
|
||||||
|
warning_html: 'Suspender essa conta vai remover <strong>irreversivelmente</strong> dados dessa conta, o que inclui:'
|
||||||
title: Administração
|
title: Administração
|
||||||
admin_mailer:
|
admin_mailer:
|
||||||
new_report:
|
new_report:
|
||||||
|
|
3
config/locales/simple_form.cy.yml
Normal file
3
config/locales/simple_form.cy.yml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
---
|
||||||
|
cy:
|
||||||
|
simple_form: {}
|
|
@ -15,6 +15,7 @@ pl:
|
||||||
other: Pozostało <span class="name-counter">%{count}</span> znaków
|
other: Pozostało <span class="name-counter">%{count}</span> znaków
|
||||||
fields: Możesz ustawić maksymalnie 4 niestandardowe pola wyświetlane jako tabela na Twoim profilu
|
fields: Możesz ustawić maksymalnie 4 niestandardowe pola wyświetlane jako tabela na Twoim profilu
|
||||||
header: PNG, GIF lub JPG. Maksymalnie %{size}. Zostanie zmniejszony do %{dimensions}px
|
header: PNG, GIF lub JPG. Maksymalnie %{size}. Zostanie zmniejszony do %{dimensions}px
|
||||||
|
inbox_url: Skopiuj adres ze strony głównej przekaźnika, którego chcesz użyć
|
||||||
irreversible: Filtrowane wpisy znikną bezpowrotnie, nawet gdy filtr zostanie usunięty
|
irreversible: Filtrowane wpisy znikną bezpowrotnie, nawet gdy filtr zostanie usunięty
|
||||||
locale: Język interfejsu, wiadomości e-mail i powiadomieniach push
|
locale: Język interfejsu, wiadomości e-mail i powiadomieniach push
|
||||||
locked: Musisz akceptować prośby o śledzenie
|
locked: Musisz akceptować prośby o śledzenie
|
||||||
|
@ -24,10 +25,12 @@ pl:
|
||||||
one: Pozostał <span class="name-counter">1</span> znak
|
one: Pozostał <span class="name-counter">1</span> znak
|
||||||
other: Pozostało <span class="name-counter">%{count}</span> znaków
|
other: Pozostało <span class="name-counter">%{count}</span> znaków
|
||||||
phrase: Zostanie wykryte nawet, gdy znajduje się za ostrzeżeniem o zawartości
|
phrase: Zostanie wykryte nawet, gdy znajduje się za ostrzeżeniem o zawartości
|
||||||
|
scopes: Wybór API, do których aplikacja będzie miała dostęp. Jeżeli wybierzesz nadrzędny zakres, nie musisz wybierać jego elementów.
|
||||||
setting_default_language: Język Twoich wpisów może być wykrywany automatycznie, ale nie zawsze jest to dokładne
|
setting_default_language: Język Twoich wpisów może być wykrywany automatycznie, ale nie zawsze jest to dokładne
|
||||||
setting_hide_network: Informacje o tym, kto Cię śledzi i kogo śledzisz nie będą widoczne
|
setting_hide_network: Informacje o tym, kto Cię śledzi i kogo śledzisz nie będą widoczne
|
||||||
setting_noindex: Wpływa na widoczność strony profilu i Twoich wpisów
|
setting_noindex: Wpływa na widoczność strony profilu i Twoich wpisów
|
||||||
setting_theme: Zmienia wygląd Mastodona po zalogowaniu z dowolnego urządzenia.
|
setting_theme: Zmienia wygląd Mastodona po zalogowaniu z dowolnego urządzenia.
|
||||||
|
whole_word: Jeśli słowo lub fraza składa się jedynie z liter lub cyfr, filtr będzie zastosowany tylko do pełnych wystąpień
|
||||||
imports:
|
imports:
|
||||||
data: Plik CSV wyeksportowany z innej instancji Mastodona
|
data: Plik CSV wyeksportowany z innej instancji Mastodona
|
||||||
sessions:
|
sessions:
|
||||||
|
@ -54,6 +57,7 @@ pl:
|
||||||
expires_in: Wygaśnie po
|
expires_in: Wygaśnie po
|
||||||
fields: Metadane profilu
|
fields: Metadane profilu
|
||||||
header: Nagłówek
|
header: Nagłówek
|
||||||
|
inbox_url: Adres skrzynki przekaźnika
|
||||||
irreversible: Usuwaj zamiast ukrywać
|
irreversible: Usuwaj zamiast ukrywać
|
||||||
locale: Język interfejsu
|
locale: Język interfejsu
|
||||||
locked: Ustaw konto jako prywatne
|
locked: Ustaw konto jako prywatne
|
||||||
|
|
|
@ -25,11 +25,12 @@ module Devise
|
||||||
)
|
)
|
||||||
|
|
||||||
filter = format(Devise.ldap_search_filter, uid: Devise.ldap_uid, email: email)
|
filter = format(Devise.ldap_search_filter, uid: Devise.ldap_uid, email: email)
|
||||||
|
|
||||||
if (user_info = ldap.bind_as(base: Devise.ldap_base, filter: filter, password: password))
|
if (user_info = ldap.bind_as(base: Devise.ldap_base, filter: filter, password: password))
|
||||||
user = User.ldap_get_user(user_info.first)
|
user = User.ldap_get_user(user_info.first)
|
||||||
success!(user)
|
success!(user)
|
||||||
else
|
else
|
||||||
return fail(:invalid_login)
|
return fail(:invalid)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -10,6 +10,8 @@ module Mastodon
|
||||||
class MediaCLI < Thor
|
class MediaCLI < Thor
|
||||||
option :days, type: :numeric, default: 7
|
option :days, type: :numeric, default: 7
|
||||||
option :background, type: :boolean, default: false
|
option :background, type: :boolean, default: false
|
||||||
|
option :verbose, type: :boolean, default: false
|
||||||
|
option :dry_run, type: :boolean, default: false
|
||||||
desc 'remove', 'Remove remote media files'
|
desc 'remove', 'Remove remote media files'
|
||||||
long_desc <<-DESC
|
long_desc <<-DESC
|
||||||
Removes locally cached copies of media attachments from other servers.
|
Removes locally cached copies of media attachments from other servers.
|
||||||
|
@ -22,20 +24,27 @@ module Mastodon
|
||||||
possible. In Sidekiq they will be processed with higher concurrency, but
|
possible. In Sidekiq they will be processed with higher concurrency, but
|
||||||
it may impact other operations of the Mastodon server, and it may overload
|
it may impact other operations of the Mastodon server, and it may overload
|
||||||
the underlying file storage.
|
the underlying file storage.
|
||||||
|
|
||||||
|
With the --verbose option, output deleting file ID to console (only when --background false).
|
||||||
|
|
||||||
|
With the --dry-run option, output the number of files to delete without deleting.
|
||||||
DESC
|
DESC
|
||||||
def remove
|
def remove
|
||||||
time_ago = options[:days].days.ago
|
time_ago = options[:days].days.ago
|
||||||
queued = 0
|
queued = 0
|
||||||
processed = 0
|
processed = 0
|
||||||
|
dry_run = options[:dry_run] ? '(DRY RUN)' : ''
|
||||||
|
|
||||||
MediaAttachment.where.not(remote_url: '').where.not(file_file_name: nil).where('created_at < ?', time_ago).select(:id).reorder(nil).find_in_batches do |media_attachments|
|
if options[:background]
|
||||||
if options[:background]
|
MediaAttachment.where.not(remote_url: '').where.not(file_file_name: nil).where('created_at < ?', time_ago).select(:id).reorder(nil).find_in_batches do |media_attachments|
|
||||||
queued += media_attachments.size
|
queued += media_attachments.size
|
||||||
Maintenance::UncacheMediaWorker.push_bulk(media_attachments.map(&:id))
|
Maintenance::UncacheMediaWorker.push_bulk(media_attachments.map(&:id)) unless options[:dry_run]
|
||||||
else
|
end
|
||||||
|
else
|
||||||
|
MediaAttachment.where.not(remote_url: '').where.not(file_file_name: nil).where('created_at < ?', time_ago).reorder(nil).find_in_batches do |media_attachments|
|
||||||
media_attachments.each do |m|
|
media_attachments.each do |m|
|
||||||
Maintenance::UncacheMediaWorker.new.perform(m)
|
Maintenance::UncacheMediaWorker.new.perform(m) unless options[:dry_run]
|
||||||
say('.', :green, false)
|
options[:verbose] ? say(m.id) : say('.', :green, false)
|
||||||
processed += 1
|
processed += 1
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -44,9 +53,9 @@ module Mastodon
|
||||||
say
|
say
|
||||||
|
|
||||||
if options[:background]
|
if options[:background]
|
||||||
say("Scheduled the deletion of #{queued} media attachments", :green)
|
say("Scheduled the deletion of #{queued} media attachments #{dry_run}.", :green)
|
||||||
else
|
else
|
||||||
say("Removed #{processed} media attachments", :green)
|
say("Removed #{processed} media attachments #{dry_run}.", :green)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -21,7 +21,7 @@ module Mastodon
|
||||||
end
|
end
|
||||||
|
|
||||||
def flags
|
def flags
|
||||||
'rc1'
|
'rc2'
|
||||||
end
|
end
|
||||||
|
|
||||||
def to_a
|
def to_a
|
||||||
|
|
|
@ -91,6 +91,11 @@
|
||||||
"description": "Internal scalingo configuration",
|
"description": "Internal scalingo configuration",
|
||||||
"required": true,
|
"required": true,
|
||||||
"value": "https://github.com/Scalingo/multi-buildpack.git"
|
"value": "https://github.com/Scalingo/multi-buildpack.git"
|
||||||
|
},
|
||||||
|
"WITH_FFPROBE": {
|
||||||
|
"description": "Internal scalingo configuration to install ffprobe",
|
||||||
|
"required": true,
|
||||||
|
"value": "true"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
Fabricator(:relay) do
|
Fabricator(:relay) do
|
||||||
inbox_url "https://example.com/inbox"
|
inbox_url "https://example.com/inbox"
|
||||||
enabled true
|
state :idle
|
||||||
end
|
end
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue