Merge branch 'develop' into 'remote_follow'

# Conflicts:
#   app/soapbox/features/account/components/header.js
This commit is contained in:
Sean King 2020-08-18 17:24:12 +00:00
commit 71d40b3dd6
99 changed files with 5497 additions and 215 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@ -75,7 +75,7 @@ const defaultSettings = ImmutableMap({
community: ImmutableMap({ community: ImmutableMap({
shows: ImmutableMap({ shows: ImmutableMap({
reblog: true, reblog: false,
reply: true, reply: true,
}), }),
other: ImmutableMap({ other: ImmutableMap({

View File

@ -4,7 +4,7 @@ import {
expandHomeTimeline, expandHomeTimeline,
connectTimeline, connectTimeline,
disconnectTimeline, disconnectTimeline,
updateTimelineQueue, processTimelineUpdate,
} from './timelines'; } from './timelines';
import { updateNotificationsQueue, expandNotifications } from './notifications'; import { updateNotificationsQueue, expandNotifications } from './notifications';
import { updateConversations } from './conversations'; import { updateConversations } from './conversations';
@ -12,10 +12,17 @@ import { fetchFilters } from './filters';
import { getSettings } from 'soapbox/actions/settings'; import { getSettings } from 'soapbox/actions/settings';
import messages from 'soapbox/locales/messages'; import messages from 'soapbox/locales/messages';
const validLocale = locale => Object.keys(messages).includes(locale);
const getLocale = state => {
const locale = getSettings(state).get('locale');
return validLocale(locale) ? locale : 'en';
};
export function connectTimelineStream(timelineId, path, pollingRefresh = null, accept = null) { export function connectTimelineStream(timelineId, path, pollingRefresh = null, accept = null) {
return connectStream (path, pollingRefresh, (dispatch, getState) => { return connectStream (path, pollingRefresh, (dispatch, getState) => {
const locale = getSettings(getState()).get('locale'); const locale = getLocale(getState());
return { return {
onConnect() { onConnect() {
@ -29,7 +36,7 @@ export function connectTimelineStream(timelineId, path, pollingRefresh = null, a
onReceive(data) { onReceive(data) {
switch(data.event) { switch(data.event) {
case 'update': case 'update':
dispatch(updateTimelineQueue(timelineId, JSON.parse(data.payload), accept)); dispatch(processTimelineUpdate(timelineId, JSON.parse(data.payload), accept));
break; break;
case 'delete': case 'delete':
dispatch(deleteFromTimelines(data.payload)); dispatch(deleteFromTimelines(data.payload));

View File

@ -1,6 +1,8 @@
import { importFetchedStatus, importFetchedStatuses } from './importer'; import { importFetchedStatus, importFetchedStatuses } from './importer';
import api, { getLinks } from '../api'; import api, { getLinks } from '../api';
import { Map as ImmutableMap, List as ImmutableList } from 'immutable'; import { Map as ImmutableMap, List as ImmutableList, fromJS } from 'immutable';
import { getSettings } from 'soapbox/actions/settings';
import { shouldFilter } from 'soapbox/utils/timelines';
export const TIMELINE_UPDATE = 'TIMELINE_UPDATE'; export const TIMELINE_UPDATE = 'TIMELINE_UPDATE';
export const TIMELINE_DELETE = 'TIMELINE_DELETE'; export const TIMELINE_DELETE = 'TIMELINE_DELETE';
@ -18,6 +20,19 @@ export const TIMELINE_DISCONNECT = 'TIMELINE_DISCONNECT';
export const MAX_QUEUED_ITEMS = 40; export const MAX_QUEUED_ITEMS = 40;
export function processTimelineUpdate(timeline, status, accept) {
return (dispatch, getState) => {
const columnSettings = getSettings(getState()).get(timeline, ImmutableMap());
const shouldSkipQueue = shouldFilter(fromJS(status), columnSettings);
if (shouldSkipQueue) {
return dispatch(updateTimeline(timeline, status, accept));
} else {
return dispatch(updateTimelineQueue(timeline, status, accept));
}
};
}
export function updateTimeline(timeline, status, accept) { export function updateTimeline(timeline, status, accept) {
return dispatch => { return dispatch => {
if (typeof accept === 'function' && !accept(status)) { if (typeof accept === 'function' && !accept(status)) {
@ -153,11 +168,13 @@ export const expandPublicTimeline = ({ maxId, onlyMedia } = {}, done =
export const expandCommunityTimeline = ({ maxId, onlyMedia } = {}, done = noOp) => expandTimeline(`community${onlyMedia ? ':media' : ''}`, '/api/v1/timelines/public', { local: true, max_id: maxId, only_media: !!onlyMedia }, done); export const expandCommunityTimeline = ({ maxId, onlyMedia } = {}, done = noOp) => expandTimeline(`community${onlyMedia ? ':media' : ''}`, '/api/v1/timelines/public', { local: true, max_id: maxId, only_media: !!onlyMedia }, done);
export const expandAccountTimeline = (accountId, { maxId, withReplies } = {}) => expandTimeline(`account:${accountId}${withReplies ? ':with_replies' : ''}`, `/api/v1/accounts/${accountId}/statuses`, { exclude_replies: !withReplies, max_id: maxId }); export const expandDirectTimeline = ({ maxId } = {}, done = noOp) => expandTimeline('direct', '/api/v1/timelines/direct', { max_id: maxId }, done);
export const expandAccountFeaturedTimeline = accountId => expandTimeline(`account:${accountId}:pinned`, `/api/v1/accounts/${accountId}/statuses`, { pinned: true }); export const expandAccountTimeline = (accountId, { maxId, withReplies } = {}) => expandTimeline(`account:${accountId}${withReplies ? ':with_replies' : ''}`, `/api/v1/accounts/${accountId}/statuses`, { exclude_replies: !withReplies, max_id: maxId, with_muted: true });
export const expandAccountMediaTimeline = (accountId, { maxId } = {}) => expandTimeline(`account:${accountId}:media`, `/api/v1/accounts/${accountId}/statuses`, { max_id: maxId, only_media: true, limit: 40 }); export const expandAccountFeaturedTimeline = accountId => expandTimeline(`account:${accountId}:pinned`, `/api/v1/accounts/${accountId}/statuses`, { pinned: true, with_muted: true });
export const expandAccountMediaTimeline = (accountId, { maxId } = {}) => expandTimeline(`account:${accountId}:media`, `/api/v1/accounts/${accountId}/statuses`, { max_id: maxId, only_media: true, limit: 40, with_muted: true });
export const expandListTimeline = (id, { maxId } = {}, done = noOp) => expandTimeline(`list:${id}`, `/api/v1/timelines/list/${id}`, { max_id: maxId }, done); export const expandListTimeline = (id, { maxId } = {}, done = noOp) => expandTimeline(`list:${id}`, `/api/v1/timelines/list/${id}`, { max_id: maxId }, done);

View File

@ -27,7 +27,7 @@ class StillImage extends React.PureComponent {
hoverToPlay() { hoverToPlay() {
const { autoPlayGif, src } = this.props; const { autoPlayGif, src } = this.props;
return !autoPlayGif && (src.endsWith('.gif') || src.startsWith('blob:')); return src && !autoPlayGif && (src.endsWith('.gif') || src.startsWith('blob:'));
} }
setCanvasRef = c => { setCanvasRef = c => {

View File

@ -27,6 +27,7 @@ const messages = defineMessages({
direct: { id: 'account.direct', defaultMessage: 'Direct message @{name}' }, direct: { id: 'account.direct', defaultMessage: 'Direct message @{name}' },
unmute: { id: 'account.unmute', defaultMessage: 'Unmute @{name}' }, unmute: { id: 'account.unmute', defaultMessage: 'Unmute @{name}' },
block: { id: 'account.block', defaultMessage: 'Block @{name}' }, block: { id: 'account.block', defaultMessage: 'Block @{name}' },
unblock: { id: 'account.unblock', defaultMessage: 'Unblock @{name}' },
mute: { id: 'account.mute', defaultMessage: 'Mute @{name}' }, mute: { id: 'account.mute', defaultMessage: 'Mute @{name}' },
report: { id: 'account.report', defaultMessage: 'Report @{name}' }, report: { id: 'account.report', defaultMessage: 'Report @{name}' },
share: { id: 'account.share', defaultMessage: 'Share @{name}\'s profile' }, share: { id: 'account.share', defaultMessage: 'Share @{name}\'s profile' },
@ -131,7 +132,7 @@ class Header extends ImmutablePureComponent {
} }
menu.push({ text: intl.formatMessage(messages.add_or_remove_from_list), action: this.props.onAddToList }); menu.push({ text: intl.formatMessage(messages.add_or_remove_from_list), action: this.props.onAddToList });
menu.push({ text: intl.formatMessage(account.getIn(['relationship', 'endorsed']) ? messages.unendorse : messages.endorse), action: this.props.onEndorseToggle }); // menu.push({ text: intl.formatMessage(account.getIn(['relationship', 'endorsed']) ? messages.unendorse : messages.endorse), action: this.props.onEndorseToggle });
menu.push(null); menu.push(null);
} else if (version.software === 'Pleroma') { } else if (version.software === 'Pleroma') {
menu.push({ text: intl.formatMessage(messages.add_or_remove_from_list), action: this.props.onAddToList }); menu.push({ text: intl.formatMessage(messages.add_or_remove_from_list), action: this.props.onAddToList });
@ -221,12 +222,12 @@ class Header extends ImmutablePureComponent {
const menu = this.makeMenu(); const menu = this.makeMenu();
const headerMissing = (account.get('header').indexOf('/headers/original/missing.png') > -1); const headerMissing = (account.get('header').indexOf('/headers/original/missing.png') > -1);
const avatarSize = isSmallScreen ? 90 : 200; const avatarSize = isSmallScreen ? 90 : 200;
const deactivated = account.getIn(['pleroma', 'deactivated'], false);
return ( return (
<div className={classNames('account__header', { inactive: !!account.get('moved') })}> <div className={classNames('account__header', { inactive: !!account.get('moved') })}>
<div className={classNames('account__header__image', { 'account__header__image--none': headerMissing })}> <div className={classNames('account__header__image', { 'account__header__image--none': headerMissing || deactivated })}>
<div className='account__header__info'> <div className='account__header__info'>
{info} {info}
</div> </div>
@ -238,9 +239,10 @@ class Header extends ImmutablePureComponent {
<div className='account__header__extra'> <div className='account__header__extra'>
<div className='account__header__avatar'> <div className='account__header__avatar'>
<Avatar account={account} size={avatarSize} /> { !deactivated && <Avatar account={account} size={avatarSize} /> }
</div> </div>
{ !deactivated &&
<div className='account__header__extra__links'> <div className='account__header__extra__links'>
<NavLink isActive={this.isStatusesPageActive} activeClassName='active' to={`/@${account.get('acct')}`} title={intl.formatNumber(account.get('statuses_count'))}> <NavLink isActive={this.isStatusesPageActive} activeClassName='active' to={`/@${account.get('acct')}`} title={intl.formatNumber(account.get('statuses_count'))}>
@ -278,14 +280,16 @@ class Header extends ImmutablePureComponent {
</div> </div>
} }
</div> </div>
}
{ {
isSmallScreen && isSmallScreen &&
<div className='account-mobile-container'> <div className={classNames('account-mobile-container', { 'deactivated': deactivated })}>
<ProfileInfoPanel username={username} account={account} /> <ProfileInfoPanel username={username} account={account} />
</div> </div>
} }
{ me && !deactivated && account.get('id') !== me &&
<div className='account__header__extra__buttons'> <div className='account__header__extra__buttons'>
<ActionButton account={account} /> <ActionButton account={account} />
{(me && account.get('id') !== me) && {(me && account.get('id') !== me) &&
@ -299,6 +303,7 @@ class Header extends ImmutablePureComponent {
} }
{ me && <DropdownMenuContainer items={menu} icon='ellipsis-v' size={24} direction='right' /> } { me && <DropdownMenuContainer items={menu} icon='ellipsis-v' size={24} direction='right' /> }
</div> </div>
}
</div> </div>
</div> </div>

View File

@ -72,9 +72,9 @@ export default class Header extends ImmutablePureComponent {
this.props.onUnblockDomain(domain); this.props.onUnblockDomain(domain);
} }
handleEndorseToggle = () => { // handleEndorseToggle = () => {
this.props.onEndorseToggle(this.props.account); // this.props.onEndorseToggle(this.props.account);
} // }
handleAddToList = () => { handleAddToList = () => {
this.props.onAddToList(this.props.account); this.props.onAddToList(this.props.account);

View File

@ -8,8 +8,8 @@ import {
blockAccount, blockAccount,
unblockAccount, unblockAccount,
unmuteAccount, unmuteAccount,
pinAccount, // pinAccount,
unpinAccount, // unpinAccount,
} from '../../../actions/accounts'; } from '../../../actions/accounts';
import { import {
mentionCompose, mentionCompose,
@ -95,13 +95,13 @@ const mapDispatchToProps = (dispatch, { intl }) => ({
} }
}, },
onEndorseToggle(account) { // onEndorseToggle(account) {
if (account.getIn(['relationship', 'endorsed'])) { // if (account.getIn(['relationship', 'endorsed'])) {
dispatch(unpinAccount(account.get('id'))); // dispatch(unpinAccount(account.get('id')));
} else { // } else {
dispatch(pinAccount(account.get('id'))); // dispatch(pinAccount(account.get('id')));
} // }
}, // },
onReport(account) { onReport(account) {
dispatch(initReport(account)); dispatch(initReport(account));

View File

@ -95,12 +95,19 @@ class Upload extends ImmutablePureComponent {
const focusY = media.getIn(['meta', 'focus', 'y']); const focusY = media.getIn(['meta', 'focus', 'y']);
const x = ((focusX / 2) + .5) * 100; const x = ((focusX / 2) + .5) * 100;
const y = ((focusY / -2) + .5) * 100; const y = ((focusY / -2) + .5) * 100;
const mediaType = media.get('type');
return ( return (
<div className='compose-form__upload' tabIndex='0' onMouseEnter={this.handleMouseEnter} onMouseLeave={this.handleMouseLeave} onClick={this.handleClick} role='button'> <div className='compose-form__upload' tabIndex='0' onMouseEnter={this.handleMouseEnter} onMouseLeave={this.handleMouseLeave} onClick={this.handleClick} role='button'>
<Motion defaultStyle={{ scale: 0.8 }} style={{ scale: spring(1, { stiffness: 180, damping: 12 }) }}> <Motion defaultStyle={{ scale: 0.8 }} style={{ scale: spring(1, { stiffness: 180, damping: 12 }) }}>
{({ scale }) => ( {({ scale }) => (
<div className='compose-form__upload-thumbnail' style={{ transform: `scale(${scale})`, backgroundImage: `url(${media.get('preview_url')})`, backgroundPosition: `${x}% ${y}%` }}> <div
className={classNames('compose-form__upload-thumbnail', `${mediaType}`)}
style={{
transform: `scale(${scale})`,
backgroundImage: (mediaType !== 'video' && mediaType !== 'audio' ? `url(${media.get('preview_url')})` : null),
backgroundPosition: `${x}% ${y}%` }}
>
<div className={classNames('compose-form__upload__actions', { active })}> <div className={classNames('compose-form__upload__actions', { active })}>
<button className='icon-button' onClick={this.handleUndoClick}><Icon id='times' /> <FormattedMessage id='upload_form.undo' defaultMessage='Delete' /></button> <button className='icon-button' onClick={this.handleUndoClick}><Icon id='times' /> <FormattedMessage id='upload_form.undo' defaultMessage='Delete' /></button>
{this.props.features.focalPoint && media.get('type') === 'image' && <button className='icon-button' onClick={this.handleFocalPointClick}><Icon id='crosshairs' /> <FormattedMessage id='upload_form.focus' defaultMessage='Change preview' /></button>} {this.props.features.focalPoint && media.get('type') === 'image' && <button className='icon-button' onClick={this.handleFocalPointClick}><Icon id='crosshairs' /> <FormattedMessage id='upload_form.focus' defaultMessage='Change preview' /></button>}

View File

@ -51,10 +51,16 @@ export default class ConversationsList extends ImmutablePureComponent {
}, 300, { leading: true }) }, 300, { leading: true })
render() { render() {
const { conversations, onLoadMore, ...other } = this.props; const { conversations, isLoading, onLoadMore, ...other } = this.props;
return ( return (
<ScrollableList {...other} onLoadMore={onLoadMore && this.handleLoadOlder} scrollKey='direct' ref={this.setRef}> <ScrollableList
{...other}
onLoadMore={onLoadMore && this.handleLoadOlder}
scrollKey='direct' ref={this.setRef}
isLoading={isLoading}
showLoading={isLoading && conversations.size === 0}
>
{conversations.map(item => ( {conversations.map(item => (
<ConversationContainer <ConversationContainer
key={item.get('id')} key={item.get('id')}

View File

@ -0,0 +1,63 @@
import React from 'react';
import { connect } from 'react-redux';
import PropTypes from 'prop-types';
import Column from '../../components/column';
import ColumnHeader from '../../components/column_header';
import { mountConversations, unmountConversations, expandConversations } from '../../actions/conversations';
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
import { connectDirectStream } from '../../actions/streaming';
import ConversationsListContainer from './containers/conversations_list_container';
const messages = defineMessages({
title: { id: 'column.direct', defaultMessage: 'Direct messages' },
});
export default @connect()
@injectIntl
class ConversationsTimeline extends React.PureComponent {
static propTypes = {
dispatch: PropTypes.func.isRequired,
intl: PropTypes.object.isRequired,
hasUnread: PropTypes.bool,
};
componentDidMount() {
const { dispatch } = this.props;
dispatch(mountConversations());
dispatch(expandConversations());
this.disconnect = dispatch(connectDirectStream());
}
componentWillUnmount() {
this.props.dispatch(unmountConversations());
if (this.disconnect) {
this.disconnect();
this.disconnect = null;
}
}
handleLoadMore = maxId => {
this.props.dispatch(expandConversations({ maxId }));
}
render() {
const { intl, hasUnread } = this.props;
return (
<Column label={intl.formatMessage(messages.title)}>
<ColumnHeader icon='envelope' active={hasUnread} title={intl.formatMessage(messages.title)} />
<ConversationsListContainer
scrollKey='direct_timeline'
timelineId='direct'
onLoadMore={this.handleLoadMore}
emptyMessage={<FormattedMessage id='empty_column.direct' defaultMessage="You don't have any direct messages yet. When you send or receive one, it will show up here." />}
/>
</Column>
);
}
}

View File

@ -1,18 +1,22 @@
import React from 'react'; import React from 'react';
import { connect } from 'react-redux'; import { connect } from 'react-redux';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import StatusListContainer from '../ui/containers/status_list_container';
import Column from '../../components/column'; import Column from '../../components/column';
import ColumnHeader from '../../components/column_header'; import ColumnHeader from '../../components/column_header';
import { mountConversations, unmountConversations, expandConversations } from '../../actions/conversations'; import { expandDirectTimeline } from '../../actions/timelines';
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl'; import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
import { connectDirectStream } from '../../actions/streaming'; import { connectDirectStream } from '../../actions/streaming';
import ConversationsListContainer from './containers/conversations_list_container';
const messages = defineMessages({ const messages = defineMessages({
title: { id: 'column.direct', defaultMessage: 'Direct messages' }, title: { id: 'column.direct', defaultMessage: 'Direct messages' },
}); });
export default @connect() const mapStateToProps = state => ({
hasUnread: state.getIn(['timelines', 'direct', 'unread']) > 0,
});
export default @connect(mapStateToProps)
@injectIntl @injectIntl
class DirectTimeline extends React.PureComponent { class DirectTimeline extends React.PureComponent {
@ -25,14 +29,11 @@ class DirectTimeline extends React.PureComponent {
componentDidMount() { componentDidMount() {
const { dispatch } = this.props; const { dispatch } = this.props;
dispatch(mountConversations()); dispatch(expandDirectTimeline());
dispatch(expandConversations());
this.disconnect = dispatch(connectDirectStream()); this.disconnect = dispatch(connectDirectStream());
} }
componentWillUnmount() { componentWillUnmount() {
this.props.dispatch(unmountConversations());
if (this.disconnect) { if (this.disconnect) {
this.disconnect(); this.disconnect();
this.disconnect = null; this.disconnect = null;
@ -40,7 +41,7 @@ class DirectTimeline extends React.PureComponent {
} }
handleLoadMore = maxId => { handleLoadMore = maxId => {
this.props.dispatch(expandConversations({ maxId })); this.props.dispatch(expandDirectTimeline({ maxId }));
} }
render() { render() {
@ -48,9 +49,14 @@ class DirectTimeline extends React.PureComponent {
return ( return (
<Column label={intl.formatMessage(messages.title)}> <Column label={intl.formatMessage(messages.title)}>
<ColumnHeader icon='envelope' active={hasUnread} title={intl.formatMessage(messages.title)} /> <ColumnHeader
icon='envelope'
active={hasUnread}
title={intl.formatMessage(messages.title)}
onPin={this.handlePin}
/>
<ConversationsListContainer <StatusListContainer
scrollKey='direct_timeline' scrollKey='direct_timeline'
timelineId='direct' timelineId='direct'
onLoadMore={this.handleLoadMore} onLoadMore={this.handleLoadMore}

View File

@ -58,7 +58,6 @@ export default class ColumnSettings extends React.PureComponent {
<FormattedMessage id='notifications.column_settings.filter_bar.category' defaultMessage='Quick filter bar' /> <FormattedMessage id='notifications.column_settings.filter_bar.category' defaultMessage='Quick filter bar' />
</span> </span>
<div className='column-settings__row'> <div className='column-settings__row'>
<SettingToggle id='show-filter-bar' prefix='notifications' settings={settings} settingPath={['quickFilter', 'show']} onChange={onChange} label={filterShowStr} />
<SettingToggle id='show-filter-bar' prefix='notifications' settings={settings} settingPath={['quickFilter', 'show']} onChange={onChange} label={filterShowStr} /> <SettingToggle id='show-filter-bar' prefix='notifications' settings={settings} settingPath={['quickFilter', 'show']} onChange={onChange} label={filterShowStr} />
<SettingToggle id='show-filter-bar' prefix='notifications' settings={settings} settingPath={['quickFilter', 'advanced']} onChange={onChange} label={filterAdvancedStr} /> <SettingToggle id='show-filter-bar' prefix='notifications' settings={settings} settingPath={['quickFilter', 'advanced']} onChange={onChange} label={filterAdvancedStr} />
</div> </div>

View File

@ -121,9 +121,12 @@ export default class Card extends React.PureComponent {
renderVideo() { renderVideo() {
const { card } = this.props; const { card } = this.props;
const content = { __html: addAutoPlay(card.get('html')) }; const cardWidth = card.get('width', card.getIn(['pleroma', 'opengraph', 'width']));
const cardHeight = card.get('height', card.getIn(['pleroma', 'opengraph', 'height']));
const html = card.get('html', card.getIn(['pleroma', 'opengraph', 'html']));
const content = { __html: addAutoPlay(html) };
const { width } = this.state; const { width } = this.state;
const ratio = card.get('width') / card.get('height'); const ratio = cardWidth / cardHeight;
const height = width / ratio; const height = width / ratio;
return ( return (
@ -144,12 +147,14 @@ export default class Card extends React.PureComponent {
return null; return null;
} }
const cardWidth = card.get('width', card.getIn(['pleroma', 'opengraph', 'width']));
const cardHeight = card.get('height', card.getIn(['pleroma', 'opengraph', 'height']));
const provider = card.get('provider_name').length === 0 ? decodeIDNA(getHostname(card.get('url'))) : card.get('provider_name'); const provider = card.get('provider_name').length === 0 ? decodeIDNA(getHostname(card.get('url'))) : card.get('provider_name');
const horizontal = (!compact && card.get('width') > card.get('height') && (card.get('width') + 100 >= width)) || card.get('type') !== 'link' || embedded; const interactive = card.get('type') !== 'link' || card.getIn(['pleroma', 'opengraph', 'html']);
const interactive = card.get('type') !== 'link'; const horizontal = (!compact && cardWidth > cardHeight && (cardWidth + 100 >= width)) || interactive || embedded;
const className = classnames('status-card', { horizontal, compact, interactive }); const className = classnames('status-card', { horizontal, compact, interactive });
const title = interactive ? <a className='status-card__title' href={card.get('url')} title={card.get('title')} rel='noopener' target='_blank'><strong>{card.get('title')}</strong></a> : <strong className='status-card__title' title={card.get('title')}>{card.get('title')}</strong>; const title = interactive ? <a className='status-card__title' href={card.get('url')} title={card.get('title')} rel='noopener' target='_blank'><strong>{card.get('title')}</strong></a> : <strong className='status-card__title' title={card.get('title')}>{card.get('title')}</strong>;
const ratio = card.get('width') / card.get('height'); const ratio = cardWidth / cardHeight;
const height = (compact && !embedded) ? (width / (16 / 9)) : (width / ratio); const height = (compact && !embedded) ? (width / (16 / 9)) : (width / ratio);
const description = ( const description = (
@ -161,7 +166,8 @@ export default class Card extends React.PureComponent {
); );
let embed = ''; let embed = '';
let thumbnail = <div style={{ backgroundImage: `url(${card.get('image')})`, width: horizontal ? width : null, height: horizontal ? height : null }} className='status-card__image-image' />; const imageUrl = card.get('image') || card.getIn(['pleroma', 'opengraph', 'thumbnail_url']);
let thumbnail = <div style={{ backgroundImage: `url(${imageUrl})`, width: horizontal ? width : null, height: horizontal ? height : null }} className='status-card__image-image' />;
if (interactive) { if (interactive) {
if (embedded) { if (embedded) {

View File

@ -35,9 +35,9 @@ const mapDispatchToProps = (dispatch) => ({
const LinkFooter = ({ onOpenHotkeys, account, onClickLogOut }) => ( const LinkFooter = ({ onOpenHotkeys, account, onClickLogOut }) => (
<div className='getting-started__footer'> <div className='getting-started__footer'>
<ul> <ul>
{account && <li><a href='#' onClick={onOpenHotkeys}><FormattedMessage id='navigation_bar.keyboard_shortcuts' defaultMessage='Hotkeys' /></a> · </li>} {account && <li><a href='#' onClick={onOpenHotkeys}><FormattedMessage id='navigation_bar.keyboard_shortcuts' defaultMessage='Hotkeys' /></a></li>}
{/* {account && <li><a href='/auth/edit'><FormattedMessage id='getting_started.security' defaultMessage='Security' /></a> · </li>} */} {/* {account && <li><a href='/auth/edit'><FormattedMessage id='getting_started.security' defaultMessage='Security' /></a> · </li>} */}
<li><a href='/about'><FormattedMessage id='navigation_bar.info' defaultMessage='About this server' /></a> · </li> <li><a href='/about'><FormattedMessage id='navigation_bar.info' defaultMessage='About this server' /></a></li>
{/* <li><a href='/settings/applications'><FormattedMessage id='getting_started.developers' defaultMessage='Developers' /></a> · </li> */} {/* <li><a href='/settings/applications'><FormattedMessage id='getting_started.developers' defaultMessage='Developers' /></a> · </li> */}
{account && <li><Link to='/auth/sign_out' onClick={onClickLogOut}><FormattedMessage id='navigation_bar.logout' defaultMessage='Logout' /></Link></li>} {account && <li><Link to='/auth/sign_out' onClick={onClickLogOut}><FormattedMessage id='navigation_bar.logout' defaultMessage='Logout' /></Link></li>}
</ul> </ul>

View File

@ -11,10 +11,12 @@ import VerificationBadge from 'soapbox/components/verification_badge';
import Badge from 'soapbox/components/badge'; import Badge from 'soapbox/components/badge';
import { List as ImmutableList } from 'immutable'; import { List as ImmutableList } from 'immutable';
import { acctFull, isAdmin, isModerator } from 'soapbox/utils/accounts'; import { acctFull, isAdmin, isModerator } from 'soapbox/utils/accounts';
import classNames from 'classnames';
const messages = defineMessages({ const messages = defineMessages({
linkVerifiedOn: { id: 'account.link_verified_on', defaultMessage: 'Ownership of this link was checked on {date}' }, linkVerifiedOn: { id: 'account.link_verified_on', defaultMessage: 'Ownership of this link was checked on {date}' },
account_locked: { id: 'account.locked_info', defaultMessage: 'This account privacy status is set to locked. The owner manually reviews who can follow them.' }, account_locked: { id: 'account.locked_info', defaultMessage: 'This account privacy status is set to locked. The owner manually reviews who can follow them.' },
deactivated: { id: 'account.deactivated', defaultMessage: 'Deactivated' },
}); });
const dateFormatOptions = { const dateFormatOptions = {
@ -57,23 +59,25 @@ class ProfileInfoPanel extends ImmutablePureComponent {
const badge = account.get('bot') ? (<div className='account-role bot'><FormattedMessage id='account.badges.bot' defaultMessage='Bot' /></div>) : null; const badge = account.get('bot') ? (<div className='account-role bot'><FormattedMessage id='account.badges.bot' defaultMessage='Bot' /></div>) : null;
const content = { __html: account.get('note_emojified') }; const content = { __html: account.get('note_emojified') };
const fields = account.get('fields'); const fields = account.get('fields');
const displayNameHtml = { __html: account.get('display_name_html') }; const deactivated = account.getIn(['pleroma', 'deactivated'], false);
const displayNameHtml = deactivated ? { __html: intl.formatMessage(messages.deactivated) } : { __html: account.get('display_name_html') };
const memberSinceDate = intl.formatDate(account.get('created_at'), { month: 'long', year: 'numeric' }); const memberSinceDate = intl.formatDate(account.get('created_at'), { month: 'long', year: 'numeric' });
const verified = account.get('pleroma').get('tags').includes('verified'); const verified = account.getIn(['pleroma', 'tags'], ImmutableList()).includes('verified');
return ( return (
<div className='profile-info-panel'> <div className={classNames('profile-info-panel', { 'deactivated': deactivated })} >
<div className='profile-info-panel__content'> <div className='profile-info-panel__content'>
<div className='profile-info-panel-content__name'> <div className='profile-info-panel-content__name'>
<h1> <h1>
<span dangerouslySetInnerHTML={displayNameHtml} /> <span dangerouslySetInnerHTML={displayNameHtml} className='profile-info-panel__name-content' />
{verified && <VerificationBadge />} {verified && <VerificationBadge />}
{badge} {badge}
<small>@{acctFull(account)} {lockedIcon}</small> { !deactivated && <small>@{acctFull(account)} {lockedIcon}</small> }
</h1> </h1>
</div> </div>
{ !deactivated &&
<div className='profile-info-panel-content__badges'> <div className='profile-info-panel-content__badges'>
{isAdmin(account) && <Badge slug='admin' title='Admin' />} {isAdmin(account) && <Badge slug='admin' title='Admin' />}
{isModerator(account) && <Badge slug='moderator' title='Moderator' />} {isModerator(account) && <Badge slug='moderator' title='Moderator' />}
@ -87,8 +91,17 @@ class ProfileInfoPanel extends ImmutablePureComponent {
/> />
</div>} </div>}
</div> </div>
}
{ { deactivated &&
<div className='profile-info-panel-content__deactivated'>
<FormattedMessage
id='account.deactivated_description' defaultMessage='This account has been deactivated.'
/>
</div>
}
{ !deactivated &&
(account.get('note').length > 0 && account.get('note') !== '<p></p>') && (account.get('note').length > 0 && account.get('note') !== '<p></p>') &&
<div className='profile-info-panel-content__bio' dangerouslySetInnerHTML={content} /> <div className='profile-info-panel-content__bio' dangerouslySetInnerHTML={content} />
} }

View File

@ -0,0 +1,85 @@
import React from 'react';
import PropTypes from 'prop-types';
import { FormattedMessage, injectIntl } from 'react-intl';
import { connect } from 'react-redux';
import { getAccountGallery } from 'soapbox/selectors';
import { openModal } from 'soapbox/actions/modal';
import { expandAccountMediaTimeline } from '../../../actions/timelines';
import ImmutablePureComponent from 'react-immutable-pure-component';
import ImmutablePropTypes from 'react-immutable-proptypes';
import MediaItem from '../../account_gallery/components/media_item';
import Icon from 'soapbox/components/icon';
class ProfileMediaPanel extends ImmutablePureComponent {
static propTypes = {
account: ImmutablePropTypes.map,
attachments: ImmutablePropTypes.list,
dispatch: PropTypes.func.isRequired,
};
handleOpenMedia = attachment => {
if (attachment.get('type') === 'video') {
this.props.dispatch(openModal('VIDEO', { media: attachment, status: attachment.get('status') }));
} else {
const media = attachment.getIn(['status', 'media_attachments']);
const index = media.findIndex(x => x.get('id') === attachment.get('id'));
this.props.dispatch(openModal('MEDIA', { media, index, status: attachment.get('status'), account: attachment.get('account') }));
}
}
componentDidMount() {
const { account } = this.props;
const accountId = account.get('id');
this.props.dispatch(expandAccountMediaTimeline(accountId));
}
componentDidUpdate() {
const { account } = this.props;
const accountId = account.get('id');
this.props.dispatch(expandAccountMediaTimeline(accountId));
}
render() {
const { attachments, account } = this.props;
const publicAttachments = attachments.filter(attachment => attachment.getIn(['status', 'visibility']) === 'public');
const nineAttachments = publicAttachments.slice(0, 9);
return (
<div className='media-panel'>
<div className='media-panel-header'>
<Icon id='camera' className='media-panel-header__icon' />
<span className='media-panel-header__label'>
<FormattedMessage id='media_panel.title' defaultMessage='Media' />
</span>
</div>
{account &&
<div className='media-panel__content'>
<div className='media-panel__list'>
{!nineAttachments.isEmpty() && nineAttachments.map((attachment, index) => (
<MediaItem
key={`${attachment.getIn(['status', 'id'])}+${attachment.get('id')}`}
attachment={attachment}
displayWidth={255}
onOpenMedia={this.handleOpenMedia}
/>
))}
</div>
</div>
}
</div>
);
};
};
const mapStateToProps = (state, { account }) => ({
attachments: getAccountGallery(state, account.get('id')),
});
export default injectIntl(
connect(mapStateToProps, null, null, {
forwardRef: true,
}
)(ProfileMediaPanel));

View File

@ -6,6 +6,7 @@ import { debounce } from 'lodash';
import { dequeueTimeline } from 'soapbox/actions/timelines'; import { dequeueTimeline } from 'soapbox/actions/timelines';
import { scrollTopTimeline } from '../../../actions/timelines'; import { scrollTopTimeline } from '../../../actions/timelines';
import { getSettings } from 'soapbox/actions/settings'; import { getSettings } from 'soapbox/actions/settings';
import { shouldFilter } from 'soapbox/utils/timelines';
const makeGetStatusIds = () => createSelector([ const makeGetStatusIds = () => createSelector([
(state, { type }) => getSettings(state).get(type, ImmutableMap()), (state, { type }) => getSettings(state).get(type, ImmutableMap()),
@ -14,24 +15,9 @@ const makeGetStatusIds = () => createSelector([
(state) => state.get('me'), (state) => state.get('me'),
], (columnSettings, statusIds, statuses, me) => { ], (columnSettings, statusIds, statuses, me) => {
return statusIds.filter(id => { return statusIds.filter(id => {
if (id === null) return true; const status = statuses.get(id);
if (!status) return true;
const statusForId = statuses.get(id); return !shouldFilter(status, columnSettings);
let showStatus = true;
if (columnSettings.getIn(['shows', 'reblog']) === false) {
showStatus = showStatus && statusForId.get('reblog') === null;
}
if (columnSettings.getIn(['shows', 'reply']) === false) {
showStatus = showStatus && (statusForId.get('in_reply_to_id') === null);
}
if (columnSettings.getIn(['shows', 'direct']) === false) {
showStatus = showStatus && (statusForId.get('visibility') !== 'direct');
}
return showStatus;
}); });
}); });

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "ابلِغ عن @{name}", "account.report": "ابلِغ عن @{name}",
"account.requested": "في انتظار الموافقة. اضْغَطْ/ي لإلغاء طلب المتابعة", "account.requested": "في انتظار الموافقة. اضْغَطْ/ي لإلغاء طلب المتابعة",
"account.requested_small": "Awaiting approval",
"account.share": "شارك ملف تعريف @{name}", "account.share": "شارك ملف تعريف @{name}",
"account.show_reblogs": "اعرض ترقيات @{name}", "account.show_reblogs": "اعرض ترقيات @{name}",
"account.unblock": "إلغاء الحظر عن @{name}", "account.unblock": "إلغاء الحظر عن @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "لقد وقع هناك خطأ أثناء عملية تحميل هذا العنصر.", "bundle_modal_error.message": "لقد وقع هناك خطأ أثناء عملية تحميل هذا العنصر.",
"bundle_modal_error.retry": "إعادة المحاولة", "bundle_modal_error.retry": "إعادة المحاولة",
"column.blocks": "الحسابات المحجوبة", "column.blocks": "الحسابات المحجوبة",
"column.bookmarks": "Bookmarks",
"column.community": "الخيط العام المحلي", "column.community": "الخيط العام المحلي",
"column.direct": "الرسائل المباشرة", "column.direct": "الرسائل المباشرة",
"column.domain_blocks": "النطاقات المخفية", "column.domain_blocks": "النطاقات المخفية",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "طلبات المتابعة", "column.follow_requests": "طلبات المتابعة",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "الرئيسية", "column.home": "الرئيسية",
"column.lists": "القوائم", "column.lists": "القوائم",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "الحسابات المكتومة", "column.mutes": "الحسابات المكتومة",
"column.notifications": "الإخطارات", "column.notifications": "الإخطارات",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"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.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "فيمَ تفكّر؟", "compose_form.placeholder": "فيمَ تفكّر؟",
"compose_form.poll.add_option": "إضافة خيار", "compose_form.poll.add_option": "إضافة خيار",
"compose_form.poll.duration": "مدة استطلاع الرأي", "compose_form.poll.duration": "مدة استطلاع الرأي",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "ليس هناك تبويقات!", "empty_column.account_timeline": "ليس هناك تبويقات!",
"empty_column.account_unavailable": "الملف التعريفي غير متوفر", "empty_column.account_unavailable": "الملف التعريفي غير متوفر",
"empty_column.blocks": "لم تقم بحظر أي مستخدِم بعد.", "empty_column.blocks": "لم تقم بحظر أي مستخدِم بعد.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "الخط العام المحلي فارغ. أكتب شيئا ما للعامة كبداية!", "empty_column.community": "الخط العام المحلي فارغ. أكتب شيئا ما للعامة كبداية!",
"empty_column.direct": "لم تتلق أية رسالة خاصة مباشِرة بعد. سوف يتم عرض الرسائل المباشرة هنا إن قمت بإرسال واحدة أو تلقيت البعض منها.", "empty_column.direct": "لم تتلق أية رسالة خاصة مباشِرة بعد. سوف يتم عرض الرسائل المباشرة هنا إن قمت بإرسال واحدة أو تلقيت البعض منها.",
"empty_column.domain_blocks": "ليس هناك نطاقات مخفية بعد.", "empty_column.domain_blocks": "ليس هناك نطاقات مخفية بعد.",
@ -165,8 +193,19 @@
"empty_column.mutes": "لم تقم بكتم أي مستخدم بعد.", "empty_column.mutes": "لم تقم بكتم أي مستخدم بعد.",
"empty_column.notifications": "لم تتلق أي إشعار بعدُ. تفاعل مع المستخدمين الآخرين لإنشاء محادثة.", "empty_column.notifications": "لم تتلق أي إشعار بعدُ. تفاعل مع المستخدمين الآخرين لإنشاء محادثة.",
"empty_column.public": "لا يوجد أي شيء هنا! قم بنشر شيء ما للعامة، أو اتبع المستخدمين الآخرين المتواجدين على الخوادم الأخرى لملء خيط المحادثات", "empty_column.public": "لا يوجد أي شيء هنا! قم بنشر شيء ما للعامة، أو اتبع المستخدمين الآخرين المتواجدين على الخوادم الأخرى لملء خيط المحادثات",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "ترخيص", "follow_request.authorize": "ترخيص",
"follow_request.reject": "رفض", "follow_request.reject": "رفض",
"getting_started.heading": "استعدّ للبدء", "getting_started.heading": "استعدّ للبدء",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "و {additional}", "hashtag.column_header.tag_mode.all": "و {additional}",
"hashtag.column_header.tag_mode.any": "أو {additional}", "hashtag.column_header.tag_mode.any": "أو {additional}",
"hashtag.column_header.tag_mode.none": "بدون {additional}", "hashtag.column_header.tag_mode.none": "بدون {additional}",
"home.column_settings.basic": "الأساسية", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "عرض الترقيات", "home.column_settings.show_reblogs": "عرض الترقيات",
"home.column_settings.show_replies": "اعرض الردود", "home.column_settings.show_replies": "اعرض الردود",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "قوائمك", "lists.subheading": "قوائمك",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "تحميل...", "loading_indicator.label": "تحميل...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "عرض / إخفاء", "media_gallery.toggle_visible": "عرض / إخفاء",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "غير موجود", "missing_indicator.label": "غير موجود",
"missing_indicator.sublabel": "تعذر العثور على هذا المورد", "missing_indicator.sublabel": "تعذر العثور على هذا المورد",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "هل تود إخفاء الإخطارات القادمة من هذا المستخدم ؟", "mute_modal.hide_notifications": "هل تود إخفاء الإخطارات القادمة من هذا المستخدم ؟",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "الحسابات المحجوبة", "navigation_bar.blocks": "الحسابات المحجوبة",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "الخيط العام المحلي", "navigation_bar.community_timeline": "الخيط العام المحلي",
"navigation_bar.compose": "تحرير تبويق جديد", "navigation_bar.compose": "تحرير تبويق جديد",
"navigation_bar.direct": "الرسائل المباشِرة", "navigation_bar.direct": "الرسائل المباشِرة",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "الترقيّات:", "notifications.column_settings.reblog": "الترقيّات:",
"notifications.column_settings.show": "اعرِضها في عمود", "notifications.column_settings.show": "اعرِضها في عمود",
"notifications.column_settings.sound": "أصدر صوتا", "notifications.column_settings.sound": "أصدر صوتا",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "الكل", "notifications.filter.all": "الكل",
"notifications.filter.boosts": "الترقيات", "notifications.filter.boosts": "الترقيات",
"notifications.filter.favourites": "المفضلة", "notifications.filter.favourites": "المفضلة",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}ي", "relative_time.days": "{number}ي",
@ -379,8 +440,12 @@
"search_results.statuses": "التبويقات", "search_results.statuses": "التبويقات",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {result} و {results}}", "search_results.total": "{count, number} {count, plural, one {result} و {results}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "افتح الواجهة الإدارية لـ @{name}", "status.admin_account": "افتح الواجهة الإدارية لـ @{name}",
"status.admin_status": "افتح هذا المنشور على واجهة الإشراف", "status.admin_status": "افتح هذا المنشور على واجهة الإشراف",
"status.block": "احجب @{name}", "status.block": "احجب @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "إلغاء الترقية", "status.cancel_reblog_private": "إلغاء الترقية",
"status.cannot_reblog": "تعذرت ترقية هذا المنشور", "status.cannot_reblog": "تعذرت ترقية هذا المنشور",
"status.copy": "نسخ رابط المنشور", "status.copy": "نسخ رابط المنشور",
@ -439,6 +510,7 @@
"status.show_more": "أظهر المزيد", "status.show_more": "أظهر المزيد",
"status.show_more_all": "توسيع الكل", "status.show_more_all": "توسيع الكل",
"status.show_thread": "الكشف عن المحادثة", "status.show_thread": "الكشف عن المحادثة",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "فك الكتم عن المحادثة", "status.unmute_conversation": "فك الكتم عن المحادثة",
"status.unpin": "فك التدبيس من الصفحة التعريفية", "status.unpin": "فك التدبيس من الصفحة التعريفية",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Report @{name}", "account.report": "Report @{name}",
"account.requested": "Awaiting approval. Click to cancel follow request", "account.requested": "Awaiting approval. Click to cancel follow request",
"account.requested_small": "Awaiting approval",
"account.share": "Share @{name}'s profile", "account.share": "Share @{name}'s profile",
"account.show_reblogs": "Show reposts from @{name}", "account.show_reblogs": "Show reposts from @{name}",
"account.unblock": "Desbloquiar a @{name}", "account.unblock": "Desbloquiar a @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Something went wrong while loading this component.", "bundle_modal_error.message": "Something went wrong while loading this component.",
"bundle_modal_error.retry": "Try again", "bundle_modal_error.retry": "Try again",
"column.blocks": "Usuarios bloquiaos", "column.blocks": "Usuarios bloquiaos",
"column.bookmarks": "Bookmarks",
"column.community": "Llinia temporal llocal", "column.community": "Llinia temporal llocal",
"column.direct": "Mensaxes direutos", "column.direct": "Mensaxes direutos",
"column.domain_blocks": "Dominios anubríos", "column.domain_blocks": "Dominios anubríos",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Solicitúes de siguimientu", "column.follow_requests": "Solicitúes de siguimientu",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Aniciu", "column.home": "Aniciu",
"column.lists": "Llistes", "column.lists": "Llistes",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Usuarios silenciaos", "column.mutes": "Usuarios silenciaos",
"column.notifications": "Avisos", "column.notifications": "Avisos",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "This post won't be listed under any hashtag as it is unlisted. Only public posts can be searched by hashtag.", "compose_form.hashtag_warning": "This post won't be listed under any hashtag as it is unlisted. Only public posts 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": "Your account is not {locked}. Anyone can follow you to view your follower-only posts.",
"compose_form.lock_disclaimer.lock": "locked", "compose_form.lock_disclaimer.lock": "locked",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "¿En qué pienses?", "compose_form.placeholder": "¿En qué pienses?",
"compose_form.poll.add_option": "Add a choice", "compose_form.poll.add_option": "Add a choice",
"compose_form.poll.duration": "Poll duration", "compose_form.poll.duration": "Poll duration",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "No posts here!", "empty_column.account_timeline": "No posts here!",
"empty_column.account_unavailable": "Profile unavailable", "empty_column.account_unavailable": "Profile unavailable",
"empty_column.blocks": "Entá nun bloquiesti a dengún usuariu.", "empty_column.blocks": "Entá nun bloquiesti a dengún usuariu.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!", "empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!",
"empty_column.direct": "Entá nun tienes dengún mensaxe direutu. Cuando unvies o recibas dalgún, va apaecer equí.", "empty_column.direct": "Entá nun tienes dengún mensaxe direutu. Cuando unvies o recibas dalgún, va apaecer equí.",
"empty_column.domain_blocks": "Entá nun hai dominios anubríos.", "empty_column.domain_blocks": "Entá nun hai dominios anubríos.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Entá nun silenciesti a dengún usuariu.", "empty_column.mutes": "Entá nun silenciesti a dengún usuariu.",
"empty_column.notifications": "Entá nun tienes dengún avisu. Interactua con otros p'aniciar la conversación.", "empty_column.notifications": "Entá nun tienes dengún avisu. Interactua con otros p'aniciar la conversación.",
"empty_column.public": "There is nothing here! Write something publicly, or manually follow users from other instances to fill it up", "empty_column.public": "There is nothing here! Write something publicly, or manually follow users from other instances to fill it up",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Autorizar", "follow_request.authorize": "Autorizar",
"follow_request.reject": "Refugar", "follow_request.reject": "Refugar",
"getting_started.heading": "Entamu", "getting_started.heading": "Entamu",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "and {additional}", "hashtag.column_header.tag_mode.all": "and {additional}",
"hashtag.column_header.tag_mode.any": "or {additional}", "hashtag.column_header.tag_mode.any": "or {additional}",
"hashtag.column_header.tag_mode.none": "without {additional}", "hashtag.column_header.tag_mode.none": "without {additional}",
"home.column_settings.basic": "Basic", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "Amosar toots compartíos", "home.column_settings.show_reblogs": "Amosar toots compartíos",
"home.column_settings.show_replies": "Amosar rempuestes", "home.column_settings.show_replies": "Amosar rempuestes",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Les tos llistes", "lists.subheading": "Les tos llistes",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Cargando...", "loading_indicator.label": "Cargando...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Toggle visibility", "media_gallery.toggle_visible": "Toggle visibility",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Nun s'alcontró", "missing_indicator.label": "Nun s'alcontró",
"missing_indicator.sublabel": "Esti recursu nun pudo alcontrase", "missing_indicator.sublabel": "Esti recursu nun pudo alcontrase",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Hide notifications from this user?", "mute_modal.hide_notifications": "Hide notifications from this user?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Usuarios bloquiaos", "navigation_bar.blocks": "Usuarios bloquiaos",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Llinia temporal llocal", "navigation_bar.community_timeline": "Llinia temporal llocal",
"navigation_bar.compose": "Compose new post", "navigation_bar.compose": "Compose new post",
"navigation_bar.direct": "Mensaxes direutos", "navigation_bar.direct": "Mensaxes direutos",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Toots compartíos:", "notifications.column_settings.reblog": "Toots compartíos:",
"notifications.column_settings.show": "Amosar en columna", "notifications.column_settings.show": "Amosar en columna",
"notifications.column_settings.sound": "Reproducir soníu", "notifications.column_settings.sound": "Reproducir soníu",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "All", "notifications.filter.all": "All",
"notifications.filter.boosts": "Reposts", "notifications.filter.boosts": "Reposts",
"notifications.filter.favourites": "Favorites", "notifications.filter.favourites": "Favorites",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
@ -379,8 +440,12 @@
"search_results.statuses": "Posts", "search_results.statuses": "Posts",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {result} other {results}}", "search_results.total": "{count, number} {count, plural, one {result} other {results}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Open moderation interface for @{name}", "status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface", "status.admin_status": "Open this post in the moderation interface",
"status.block": "Bloquiar a @{name}", "status.block": "Bloquiar a @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Dexar de compartir", "status.cancel_reblog_private": "Dexar de compartir",
"status.cannot_reblog": "Esti artículu nun pue compartise", "status.cannot_reblog": "Esti artículu nun pue compartise",
"status.copy": "Copy link to post", "status.copy": "Copy link to post",
@ -439,6 +510,7 @@
"status.show_more": "Amosar más", "status.show_more": "Amosar más",
"status.show_more_all": "Show more for all", "status.show_more_all": "Show more for all",
"status.show_thread": "Show thread", "status.show_thread": "Show thread",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Unmute conversation", "status.unmute_conversation": "Unmute conversation",
"status.unpin": "Desfixar del perfil", "status.unpin": "Desfixar del perfil",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Report @{name}", "account.report": "Report @{name}",
"account.requested": "В очакване на одобрение", "account.requested": "В очакване на одобрение",
"account.requested_small": "Awaiting approval",
"account.share": "Share @{name}'s profile", "account.share": "Share @{name}'s profile",
"account.show_reblogs": "Show reposts from @{name}", "account.show_reblogs": "Show reposts from @{name}",
"account.unblock": "Не блокирай", "account.unblock": "Не блокирай",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Something went wrong while loading this component.", "bundle_modal_error.message": "Something went wrong while loading this component.",
"bundle_modal_error.retry": "Try again", "bundle_modal_error.retry": "Try again",
"column.blocks": "Blocked users", "column.blocks": "Blocked users",
"column.bookmarks": "Bookmarks",
"column.community": "Local timeline", "column.community": "Local timeline",
"column.direct": "Direct messages", "column.direct": "Direct messages",
"column.domain_blocks": "Hidden domains", "column.domain_blocks": "Hidden domains",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Follow requests", "column.follow_requests": "Follow requests",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Начало", "column.home": "Начало",
"column.lists": "Списъци", "column.lists": "Списъци",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Muted users", "column.mutes": "Muted users",
"column.notifications": "Известия", "column.notifications": "Известия",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "This post won't be listed under any hashtag as it is unlisted. Only public posts can be searched by hashtag.", "compose_form.hashtag_warning": "This post won't be listed under any hashtag as it is unlisted. Only public posts 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": "Your account is not {locked}. Anyone can follow you to view your follower-only posts.",
"compose_form.lock_disclaimer.lock": "locked", "compose_form.lock_disclaimer.lock": "locked",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "Какво си мислиш?", "compose_form.placeholder": "Какво си мислиш?",
"compose_form.poll.add_option": "Add a choice", "compose_form.poll.add_option": "Add a choice",
"compose_form.poll.duration": "Poll duration", "compose_form.poll.duration": "Poll duration",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "No posts here!", "empty_column.account_timeline": "No posts here!",
"empty_column.account_unavailable": "Profile unavailable", "empty_column.account_unavailable": "Profile unavailable",
"empty_column.blocks": "You haven't blocked any users yet.", "empty_column.blocks": "You haven't blocked any users yet.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!", "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.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.domain_blocks": "There are no hidden domains yet.",
@ -165,8 +193,19 @@
"empty_column.mutes": "You haven't muted any users yet.", "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.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", "empty_column.public": "There is nothing here! Write something publicly, or manually follow users from other instances to fill it up",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Authorize", "follow_request.authorize": "Authorize",
"follow_request.reject": "Reject", "follow_request.reject": "Reject",
"getting_started.heading": "Първи стъпки", "getting_started.heading": "Първи стъпки",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "and {additional}", "hashtag.column_header.tag_mode.all": "and {additional}",
"hashtag.column_header.tag_mode.any": "or {additional}", "hashtag.column_header.tag_mode.any": "or {additional}",
"hashtag.column_header.tag_mode.none": "without {additional}", "hashtag.column_header.tag_mode.none": "without {additional}",
"home.column_settings.basic": "Basic", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "Show reposts", "home.column_settings.show_reblogs": "Show reposts",
"home.column_settings.show_replies": "Show replies", "home.column_settings.show_replies": "Show replies",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Your lists", "lists.subheading": "Your lists",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Зареждане...", "loading_indicator.label": "Зареждане...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Toggle visibility", "media_gallery.toggle_visible": "Toggle visibility",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Not found", "missing_indicator.label": "Not found",
"missing_indicator.sublabel": "This resource could not be found", "missing_indicator.sublabel": "This resource could not be found",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Hide notifications from this user?", "mute_modal.hide_notifications": "Hide notifications from this user?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Blocked users", "navigation_bar.blocks": "Blocked users",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Local timeline", "navigation_bar.community_timeline": "Local timeline",
"navigation_bar.compose": "Compose new post", "navigation_bar.compose": "Compose new post",
"navigation_bar.direct": "Direct messages", "navigation_bar.direct": "Direct messages",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Споделяния:", "notifications.column_settings.reblog": "Споделяния:",
"notifications.column_settings.show": "Покажи в колона", "notifications.column_settings.show": "Покажи в колона",
"notifications.column_settings.sound": "Play sound", "notifications.column_settings.sound": "Play sound",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "All", "notifications.filter.all": "All",
"notifications.filter.boosts": "Reposts", "notifications.filter.boosts": "Reposts",
"notifications.filter.favourites": "Favorites", "notifications.filter.favourites": "Favorites",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
@ -379,8 +440,12 @@
"search_results.statuses": "Posts", "search_results.statuses": "Posts",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {result} other {results}}", "search_results.total": "{count, number} {count, plural, one {result} other {results}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Open moderation interface for @{name}", "status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface", "status.admin_status": "Open this post in the moderation interface",
"status.block": "Block @{name}", "status.block": "Block @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Un-repost", "status.cancel_reblog_private": "Un-repost",
"status.cannot_reblog": "This post cannot be reposted", "status.cannot_reblog": "This post cannot be reposted",
"status.copy": "Copy link to post", "status.copy": "Copy link to post",
@ -439,6 +510,7 @@
"status.show_more": "Show more", "status.show_more": "Show more",
"status.show_more_all": "Show more for all", "status.show_more_all": "Show more for all",
"status.show_thread": "Show thread", "status.show_thread": "Show thread",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Unmute conversation", "status.unmute_conversation": "Unmute conversation",
"status.unpin": "Unpin from profile", "status.unpin": "Unpin from profile",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "@{name} কে রিপোর্ট করতে", "account.report": "@{name} কে রিপোর্ট করতে",
"account.requested": "অনুমতির অপেক্ষায় আছে। অনুসরণ করার অনুরোধ বাতিল করতে এখানে ক্লিক করুন", "account.requested": "অনুমতির অপেক্ষায় আছে। অনুসরণ করার অনুরোধ বাতিল করতে এখানে ক্লিক করুন",
"account.requested_small": "Awaiting approval",
"account.share": "@{name}র পাতা অন্যদের দেখান", "account.share": "@{name}র পাতা অন্যদের দেখান",
"account.show_reblogs": "@{name}র সমর্থনগুলো দেখুন", "account.show_reblogs": "@{name}র সমর্থনগুলো দেখুন",
"account.unblock": "@{name}র কার্যকলাপ আবার দেখুন", "account.unblock": "@{name}র কার্যকলাপ আবার দেখুন",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "এই অংশটি দেখাতে যেয়ে কোনো সমস্যা হয়েছে।", "bundle_modal_error.message": "এই অংশটি দেখাতে যেয়ে কোনো সমস্যা হয়েছে।",
"bundle_modal_error.retry": "আবার চেষ্টা করুন", "bundle_modal_error.retry": "আবার চেষ্টা করুন",
"column.blocks": "যাদের বন্ধ করে রাখা হয়েছে", "column.blocks": "যাদের বন্ধ করে রাখা হয়েছে",
"column.bookmarks": "Bookmarks",
"column.community": "স্থানীয় সময়সারি", "column.community": "স্থানীয় সময়সারি",
"column.direct": "সরাসরি লেখা", "column.direct": "সরাসরি লেখা",
"column.domain_blocks": "সরিয়ে ফেলা ওয়েবসাইট", "column.domain_blocks": "সরিয়ে ফেলা ওয়েবসাইট",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "অনুসরণের অনুমতি চেয়েছে যারা", "column.follow_requests": "অনুসরণের অনুমতি চেয়েছে যারা",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "বাড়ি", "column.home": "বাড়ি",
"column.lists": "তালিকাগুলো", "column.lists": "তালিকাগুলো",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "যাদের কার্যক্রম দেখা বন্ধ আছে", "column.mutes": "যাদের কার্যক্রম দেখা বন্ধ আছে",
"column.notifications": "প্রজ্ঞাপনগুলো", "column.notifications": "প্রজ্ঞাপনগুলো",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "কোনো হ্যাশট্যাগের ভেতরে এই টুটটি থাকবেনা কারণ এটি তালিকাবহির্ভূত। শুধুমাত্র প্রকাশ্য ঠোটগুলো হ্যাশট্যাগের ভেতরে খুঁজে পাওয়া যাবে।", "compose_form.hashtag_warning": "কোনো হ্যাশট্যাগের ভেতরে এই টুটটি থাকবেনা কারণ এটি তালিকাবহির্ভূত। শুধুমাত্র প্রকাশ্য ঠোটগুলো হ্যাশট্যাগের ভেতরে খুঁজে পাওয়া যাবে।",
"compose_form.lock_disclaimer": "আপনার নিবন্ধনে তালা দেওয়া নেই, যে কেও আপনাকে অনুসরণ করতে পারবে এবং অনুশারকদের জন্য লেখা দেখতে পারবে।", "compose_form.lock_disclaimer": "আপনার নিবন্ধনে তালা দেওয়া নেই, যে কেও আপনাকে অনুসরণ করতে পারবে এবং অনুশারকদের জন্য লেখা দেখতে পারবে।",
"compose_form.lock_disclaimer.lock": "তালা দেওয়া", "compose_form.lock_disclaimer.lock": "তালা দেওয়া",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "আপনি কি ভাবছেন ?", "compose_form.placeholder": "আপনি কি ভাবছেন ?",
"compose_form.poll.add_option": "আরেকটি বিকল্প যোগ করুন", "compose_form.poll.add_option": "আরেকটি বিকল্প যোগ করুন",
"compose_form.poll.duration": "ভোটগ্রহনের সময়", "compose_form.poll.duration": "ভোটগ্রহনের সময়",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "এখানে কোনো টুট নেই!", "empty_column.account_timeline": "এখানে কোনো টুট নেই!",
"empty_column.account_unavailable": "নিজস্ব পাতা নেই", "empty_column.account_unavailable": "নিজস্ব পাতা নেই",
"empty_column.blocks": "আপনি কোনো ব্যবহারকারীদের বন্ধ করেন নি।", "empty_column.blocks": "আপনি কোনো ব্যবহারকারীদের বন্ধ করেন নি।",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "স্থানীয় সময়রেখাতে কিছু নেই। প্রকাশ্যভাবে কিছু লিখে লেখালেখির উদ্বোধন করে ফেলুন!", "empty_column.community": "স্থানীয় সময়রেখাতে কিছু নেই। প্রকাশ্যভাবে কিছু লিখে লেখালেখির উদ্বোধন করে ফেলুন!",
"empty_column.direct": "আপনার কাছে সরাসরি পাঠানো কোনো লেখা নেই। যদি কেও পাঠায়, সেটা এখানে দেখা যাবে।", "empty_column.direct": "আপনার কাছে সরাসরি পাঠানো কোনো লেখা নেই। যদি কেও পাঠায়, সেটা এখানে দেখা যাবে।",
"empty_column.domain_blocks": "এখনো কোনো সরানো ওয়েবসাইট নেই।", "empty_column.domain_blocks": "এখনো কোনো সরানো ওয়েবসাইট নেই।",
@ -165,8 +193,19 @@
"empty_column.mutes": "আপনি এখনো কোনো ব্যবহারকারীকে সরাননি।", "empty_column.mutes": "আপনি এখনো কোনো ব্যবহারকারীকে সরাননি।",
"empty_column.notifications": "আপনার এখনো কোনো প্রজ্ঞাপন নেই। কথোপকথন শুরু করতে, অন্যদের সাথে মেলামেশা করতে পারেন।", "empty_column.notifications": "আপনার এখনো কোনো প্রজ্ঞাপন নেই। কথোপকথন শুরু করতে, অন্যদের সাথে মেলামেশা করতে পারেন।",
"empty_column.public": "এখানে এখনো কিছু নেই! প্রকাশ্য ভাবে কিছু লিখুন বা অন্য সার্ভার থেকে কাওকে অনুসরণ করে এই জায়গা ভরে ফেলুন", "empty_column.public": "এখানে এখনো কিছু নেই! প্রকাশ্য ভাবে কিছু লিখুন বা অন্য সার্ভার থেকে কাওকে অনুসরণ করে এই জায়গা ভরে ফেলুন",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "অনুমতি দিন", "follow_request.authorize": "অনুমতি দিন",
"follow_request.reject": "প্রত্যাখ্যান করুন", "follow_request.reject": "প্রত্যাখ্যান করুন",
"getting_started.heading": "শুরু করা", "getting_started.heading": "শুরু করা",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "এবং {additional}", "hashtag.column_header.tag_mode.all": "এবং {additional}",
"hashtag.column_header.tag_mode.any": "অথবা {additional}", "hashtag.column_header.tag_mode.any": "অথবা {additional}",
"hashtag.column_header.tag_mode.none": "বাদ দিয়ে {additional}", "hashtag.column_header.tag_mode.none": "বাদ দিয়ে {additional}",
"home.column_settings.basic": "সাধারণ", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "সমর্থনগুলো দেখান", "home.column_settings.show_reblogs": "সমর্থনগুলো দেখান",
"home.column_settings.show_replies": "মতামত দেখান", "home.column_settings.show_replies": "মতামত দেখান",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "আপনার তালিকা", "lists.subheading": "আপনার তালিকা",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "আসছে...", "loading_indicator.label": "আসছে...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "দৃশ্যতার অবস্থা বদলান", "media_gallery.toggle_visible": "দৃশ্যতার অবস্থা বদলান",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "খুঁজে পাওয়া যায়নি", "missing_indicator.label": "খুঁজে পাওয়া যায়নি",
"missing_indicator.sublabel": "জিনিসটা খুঁজে পাওয়া যায়নি", "missing_indicator.sublabel": "জিনিসটা খুঁজে পাওয়া যায়নি",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "এই ব্যবহারকারীর প্রজ্ঞাপন বন্ধ করবেন ?", "mute_modal.hide_notifications": "এই ব্যবহারকারীর প্রজ্ঞাপন বন্ধ করবেন ?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "বন্ধ করা ব্যবহারকারী", "navigation_bar.blocks": "বন্ধ করা ব্যবহারকারী",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "স্থানীয় সময়রেখা", "navigation_bar.community_timeline": "স্থানীয় সময়রেখা",
"navigation_bar.compose": "নতুন টুট লিখুন", "navigation_bar.compose": "নতুন টুট লিখুন",
"navigation_bar.direct": "সরাসরি লেখাগুলি", "navigation_bar.direct": "সরাসরি লেখাগুলি",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "সমর্থনগুলো:", "notifications.column_settings.reblog": "সমর্থনগুলো:",
"notifications.column_settings.show": "কলামে দেখানো", "notifications.column_settings.show": "কলামে দেখানো",
"notifications.column_settings.sound": "শব্দ বাজানো", "notifications.column_settings.sound": "শব্দ বাজানো",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "সব", "notifications.filter.all": "সব",
"notifications.filter.boosts": "সমর্থনগুলো", "notifications.filter.boosts": "সমর্থনগুলো",
"notifications.filter.favourites": "পছন্দের গুলো", "notifications.filter.favourites": "পছন্দের গুলো",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number} দিন", "relative_time.days": "{number} দিন",
@ -379,8 +440,12 @@
"search_results.statuses": "টুট", "search_results.statuses": "টুট",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {ফলাফল} other {ফলাফল}}", "search_results.total": "{count, number} {count, plural, one {ফলাফল} other {ফলাফল}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "@{name} র জন্য পরিচালনার ইন্টারফেসে ঢুকুন", "status.admin_account": "@{name} র জন্য পরিচালনার ইন্টারফেসে ঢুকুন",
"status.admin_status": "যায় লেখাটি পরিচালনার ইন্টারফেসে খুলুন", "status.admin_status": "যায় লেখাটি পরিচালনার ইন্টারফেসে খুলুন",
"status.block": "@{name}কে বন্ধ করুন", "status.block": "@{name}কে বন্ধ করুন",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "সমর্থন বাতিল করতে", "status.cancel_reblog_private": "সমর্থন বাতিল করতে",
"status.cannot_reblog": "এটিতে সমর্থন দেওয়া যাবেনা", "status.cannot_reblog": "এটিতে সমর্থন দেওয়া যাবেনা",
"status.copy": "লেখাটির লিংক কপি করতে", "status.copy": "লেখাটির লিংক কপি করতে",
@ -439,6 +510,7 @@
"status.show_more": "আরো দেখাতে", "status.show_more": "আরো দেখাতে",
"status.show_more_all": "সবগুলোতে আরো দেখতে", "status.show_more_all": "সবগুলোতে আরো দেখতে",
"status.show_thread": "আলোচনা দেখতে", "status.show_thread": "আলোচনা দেখতে",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "আলোচনার প্রজ্ঞাপন চালু করতে", "status.unmute_conversation": "আলোচনার প্রজ্ঞাপন চালু করতে",
"status.unpin": "নিজের পাতা থেকে পিন করে রাখাটির পিন খুলতে", "status.unpin": "নিজের পাতা থেকে পিন করে রাখাটির পিন খুলতে",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Disklêriañ @{name}", "account.report": "Disklêriañ @{name}",
"account.requested": "Awaiting approval", "account.requested": "Awaiting approval",
"account.requested_small": "Awaiting approval",
"account.share": "Skignañ profil @{name}", "account.share": "Skignañ profil @{name}",
"account.show_reblogs": "Diskouez toudoù a @{name}", "account.show_reblogs": "Diskouez toudoù a @{name}",
"account.unblock": "Distankañ @{name}", "account.unblock": "Distankañ @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Something went wrong while loading this component.", "bundle_modal_error.message": "Something went wrong while loading this component.",
"bundle_modal_error.retry": "Klask endro", "bundle_modal_error.retry": "Klask endro",
"column.blocks": "Implijour·ezed·ion stanket", "column.blocks": "Implijour·ezed·ion stanket",
"column.bookmarks": "Bookmarks",
"column.community": "Red-amzer lec'hel", "column.community": "Red-amzer lec'hel",
"column.direct": "Kemennadoù prevez", "column.direct": "Kemennadoù prevez",
"column.domain_blocks": "Domani kuzhet", "column.domain_blocks": "Domani kuzhet",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Follow requests", "column.follow_requests": "Follow requests",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Home", "column.home": "Home",
"column.lists": "Lists", "column.lists": "Lists",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Muted users", "column.mutes": "Muted users",
"column.notifications": "Notifications", "column.notifications": "Notifications",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "This post won't be listed under any hashtag as it is unlisted. Only public posts can be searched by hashtag.", "compose_form.hashtag_warning": "This post won't be listed under any hashtag as it is unlisted. Only public posts 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": "Your account is not {locked}. Anyone can follow you to view your follower-only posts.",
"compose_form.lock_disclaimer.lock": "locked", "compose_form.lock_disclaimer.lock": "locked",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "What is on your mind?", "compose_form.placeholder": "What is on your mind?",
"compose_form.poll.add_option": "Add a choice", "compose_form.poll.add_option": "Add a choice",
"compose_form.poll.duration": "Poll duration", "compose_form.poll.duration": "Poll duration",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "No posts here!", "empty_column.account_timeline": "No posts here!",
"empty_column.account_unavailable": "Profile unavailable", "empty_column.account_unavailable": "Profile unavailable",
"empty_column.blocks": "You haven't blocked any users yet.", "empty_column.blocks": "You haven't blocked any users yet.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!", "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.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.domain_blocks": "There are no hidden domains yet.",
@ -165,8 +193,19 @@
"empty_column.mutes": "You haven't muted any users yet.", "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.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 servers to fill it up", "empty_column.public": "There is nothing here! Write something publicly, or manually follow users from other servers to fill it up",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Authorize", "follow_request.authorize": "Authorize",
"follow_request.reject": "Reject", "follow_request.reject": "Reject",
"getting_started.heading": "Getting started", "getting_started.heading": "Getting started",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "and {additional}", "hashtag.column_header.tag_mode.all": "and {additional}",
"hashtag.column_header.tag_mode.any": "or {additional}", "hashtag.column_header.tag_mode.any": "or {additional}",
"hashtag.column_header.tag_mode.none": "without {additional}", "hashtag.column_header.tag_mode.none": "without {additional}",
"home.column_settings.basic": "Basic", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "Show reposts", "home.column_settings.show_reblogs": "Show reposts",
"home.column_settings.show_replies": "Show replies", "home.column_settings.show_replies": "Show replies",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Your lists", "lists.subheading": "Your lists",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Loading...", "loading_indicator.label": "Loading...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Toggle visibility", "media_gallery.toggle_visible": "Toggle visibility",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Not found", "missing_indicator.label": "Not found",
"missing_indicator.sublabel": "This resource could not be found", "missing_indicator.sublabel": "This resource could not be found",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Hide notifications from this user?", "mute_modal.hide_notifications": "Hide notifications from this user?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Blocked users", "navigation_bar.blocks": "Blocked users",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Local timeline", "navigation_bar.community_timeline": "Local timeline",
"navigation_bar.compose": "Compose new post", "navigation_bar.compose": "Compose new post",
"navigation_bar.direct": "Direct messages", "navigation_bar.direct": "Direct messages",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Reposts:", "notifications.column_settings.reblog": "Reposts:",
"notifications.column_settings.show": "Show in column", "notifications.column_settings.show": "Show in column",
"notifications.column_settings.sound": "Play sound", "notifications.column_settings.sound": "Play sound",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "All", "notifications.filter.all": "All",
"notifications.filter.boosts": "Reposts", "notifications.filter.boosts": "Reposts",
"notifications.filter.favourites": "Favorites", "notifications.filter.favourites": "Favorites",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
@ -379,8 +440,12 @@
"search_results.statuses": "Posts", "search_results.statuses": "Posts",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {result} other {results}}", "search_results.total": "{count, number} {count, plural, one {result} other {results}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Open moderation interface for @{name}", "status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface", "status.admin_status": "Open this post in the moderation interface",
"status.block": "Block @{name}", "status.block": "Block @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Un-repost", "status.cancel_reblog_private": "Un-repost",
"status.cannot_reblog": "This post cannot be reposted", "status.cannot_reblog": "This post cannot be reposted",
"status.copy": "Copy link to post", "status.copy": "Copy link to post",
@ -439,6 +510,7 @@
"status.show_more": "Show more", "status.show_more": "Show more",
"status.show_more_all": "Show more for all", "status.show_more_all": "Show more for all",
"status.show_thread": "Show thread", "status.show_thread": "Show thread",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Unmute conversation", "status.unmute_conversation": "Unmute conversation",
"status.unpin": "Unpin from profile", "status.unpin": "Unpin from profile",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Informe @{name}", "account.report": "Informe @{name}",
"account.requested": "Esperant aprovació. Clic per a cancel·lar la petició de seguiment", "account.requested": "Esperant aprovació. Clic per a cancel·lar la petició de seguiment",
"account.requested_small": "Awaiting approval",
"account.share": "Comparteix el perfil de @{name}", "account.share": "Comparteix el perfil de @{name}",
"account.show_reblogs": "Mostra els impulsos de @{name}", "account.show_reblogs": "Mostra els impulsos de @{name}",
"account.unblock": "Desbloca @{name}", "account.unblock": "Desbloca @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "S'ha produït un error en carregar aquest component.", "bundle_modal_error.message": "S'ha produït un error en carregar aquest component.",
"bundle_modal_error.retry": "Torna-ho a provar", "bundle_modal_error.retry": "Torna-ho a provar",
"column.blocks": "Usuaris bloquejats", "column.blocks": "Usuaris bloquejats",
"column.bookmarks": "Bookmarks",
"column.community": "Línia de temps local", "column.community": "Línia de temps local",
"column.direct": "Missatges directes", "column.direct": "Missatges directes",
"column.domain_blocks": "Dominis ocults", "column.domain_blocks": "Dominis ocults",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Peticions per seguir-te", "column.follow_requests": "Peticions per seguir-te",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Inici", "column.home": "Inici",
"column.lists": "Llistes", "column.lists": "Llistes",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Usuaris silenciats", "column.mutes": "Usuaris silenciats",
"column.notifications": "Notificacions", "column.notifications": "Notificacions",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "Aquest toot no es mostrarà en cap etiqueta ja que no està llistat. Només els toots públics poden ser cercats per etiqueta.", "compose_form.hashtag_warning": "Aquest toot no es mostrarà en cap etiqueta ja que no està llistat. Només els toots públics poden ser cercats per etiqueta.",
"compose_form.lock_disclaimer": "El teu compte no està bloquejat {locked}. Tothom pot seguir-te i veure els teus missatges a seguidors.", "compose_form.lock_disclaimer": "El teu compte no està bloquejat {locked}. Tothom pot seguir-te i veure els teus missatges a seguidors.",
"compose_form.lock_disclaimer.lock": "bloquejat", "compose_form.lock_disclaimer.lock": "bloquejat",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "En què penses?", "compose_form.placeholder": "En què penses?",
"compose_form.poll.add_option": "Afegeix una opció", "compose_form.poll.add_option": "Afegeix una opció",
"compose_form.poll.duration": "Durada de l'enquesta", "compose_form.poll.duration": "Durada de l'enquesta",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "No hi ha toots aquí!", "empty_column.account_timeline": "No hi ha toots aquí!",
"empty_column.account_unavailable": "Perfil no disponible", "empty_column.account_unavailable": "Perfil no disponible",
"empty_column.blocks": "Encara no has bloquejat cap usuari.", "empty_column.blocks": "Encara no has bloquejat cap usuari.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "La línia de temps local és buida. Escriu alguna cosa públicament per a fer rodar la pilota!", "empty_column.community": "La línia de temps local és buida. Escriu alguna cosa públicament per a fer rodar la pilota!",
"empty_column.direct": "Encara no tens missatges directes. Quan enviïs o rebis un, es mostrarà aquí.", "empty_column.direct": "Encara no tens missatges directes. Quan enviïs o rebis un, es mostrarà aquí.",
"empty_column.domain_blocks": "Encara no hi ha dominis ocults.", "empty_column.domain_blocks": "Encara no hi ha dominis ocults.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Encara no has silenciat cap usuari.", "empty_column.mutes": "Encara no has silenciat cap usuari.",
"empty_column.notifications": "Encara no tens notificacions. Interactua amb altres per iniciar la conversa.", "empty_column.notifications": "Encara no tens notificacions. Interactua amb altres per iniciar la conversa.",
"empty_column.public": "No hi ha res aquí! Escriu públicament alguna cosa o manualment segueix usuaris d'altres servidors per omplir-ho", "empty_column.public": "No hi ha res aquí! Escriu públicament alguna cosa o manualment segueix usuaris d'altres servidors per omplir-ho",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Autoritzar", "follow_request.authorize": "Autoritzar",
"follow_request.reject": "Rebutjar", "follow_request.reject": "Rebutjar",
"getting_started.heading": "Començant", "getting_started.heading": "Començant",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "i {additional}", "hashtag.column_header.tag_mode.all": "i {additional}",
"hashtag.column_header.tag_mode.any": "o {additional}", "hashtag.column_header.tag_mode.any": "o {additional}",
"hashtag.column_header.tag_mode.none": "sense {additional}", "hashtag.column_header.tag_mode.none": "sense {additional}",
"home.column_settings.basic": "Bàsic", "home.column_settings.show_direct": "Show direct messages",
"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",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Les teves llistes", "lists.subheading": "Les teves llistes",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Carregant...", "loading_indicator.label": "Carregant...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Alternar visibilitat", "media_gallery.toggle_visible": "Alternar visibilitat",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "No trobat", "missing_indicator.label": "No trobat",
"missing_indicator.sublabel": "Aquest recurs no pot ser trobat", "missing_indicator.sublabel": "Aquest recurs no pot ser trobat",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Amagar notificacions d'aquest usuari?", "mute_modal.hide_notifications": "Amagar notificacions d'aquest usuari?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Usuaris bloquejats", "navigation_bar.blocks": "Usuaris bloquejats",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Línia de temps Local", "navigation_bar.community_timeline": "Línia de temps Local",
"navigation_bar.compose": "Redacta nou toot", "navigation_bar.compose": "Redacta nou toot",
"navigation_bar.direct": "Missatges directes", "navigation_bar.direct": "Missatges directes",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Impulsos:", "notifications.column_settings.reblog": "Impulsos:",
"notifications.column_settings.show": "Mostrar en la columna", "notifications.column_settings.show": "Mostrar en la columna",
"notifications.column_settings.sound": "Reproduïr so", "notifications.column_settings.sound": "Reproduïr so",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "Tots", "notifications.filter.all": "Tots",
"notifications.filter.boosts": "Impulsos", "notifications.filter.boosts": "Impulsos",
"notifications.filter.favourites": "Favorits", "notifications.filter.favourites": "Favorits",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "fa {number} dies", "relative_time.days": "fa {number} dies",
@ -379,8 +440,12 @@
"search_results.statuses": "Posts", "search_results.statuses": "Posts",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {resultat} other {resultats}}", "search_results.total": "{count, number} {count, plural, one {resultat} other {resultats}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Obre l'interfície de moderació per a @{name}", "status.admin_account": "Obre l'interfície de moderació per a @{name}",
"status.admin_status": "Obre aquest toot a la interfície de moderació", "status.admin_status": "Obre aquest toot a la interfície de moderació",
"status.block": "Bloqueja @{name}", "status.block": "Bloqueja @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Desfer l'impuls", "status.cancel_reblog_private": "Desfer l'impuls",
"status.cannot_reblog": "Aquesta publicació no pot ser impulsada", "status.cannot_reblog": "Aquesta publicació no pot ser impulsada",
"status.copy": "Copia l'enllaç al toot", "status.copy": "Copia l'enllaç al toot",
@ -439,6 +510,7 @@
"status.show_more": "Mostra més", "status.show_more": "Mostra més",
"status.show_more_all": "Mostra més per a tot", "status.show_more_all": "Mostra més per a tot",
"status.show_thread": "Mostra el fil", "status.show_thread": "Mostra el fil",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Activar conversació", "status.unmute_conversation": "Activar conversació",
"status.unpin": "Deslliga del perfil", "status.unpin": "Deslliga del perfil",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Palisà @{name}", "account.report": "Palisà @{name}",
"account.requested": "In attesa d'apprubazione. Cliccate per annullà a dumanda", "account.requested": "In attesa d'apprubazione. Cliccate per annullà a dumanda",
"account.requested_small": "Awaiting approval",
"account.share": "Sparte u prufile di @{name}", "account.share": "Sparte u prufile di @{name}",
"account.show_reblogs": "Vede spartere da @{name}", "account.show_reblogs": "Vede spartere da @{name}",
"account.unblock": "Sbluccà @{name}", "account.unblock": "Sbluccà @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "C'hè statu un prublemu caricandu st'elementu.", "bundle_modal_error.message": "C'hè statu un prublemu caricandu st'elementu.",
"bundle_modal_error.retry": "Pruvà torna", "bundle_modal_error.retry": "Pruvà torna",
"column.blocks": "Utilizatori bluccati", "column.blocks": "Utilizatori bluccati",
"column.bookmarks": "Bookmarks",
"column.community": "Linea pubblica lucale", "column.community": "Linea pubblica lucale",
"column.direct": "Missaghji diretti", "column.direct": "Missaghji diretti",
"column.domain_blocks": "Duminii piattati", "column.domain_blocks": "Duminii piattati",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Dumande d'abbunamentu", "column.follow_requests": "Dumande d'abbunamentu",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Accolta", "column.home": "Accolta",
"column.lists": "Liste", "column.lists": "Liste",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Utilizatori piattati", "column.mutes": "Utilizatori piattati",
"column.notifications": "Nutificazione", "column.notifications": "Nutificazione",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "Stu statutu ùn hè \"Micca listatu\" è ùn sarà micca listatu indè e circate da hashtag. Per esse vistu in quesse, u statutu deve esse \"Pubblicu\".", "compose_form.hashtag_warning": "Stu statutu ùn hè \"Micca listatu\" è ùn sarà micca listatu indè e circate da hashtag. Per esse vistu in quesse, u statutu deve esse \"Pubblicu\".",
"compose_form.lock_disclaimer": "U vostru contu ùn hè micca {locked}. Tuttu u mondu pò seguitavi è vede i vostri statuti privati.", "compose_form.lock_disclaimer": "U vostru contu ùn hè micca {locked}. Tuttu u mondu pò seguitavi è vede i vostri statuti privati.",
"compose_form.lock_disclaimer.lock": "privatu", "compose_form.lock_disclaimer.lock": "privatu",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "À chè pensate?", "compose_form.placeholder": "À chè pensate?",
"compose_form.poll.add_option": "Aghjunghje scelta", "compose_form.poll.add_option": "Aghjunghje scelta",
"compose_form.poll.duration": "Durata di u scandagliu", "compose_form.poll.duration": "Durata di u scandagliu",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "Nisun statutu quì!", "empty_column.account_timeline": "Nisun statutu quì!",
"empty_column.account_unavailable": "Prufile micca dispunibule", "empty_column.account_unavailable": "Prufile micca dispunibule",
"empty_column.blocks": "Per avà ùn avete bluccatu manc'un utilizatore.", "empty_column.blocks": "Per avà ùn avete bluccatu manc'un utilizatore.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "Ùn c'hè nunda indè a linea lucale. Scrivete puru qualcosa!", "empty_column.community": "Ùn c'hè nunda indè a linea lucale. Scrivete puru qualcosa!",
"empty_column.direct": "Ùn avete ancu nisun missaghju direttu. S'è voi mandate o ricevete unu, u vidarete quì.", "empty_column.direct": "Ùn avete ancu nisun missaghju direttu. S'è voi mandate o ricevete unu, u vidarete quì.",
"empty_column.domain_blocks": "Ùn c'hè manc'un duminiu bluccatu avà.", "empty_column.domain_blocks": "Ùn c'hè manc'un duminiu bluccatu avà.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Per avà ùn avete manc'un utilizatore piattatu.", "empty_column.mutes": "Per avà ùn avete manc'un utilizatore piattatu.",
"empty_column.notifications": "Ùn avete ancu nisuna nutificazione. Interact with others to start the conversation.", "empty_column.notifications": "Ùn avete ancu nisuna nutificazione. Interact with others to start the conversation.",
"empty_column.public": "Ùn c'hè nunda quì! Scrivete qualcosa in pubblicu o seguitate utilizatori d'altri servori per empie a linea pubblica", "empty_column.public": "Ùn c'hè nunda quì! Scrivete qualcosa in pubblicu o seguitate utilizatori d'altri servori per empie a linea pubblica",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Auturizà", "follow_request.authorize": "Auturizà",
"follow_request.reject": "Righjittà", "follow_request.reject": "Righjittà",
"getting_started.heading": "Per principià", "getting_started.heading": "Per principià",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "è {additional}", "hashtag.column_header.tag_mode.all": "è {additional}",
"hashtag.column_header.tag_mode.any": "o {additional}", "hashtag.column_header.tag_mode.any": "o {additional}",
"hashtag.column_header.tag_mode.none": "senza {additional}", "hashtag.column_header.tag_mode.none": "senza {additional}",
"home.column_settings.basic": "Bàsichi", "home.column_settings.show_direct": "Show direct messages",
"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",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "E vo liste", "lists.subheading": "E vo liste",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Caricamentu...", "loading_indicator.label": "Caricamentu...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Cambià a visibilità", "media_gallery.toggle_visible": "Cambià a visibilità",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"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",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Piattà nutificazione da st'utilizatore?", "mute_modal.hide_notifications": "Piattà nutificazione da st'utilizatore?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Utilizatori bluccati", "navigation_bar.blocks": "Utilizatori bluccati",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Linea pubblica lucale", "navigation_bar.community_timeline": "Linea pubblica lucale",
"navigation_bar.compose": "Scrive un novu statutu", "navigation_bar.compose": "Scrive un novu statutu",
"navigation_bar.direct": "Missaghji diretti", "navigation_bar.direct": "Missaghji diretti",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Spartere:", "notifications.column_settings.reblog": "Spartere:",
"notifications.column_settings.show": "Mustrà indè a colonna", "notifications.column_settings.show": "Mustrà indè a colonna",
"notifications.column_settings.sound": "Sunà", "notifications.column_settings.sound": "Sunà",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "Tuttu", "notifications.filter.all": "Tuttu",
"notifications.filter.boosts": "Spartere", "notifications.filter.boosts": "Spartere",
"notifications.filter.favourites": "Favuriti", "notifications.filter.favourites": "Favuriti",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}ghj", "relative_time.days": "{number}ghj",
@ -379,8 +440,12 @@
"search_results.statuses": "Statuti", "search_results.statuses": "Statuti",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {risultatu} other {risultati}}", "search_results.total": "{count, number} {count, plural, one {risultatu} other {risultati}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Apre l'interfaccia di muderazione per @{name}", "status.admin_account": "Apre l'interfaccia di muderazione per @{name}",
"status.admin_status": "Apre stu statutu in l'interfaccia di muderazione", "status.admin_status": "Apre stu statutu in l'interfaccia di muderazione",
"status.block": "Bluccà @{name}", "status.block": "Bluccà @{name}",
"status.bookmark": "Bookmark",
"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.copy": "Cupià ligame indè u statutu", "status.copy": "Cupià ligame indè u statutu",
@ -439,6 +510,7 @@
"status.show_more": "Slibrà", "status.show_more": "Slibrà",
"status.show_more_all": "Slibrà tuttu", "status.show_more_all": "Slibrà tuttu",
"status.show_thread": "Vede u filu", "status.show_thread": "Vede u filu",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Ùn piattà più a cunversazione", "status.unmute_conversation": "Ùn piattà più a cunversazione",
"status.unpin": "Spuntarulà da u prufile", "status.unpin": "Spuntarulà da u prufile",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Registrovat se", "account.register": "Registrovat se",
"account.report": "Nahlásit uživatele @{name}", "account.report": "Nahlásit uživatele @{name}",
"account.requested": "Čekám na schválení. Kliknutím zrušíte požadavek o sledování", "account.requested": "Čekám na schválení. Kliknutím zrušíte požadavek o sledování",
"account.requested_small": "Awaiting approval",
"account.share": "Sdílet profil uživatele @{name}", "account.share": "Sdílet profil uživatele @{name}",
"account.show_reblogs": "Zobrazit boosty od uživatele @{name}", "account.show_reblogs": "Zobrazit boosty od uživatele @{name}",
"account.unblock": "Odblokovat uživatele @{name}", "account.unblock": "Odblokovat uživatele @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Při načítání tohoto komponentu se něco pokazilo.", "bundle_modal_error.message": "Při načítání tohoto komponentu se něco pokazilo.",
"bundle_modal_error.retry": "Zkusit znovu", "bundle_modal_error.retry": "Zkusit znovu",
"column.blocks": "Blokovaní uživatelé", "column.blocks": "Blokovaní uživatelé",
"column.bookmarks": "Bookmarks",
"column.community": "Místní zeď", "column.community": "Místní zeď",
"column.direct": "Přímé zprávy", "column.direct": "Přímé zprávy",
"column.domain_blocks": "Skryté domény", "column.domain_blocks": "Skryté domény",
"column.edit_profile": "Editovat profil", "column.edit_profile": "Editovat profil",
"column.filters": "Filtrovaná slova", "column.filters": "Filtrovaná slova",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Požadavky o sledování", "column.follow_requests": "Požadavky o sledování",
"column.groups": "Skupiny", "column.groups": "Skupiny",
"column.home": "Domů", "column.home": "Domů",
"column.lists": "Seznamy", "column.lists": "Seznamy",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Skrytí uživatelé", "column.mutes": "Skrytí uživatelé",
"column.notifications": "Oznámení", "column.notifications": "Oznámení",
"column.preferences": "Preference", "column.preferences": "Preference",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "Tento příspěvěk nebude zobrazen pod žádným hashtagem, neboť je neuvedený. Pouze veřejné příspěvky mohou být vyhledány podle hashtagu.", "compose_form.hashtag_warning": "Tento příspěvěk nebude zobrazen pod žádným hashtagem, neboť je neuvedený. Pouze veřejné příspěvky mohou být vyhledány podle hashtagu.",
"compose_form.lock_disclaimer": "Váš účet není {locked}. Kdokoliv vás může sledovat a vidět vaše příspěvky pouze pro sledující.", "compose_form.lock_disclaimer": "Váš účet není {locked}. Kdokoliv vás může sledovat a vidět vaše příspěvky pouze pro sledující.",
"compose_form.lock_disclaimer.lock": "uzamčen", "compose_form.lock_disclaimer.lock": "uzamčen",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "Co se vám honí hlavou?", "compose_form.placeholder": "Co se vám honí hlavou?",
"compose_form.poll.add_option": "Přidat volbu", "compose_form.poll.add_option": "Přidat volbu",
"compose_form.poll.duration": "Délka ankety", "compose_form.poll.duration": "Délka ankety",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Metadata profilu", "edit_profile.fields.meta_fields_label": "Metadata profilu",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF nebo JPG. Maximálně 2 MB. Bude zmenšen na 400x400px", "edit_profile.hints.avatar": "PNG, GIF nebo JPG. Maximálně 2 MB. Bude zmenšen na 400x400px",
"edit_profile.hints.bot": "Tento účet provádí automatizované úkony a není aktivně monitorován.", "edit_profile.hints.bot": "Tento účet provádí automatizované úkony a není aktivně monitorován.",
"edit_profile.hints.header": "PNG, GIF nebo JPG. Maximálně 2 MB. Bude zmenšen na 1500x500px", "edit_profile.hints.header": "PNG, GIF nebo JPG. Maximálně 2 MB. Bude zmenšen na 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "Tady nejsou žádné příspěvky!", "empty_column.account_timeline": "Tady nejsou žádné příspěvky!",
"empty_column.account_unavailable": "Profil nedostupný", "empty_column.account_unavailable": "Profil nedostupný",
"empty_column.blocks": "Ještě jste nezablokoval/a žádného uživatele.", "empty_column.blocks": "Ještě jste nezablokoval/a žádného uživatele.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "Místní zeď je prázdná. Napište něco veřejně a rozhýbejte to tu!", "empty_column.community": "Místní zeď 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": "Ještě nejsou žádné skryté domény.", "empty_column.domain_blocks": "Ještě nejsou žádné skryté domény.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Ještě jste neskryl/a žádné uživatele.", "empty_column.mutes": "Ještě jste neskryl/a žá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 začněte ručně sledovat uživatele z jiných serverů, aby tu něco přibylo", "empty_column.public": "Tady nic není! Napište něco veřejně, nebo začněte ručně sledovat uživatele z jiných serverů, aby tu něco přibylo",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} je členem Fediverse, sociální síť složená z tisíce nezávislých serverů. Příspěvky které zde vidíte pochází ze serverů třetí strany. Máte možnost se servery komunikovat či blokovat. Dávejte si pozor na druhou část jména za druhým @, ta indikuje z jakého serveru uživat pochází. Aby jste viděly pouze příspěvky z {site_title}, navštivte {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} je členem Fediverse, sociální síť složená z tisíce nezávislých serverů. Příspěvky které zde vidíte pochází ze serverů třetí strany. Máte možnost se servery komunikovat či blokovat. Dávejte si pozor na druhou část jména za druhým @, ta indikuje z jakého serveru uživat pochází. Aby jste viděly pouze příspěvky z {site_title}, navštivte {local}.",
"fediverse_tab.explanation_box.title": "Co je to Fediverse?", "fediverse_tab.explanation_box.title": "Co je to Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Autorizovat", "follow_request.authorize": "Autorizovat",
"follow_request.reject": "Odmítnout", "follow_request.reject": "Odmítnout",
"getting_started.heading": "Začínáme", "getting_started.heading": "Začínáme",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "a {additional}", "hashtag.column_header.tag_mode.all": "a {additional}",
"hashtag.column_header.tag_mode.any": "nebo {additional}", "hashtag.column_header.tag_mode.any": "nebo {additional}",
"hashtag.column_header.tag_mode.none": "bez {additional}", "hashtag.column_header.tag_mode.none": "bez {additional}",
"home.column_settings.basic": "Základní", "home.column_settings.show_direct": "Show direct messages",
"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",
"home_column.lists": "Listy", "home_column.lists": "Listy",
@ -249,11 +288,28 @@
"lists.subheading": "Vaše seznamy", "lists.subheading": "Vaše seznamy",
"lists.view_all": "Zobrazit všechny seznamy", "lists.view_all": "Zobrazit všechny seznamy",
"loading_indicator.label": "Načítám…", "loading_indicator.label": "Načítám…",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Heslo", "login.fields.password_placeholder": "Heslo",
"login.fields.username_placeholder": "Jméno", "login.fields.username_placeholder": "Jméno",
"login.log_in": "Přihlásit se", "login.log_in": "Přihlásit se",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Problémy s přihlášením?", "login.reset_password_hint": "Problémy s přihlášením?",
"media_gallery.toggle_visible": "Přepínat viditelnost", "media_gallery.toggle_visible": "Přepínat viditelnost",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Nenalezeno", "missing_indicator.label": "Nenalezeno",
"missing_indicator.sublabel": "Tento zdroj se nepodařilo najít", "missing_indicator.sublabel": "Tento zdroj se nepodařilo najít",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Skrýt oznámení od tohoto uživatele?", "mute_modal.hide_notifications": "Skrýt oznámení od tohoto uživatele?",
"navigation_bar.admin_settings": "Adminské menu", "navigation_bar.admin_settings": "Adminské menu",
"navigation_bar.blocks": "Blokovaní uživatelé", "navigation_bar.blocks": "Blokovaní uživatelé",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Místní zeď", "navigation_bar.community_timeline": "Místní zeď",
"navigation_bar.compose": "Vytvořit nový příspěvek", "navigation_bar.compose": "Vytvořit nový příspěvek",
"navigation_bar.direct": "Přímé zprávy", "navigation_bar.direct": "Přímé zprávy",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Boosty:", "notifications.column_settings.reblog": "Boosty:",
"notifications.column_settings.show": "Zobrazit ve sloupci", "notifications.column_settings.show": "Zobrazit ve sloupci",
"notifications.column_settings.sound": "Přehrát zvuk", "notifications.column_settings.sound": "Přehrát zvuk",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "Vše", "notifications.filter.all": "Vše",
"notifications.filter.boosts": "Boosty", "notifications.filter.boosts": "Boosty",
"notifications.filter.favourites": "Oblíbení", "notifications.filter.favourites": "Oblíbení",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Heslo", "registration.fields.password_placeholder": "Heslo",
"registration.fields.username_placeholder": "Jméno", "registration.fields.username_placeholder": "Jméno",
"registration.lead": "S účtem na {instance} budete moci sledovat další uživatele na fediverse.", "registration.lead": "S účtem na {instance} budete moci sledovat další uživatele na fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Registrovat", "registration.sign_up": "Registrovat",
"registration.tos": "Podmínky služby", "registration.tos": "Podmínky služby",
"relative_time.days": "{number} d", "relative_time.days": "{number} d",
@ -379,8 +440,12 @@
"search_results.statuses": "Příspěvky", "search_results.statuses": "Příspěvky",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {výsledek} few {výsledky} many {výsledku} other {výsledků}}", "search_results.total": "{count, number} {count, plural, one {výsledek} few {výsledky} many {výsledku} other {výsledků}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Emailová addresa", "security.fields.email.label": "Emailová addresa",
"security.fields.new_password.label": "Nové heslo", "security.fields.new_password.label": "Nové heslo",
"security.fields.old_password.label": "Současné heslo", "security.fields.old_password.label": "Současné heslo",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Změnit email", "security.headers.update_email": "Změnit email",
"security.headers.update_password": "Změnit heslo", "security.headers.update_password": "Změnit heslo",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Uložit změny", "security.submit": "Uložit změny",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Otevřít moderátorské rozhraní pro uživatele @{name}", "status.admin_account": "Otevřít moderátorské rozhraní pro uživatele @{name}",
"status.admin_status": "Otevřít tento toot v moderátorském rozhraní", "status.admin_status": "Otevřít tento toot v moderátorském rozhraní",
"status.block": "Zablokovat uživatele @{name}", "status.block": "Zablokovat uživatele @{name}",
"status.bookmark": "Bookmark",
"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.copy": "Kopírovat odkaz k tootu", "status.copy": "Kopírovat odkaz k tootu",
@ -439,6 +510,7 @@
"status.show_more": "Zobrazit více", "status.show_more": "Zobrazit více",
"status.show_more_all": "Zobrazit více pro všechny", "status.show_more_all": "Zobrazit více pro všechny",
"status.show_thread": "Zobrazit vlákno", "status.show_thread": "Zobrazit vlákno",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Odkrýt konverzaci", "status.unmute_conversation": "Odkrýt konverzaci",
"status.unpin": "Odepnout z profilu", "status.unpin": "Odepnout z profilu",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Adrodd @{name}", "account.report": "Adrodd @{name}",
"account.requested": "Aros am gymeradwyaeth. Cliciwch er mwyn canslo cais dilyn", "account.requested": "Aros am gymeradwyaeth. Cliciwch er mwyn canslo cais dilyn",
"account.requested_small": "Awaiting approval",
"account.share": "Rhannwch broffil @{name}", "account.share": "Rhannwch broffil @{name}",
"account.show_reblogs": "Dangos bwstiau o @{name}", "account.show_reblogs": "Dangos bwstiau o @{name}",
"account.unblock": "Dadflocio @{name}", "account.unblock": "Dadflocio @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Aeth rhywbeth o'i le tra'n llwytho'r elfen hon.", "bundle_modal_error.message": "Aeth rhywbeth o'i le tra'n llwytho'r elfen hon.",
"bundle_modal_error.retry": "Ceiswich eto", "bundle_modal_error.retry": "Ceiswich eto",
"column.blocks": "Defnyddwyr a flociwyd", "column.blocks": "Defnyddwyr a flociwyd",
"column.bookmarks": "Bookmarks",
"column.community": "Ffrwd lleol", "column.community": "Ffrwd lleol",
"column.direct": "Negeseuon preifat", "column.direct": "Negeseuon preifat",
"column.domain_blocks": "Parthau cuddiedig", "column.domain_blocks": "Parthau cuddiedig",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Ceisiadau dilyn", "column.follow_requests": "Ceisiadau dilyn",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Hafan", "column.home": "Hafan",
"column.lists": "Rhestrau", "column.lists": "Rhestrau",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Defnyddwyr a ddistewyd", "column.mutes": "Defnyddwyr a ddistewyd",
"column.notifications": "Hysbysiadau", "column.notifications": "Hysbysiadau",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "Ni fydd y tŵt hwn wedi ei restru o dan unrhyw hashnod gan ei fod heb ei restru. Dim ond tŵtiau cyhoeddus gellid chwilota amdanynt drwy hashnod.", "compose_form.hashtag_warning": "Ni fydd y tŵt hwn wedi ei restru o dan unrhyw hashnod gan ei fod heb ei restru. Dim ond tŵtiau cyhoeddus gellid chwilota amdanynt drwy hashnod.",
"compose_form.lock_disclaimer": "Nid yw eich cyfri wedi'i {locked}. Gall unrhyw un eich dilyn i weld eich tŵtiau dilynwyr-yn-unig.", "compose_form.lock_disclaimer": "Nid yw eich cyfri wedi'i {locked}. Gall unrhyw un eich dilyn i weld eich tŵtiau dilynwyr-yn-unig.",
"compose_form.lock_disclaimer.lock": "wedi ei gloi", "compose_form.lock_disclaimer.lock": "wedi ei gloi",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "Beth sydd ar eich meddwl?", "compose_form.placeholder": "Beth sydd ar eich meddwl?",
"compose_form.poll.add_option": "Ychwanegu Dewisiad", "compose_form.poll.add_option": "Ychwanegu Dewisiad",
"compose_form.poll.duration": "Cyfnod pleidlais", "compose_form.poll.duration": "Cyfnod pleidlais",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "Dim tŵtiau fama!", "empty_column.account_timeline": "Dim tŵtiau fama!",
"empty_column.account_unavailable": "Proffil ddim ar gael", "empty_column.account_unavailable": "Proffil ddim ar gael",
"empty_column.blocks": "Nid ydych wedi blocio unrhyw ddefnyddwyr eto.", "empty_column.blocks": "Nid ydych wedi blocio unrhyw ddefnyddwyr eto.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "Mae'r ffrwd lleol yn wag. Ysgrifenwch rhywbeth yn gyhoeddus i gael dechrau arni!", "empty_column.community": "Mae'r ffrwd lleol yn wag. Ysgrifenwch rhywbeth yn gyhoeddus i gael dechrau arni!",
"empty_column.direct": "Nid oes gennych unrhyw negeseuon preifat eto. Pan y byddwch yn anfon neu derbyn un, mi fydd yn ymddangos yma.", "empty_column.direct": "Nid oes gennych unrhyw negeseuon preifat eto. Pan y byddwch yn anfon neu derbyn un, mi fydd yn ymddangos yma.",
"empty_column.domain_blocks": "Nid oes yna unrhyw barthau cuddiedig eto.", "empty_column.domain_blocks": "Nid oes yna unrhyw barthau cuddiedig eto.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Nid ydych wedi tawelu unrhyw ddefnyddwyr eto.", "empty_column.mutes": "Nid ydych wedi tawelu unrhyw ddefnyddwyr eto.",
"empty_column.notifications": "Nid oes gennych unrhyw hysbysiadau eto. Rhyngweithiwch ac eraill i ddechrau'r sgwrs.", "empty_column.notifications": "Nid oes gennych unrhyw hysbysiadau eto. Rhyngweithiwch ac eraill i ddechrau'r sgwrs.",
"empty_column.public": "Does dim byd yma! Ysgrifennwch rhywbeth yn gyhoeddus, neu dilynwch ddefnyddwyr o achosion eraill i'w lenwi", "empty_column.public": "Does dim byd yma! Ysgrifennwch rhywbeth yn gyhoeddus, neu dilynwch ddefnyddwyr o achosion eraill i'w lenwi",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Caniatau", "follow_request.authorize": "Caniatau",
"follow_request.reject": "Gwrthod", "follow_request.reject": "Gwrthod",
"getting_started.heading": "Dechrau", "getting_started.heading": "Dechrau",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "a {additional}", "hashtag.column_header.tag_mode.all": "a {additional}",
"hashtag.column_header.tag_mode.any": "neu {additional}", "hashtag.column_header.tag_mode.any": "neu {additional}",
"hashtag.column_header.tag_mode.none": "heb {additional}", "hashtag.column_header.tag_mode.none": "heb {additional}",
"home.column_settings.basic": "Syml", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "Dangos bŵstiau", "home.column_settings.show_reblogs": "Dangos bŵstiau",
"home.column_settings.show_replies": "Dangos ymatebion", "home.column_settings.show_replies": "Dangos ymatebion",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Eich rhestrau", "lists.subheading": "Eich rhestrau",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Llwytho...", "loading_indicator.label": "Llwytho...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Toglo gwelededd", "media_gallery.toggle_visible": "Toglo gwelededd",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Heb ei ganfod", "missing_indicator.label": "Heb ei ganfod",
"missing_indicator.sublabel": "Ni ellid canfod yr adnodd hwn", "missing_indicator.sublabel": "Ni ellid canfod yr adnodd hwn",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Cuddio hysbysiadau rhag y defnyddiwr hwn?", "mute_modal.hide_notifications": "Cuddio hysbysiadau rhag y defnyddiwr hwn?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Defnyddwyr wedi eu blocio", "navigation_bar.blocks": "Defnyddwyr wedi eu blocio",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Ffrwd leol", "navigation_bar.community_timeline": "Ffrwd leol",
"navigation_bar.compose": "Cyfansoddi tŵt newydd", "navigation_bar.compose": "Cyfansoddi tŵt newydd",
"navigation_bar.direct": "Negeseuon preifat", "navigation_bar.direct": "Negeseuon preifat",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Hybiadau:", "notifications.column_settings.reblog": "Hybiadau:",
"notifications.column_settings.show": "Dangos yn y golofn", "notifications.column_settings.show": "Dangos yn y golofn",
"notifications.column_settings.sound": "Chwarae sain", "notifications.column_settings.sound": "Chwarae sain",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "Pob", "notifications.filter.all": "Pob",
"notifications.filter.boosts": "Hybiadau", "notifications.filter.boosts": "Hybiadau",
"notifications.filter.favourites": "Ffefrynnau", "notifications.filter.favourites": "Ffefrynnau",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}dydd", "relative_time.days": "{number}dydd",
@ -379,8 +440,12 @@
"search_results.statuses": "Tŵtiau", "search_results.statuses": "Tŵtiau",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {result} other {results}}", "search_results.total": "{count, number} {count, plural, one {result} other {results}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Agor rhyngwyneb goruwchwylio ar gyfer @{name}", "status.admin_account": "Agor rhyngwyneb goruwchwylio ar gyfer @{name}",
"status.admin_status": "Agor y tŵt yn y rhyngwyneb goruwchwylio", "status.admin_status": "Agor y tŵt yn y rhyngwyneb goruwchwylio",
"status.block": "Blocio @{name}", "status.block": "Blocio @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Dadfŵstio", "status.cancel_reblog_private": "Dadfŵstio",
"status.cannot_reblog": "Ni ellir sbarduno'r tŵt hwn", "status.cannot_reblog": "Ni ellir sbarduno'r tŵt hwn",
"status.copy": "Copïo cysylltiad i'r tŵt", "status.copy": "Copïo cysylltiad i'r tŵt",
@ -439,6 +510,7 @@
"status.show_more": "Dangos mwy", "status.show_more": "Dangos mwy",
"status.show_more_all": "Dangos mwy i bawb", "status.show_more_all": "Dangos mwy i bawb",
"status.show_thread": "Dangos edefyn", "status.show_thread": "Dangos edefyn",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Dad-dawelu sgwrs", "status.unmute_conversation": "Dad-dawelu sgwrs",
"status.unpin": "Dadbinio o'r proffil", "status.unpin": "Dadbinio o'r proffil",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Rapporter @{name}", "account.report": "Rapporter @{name}",
"account.requested": "Afventer godkendelse. Tryk for at annullere følgeanmodning", "account.requested": "Afventer godkendelse. Tryk for at annullere følgeanmodning",
"account.requested_small": "Awaiting approval",
"account.share": "Del @{name}s profil", "account.share": "Del @{name}s profil",
"account.show_reblogs": "Vis fremhævelserne fra @{name}", "account.show_reblogs": "Vis fremhævelserne fra @{name}",
"account.unblock": "Fjern blokeringen af @{name}", "account.unblock": "Fjern blokeringen af @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Noget gik galt under indlæsningen af dette komponent.", "bundle_modal_error.message": "Noget gik galt under indlæsningen af dette komponent.",
"bundle_modal_error.retry": "Prøv igen", "bundle_modal_error.retry": "Prøv igen",
"column.blocks": "Blokerede brugere", "column.blocks": "Blokerede brugere",
"column.bookmarks": "Bookmarks",
"column.community": "Lokal tidslinje", "column.community": "Lokal tidslinje",
"column.direct": "Direkte beskeder", "column.direct": "Direkte beskeder",
"column.domain_blocks": "Skjulte domæner", "column.domain_blocks": "Skjulte domæner",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Anmodning om at følge", "column.follow_requests": "Anmodning om at følge",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Hjem", "column.home": "Hjem",
"column.lists": "Lister", "column.lists": "Lister",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Dæmpede brugere", "column.mutes": "Dæmpede brugere",
"column.notifications": "Notifikationer", "column.notifications": "Notifikationer",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "Dette trut vil ikke blive vist under noget hashtag da det ikke er listet. Kun offentlige trut kan blive vist under søgninger med hashtags.", "compose_form.hashtag_warning": "Dette trut vil ikke blive vist under noget hashtag da det ikke er listet. Kun offentlige trut kan blive vist under søgninger med hashtags.",
"compose_form.lock_disclaimer": "Din konto er ikke {locked}. Alle kan følge dig for at se dine følger-kun indlæg.", "compose_form.lock_disclaimer": "Din konto er ikke {locked}. Alle kan følge dig for at se dine følger-kun indlæg.",
"compose_form.lock_disclaimer.lock": "låst", "compose_form.lock_disclaimer.lock": "låst",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "Hvad har du på hjertet?", "compose_form.placeholder": "Hvad har du på hjertet?",
"compose_form.poll.add_option": "Tilføj valgmulighed", "compose_form.poll.add_option": "Tilføj valgmulighed",
"compose_form.poll.duration": "Afstemningens varighed", "compose_form.poll.duration": "Afstemningens varighed",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "Ingen bidrag her!", "empty_column.account_timeline": "Ingen bidrag her!",
"empty_column.account_unavailable": "Profil utilgængelig", "empty_column.account_unavailable": "Profil utilgængelig",
"empty_column.blocks": "Du har ikke blokeret nogen endnu.", "empty_column.blocks": "Du har ikke blokeret nogen endnu.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"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": "Der er endnu ikke nogle skjulte domæner.", "empty_column.domain_blocks": "Der er endnu ikke nogle skjulte domæner.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Du har endnu ikke dæmpet nogen som helst bruger.", "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 server for at 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 server for at udfylde tomrummet",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Godkend", "follow_request.authorize": "Godkend",
"follow_request.reject": "Afvis", "follow_request.reject": "Afvis",
"getting_started.heading": "Kom igang", "getting_started.heading": "Kom igang",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "og {additional}", "hashtag.column_header.tag_mode.all": "og {additional}",
"hashtag.column_header.tag_mode.any": "eller {additional}", "hashtag.column_header.tag_mode.any": "eller {additional}",
"hashtag.column_header.tag_mode.none": "uden {additional}", "hashtag.column_header.tag_mode.none": "uden {additional}",
"home.column_settings.basic": "Grundlæggende", "home.column_settings.show_direct": "Show direct messages",
"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",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Dine lister", "lists.subheading": "Dine lister",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Indlæser...", "loading_indicator.label": "Indlæser...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Ændre synlighed", "media_gallery.toggle_visible": "Ændre synlighed",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Ikke fundet", "missing_indicator.label": "Ikke fundet",
"missing_indicator.sublabel": "Denne ressource kunne ikke blive fundet", "missing_indicator.sublabel": "Denne ressource kunne ikke blive fundet",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Skjul notifikationer fra denne bruger?", "mute_modal.hide_notifications": "Skjul notifikationer fra denne bruger?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Blokerede brugere", "navigation_bar.blocks": "Blokerede brugere",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Lokal tidslinje", "navigation_bar.community_timeline": "Lokal tidslinje",
"navigation_bar.compose": "Skriv nyt trut", "navigation_bar.compose": "Skriv nyt trut",
"navigation_bar.direct": "Direkte beskeder", "navigation_bar.direct": "Direkte beskeder",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Reposts:", "notifications.column_settings.reblog": "Reposts:",
"notifications.column_settings.show": "Vis i kolonne", "notifications.column_settings.show": "Vis i kolonne",
"notifications.column_settings.sound": "Afspil lyd", "notifications.column_settings.sound": "Afspil lyd",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "Alle", "notifications.filter.all": "Alle",
"notifications.filter.boosts": "Reposts", "notifications.filter.boosts": "Reposts",
"notifications.filter.favourites": "Favoritter", "notifications.filter.favourites": "Favoritter",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
@ -379,8 +440,12 @@
"search_results.statuses": "Trut", "search_results.statuses": "Trut",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {resultat} other {resultater}}", "search_results.total": "{count, number} {count, plural, one {resultat} other {resultater}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Åben modereringsvisning for @{name}", "status.admin_account": "Åben modereringsvisning for @{name}",
"status.admin_status": "Åben denne status i modereringsvisningen", "status.admin_status": "Åben denne status i modereringsvisningen",
"status.block": "Bloker @{name}", "status.block": "Bloker @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Fjern boost", "status.cancel_reblog_private": "Fjern boost",
"status.cannot_reblog": "Denne post kan ikke boostes", "status.cannot_reblog": "Denne post kan ikke boostes",
"status.copy": "Kopiér link til status", "status.copy": "Kopiér link til status",
@ -439,6 +510,7 @@
"status.show_more": "Vis mere", "status.show_more": "Vis mere",
"status.show_more_all": "Vis mere for alle", "status.show_more_all": "Vis mere for alle",
"status.show_thread": "Vis tråd", "status.show_thread": "Vis tråd",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Genaktivér samtale", "status.unmute_conversation": "Genaktivér samtale",
"status.unpin": "Frigør fra profil", "status.unpin": "Frigør fra profil",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Registrieren", "account.register": "Registrieren",
"account.report": "@{name} melden", "account.report": "@{name} melden",
"account.requested": "Warte auf Bestätigung. Klicke zum Abbrechen", "account.requested": "Warte auf Bestätigung. Klicke zum Abbrechen",
"account.requested_small": "Awaiting approval",
"account.share": "Profil von @{name} teilen", "account.share": "Profil von @{name} teilen",
"account.show_reblogs": "Von @{name} geteilte Beiträge anzeigen", "account.show_reblogs": "Von @{name} geteilte Beiträge anzeigen",
"account.unblock": "@{name} entblocken", "account.unblock": "@{name} entblocken",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Etwas ist beim Laden schiefgelaufen.", "bundle_modal_error.message": "Etwas ist beim Laden schiefgelaufen.",
"bundle_modal_error.retry": "Erneut versuchen", "bundle_modal_error.retry": "Erneut versuchen",
"column.blocks": "Blockierte Profile", "column.blocks": "Blockierte Profile",
"column.bookmarks": "Bookmarks",
"column.community": "Lokale Zeitleiste", "column.community": "Lokale Zeitleiste",
"column.direct": "Direktnachrichten", "column.direct": "Direktnachrichten",
"column.domain_blocks": "Versteckte Domains", "column.domain_blocks": "Versteckte Domains",
"column.edit_profile": "Profil bearbeiten", "column.edit_profile": "Profil bearbeiten",
"column.filters": "Stummgeschaltete Wörter", "column.filters": "Stummgeschaltete Wörter",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Folgeanfragen", "column.follow_requests": "Folgeanfragen",
"column.groups": "Gruppen", "column.groups": "Gruppen",
"column.home": "Startseite", "column.home": "Startseite",
"column.lists": "Listen", "column.lists": "Listen",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Stummgeschaltete Profile", "column.mutes": "Stummgeschaltete Profile",
"column.notifications": "Benachrichtigungen", "column.notifications": "Benachrichtigungen",
"column.preferences": "Einstellungen", "column.preferences": "Einstellungen",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "Dieser Beitrag wird nicht durch Hashtags auffindbar sein, weil er ungelistet ist. Nur öffentliche Beiträge tauchen in Hashtag-Zeitleisten auf.", "compose_form.hashtag_warning": "Dieser Beitrag wird nicht durch Hashtags auffindbar sein, weil er ungelistet ist. Nur öffentliche Beiträge tauchen in Hashtag-Zeitleisten auf.",
"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": "auf privat gestellt", "compose_form.lock_disclaimer.lock": "auf privat gestellt",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "Was gibt's Neues?", "compose_form.placeholder": "Was gibt's Neues?",
"compose_form.poll.add_option": "Eine Antwortmöglichkeit hinzufügen", "compose_form.poll.add_option": "Eine Antwortmöglichkeit hinzufügen",
"compose_form.poll.duration": "Umfragedauer", "compose_form.poll.duration": "Umfragedauer",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "Erlaubte Formate sind PNG, GIF oder JPG. Die Datei darf nicht größer als 2 MB sein. Das Bild wird automatisch auf 400x400px verkleinert.", "edit_profile.hints.avatar": "Erlaubte Formate sind PNG, GIF oder JPG. Die Datei darf nicht größer als 2 MB sein. Das Bild wird automatisch auf 400x400px verkleinert.",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "Erlaubte Formate sind PNG, GIF oder JPG. Die Datei darf nicht größer als 2 MB sein. Das Bild wird automatisch auf 1500x500px verkleinert.", "edit_profile.hints.header": "Erlaubte Formate sind PNG, GIF oder JPG. Die Datei darf nicht größer als 2 MB sein. Das Bild wird automatisch auf 1500x500px verkleinert.",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "Keine Beiträge!", "empty_column.account_timeline": "Keine Beiträge!",
"empty_column.account_unavailable": "Konto nicht verfügbar", "empty_column.account_unavailable": "Konto nicht verfügbar",
"empty_column.blocks": "Du hast keine Profile blockiert.", "empty_column.blocks": "Du hast keine Profile blockiert.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "Die lokale Zeitleiste ist leer. Schreibe einen öffentlichen Beitrag, um den Ball ins Rollen zu bringen!", "empty_column.community": "Die lokale Zeitleiste ist leer. Schreibe einen öffentlichen Beitrag, um den Ball ins Rollen zu bringen!",
"empty_column.direct": "Du hast noch keine Direktnachrichten erhalten. Wenn du eine sendest oder empfängst, wird sie hier zu sehen sein.", "empty_column.direct": "Du hast noch keine Direktnachrichten erhalten. Wenn du eine sendest oder empfängst, wird sie hier zu sehen sein.",
"empty_column.domain_blocks": "Bisher wurden noch keine Domains blockiert.", "empty_column.domain_blocks": "Bisher wurden noch keine Domains blockiert.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Du hast keine Profile stummgeschaltet.", "empty_column.mutes": "Du hast keine Profile stummgeschaltet.",
"empty_column.notifications": "Du hast noch keine Mitteilungen. Interagiere mit anderen, um ins Gespräch zu kommen.", "empty_column.notifications": "Du hast noch keine Mitteilungen. Interagiere mit anderen, um ins Gespräch zu kommen.",
"empty_column.public": "Hier ist nichts zu sehen! Schreibe etwas öffentlich oder folge Profilen von anderen Servern, um die Zeitleiste aufzufüllen", "empty_column.public": "Hier ist nichts zu sehen! Schreibe etwas öffentlich oder folge Profilen von anderen Servern, um die Zeitleiste aufzufüllen",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} ist Teil des Fediverse, einem Sozialen Netzwerk, das aus tausenden unabhängigen Instanzen (aka \"Servern\") besteht. Die Beiträge, die du hier siehst, stammen überwiegend von anderen Servern. Du kannst auf alle Einträge reagieren oder jeden Server blockieren, der dir nicht gefällt. Die Bezeichnung hinter dem zweiten @-Symbol ist der Name des entsprechenden Servers. Um nur Beiträge von {site_title} zu sehen, wähle {local} aus.", "fediverse_tab.explanation_box.explanation": "{site_title} ist Teil des Fediverse, einem Sozialen Netzwerk, das aus tausenden unabhängigen Instanzen (aka \"Servern\") besteht. Die Beiträge, die du hier siehst, stammen überwiegend von anderen Servern. Du kannst auf alle Einträge reagieren oder jeden Server blockieren, der dir nicht gefällt. Die Bezeichnung hinter dem zweiten @-Symbol ist der Name des entsprechenden Servers. Um nur Beiträge von {site_title} zu sehen, wähle {local} aus.",
"fediverse_tab.explanation_box.title": "Was ist das Fediverse?", "fediverse_tab.explanation_box.title": "Was ist das Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Bestätigen", "follow_request.authorize": "Bestätigen",
"follow_request.reject": "Ablehnen", "follow_request.reject": "Ablehnen",
"getting_started.heading": "Erste Schritte", "getting_started.heading": "Erste Schritte",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "und {additional}", "hashtag.column_header.tag_mode.all": "und {additional}",
"hashtag.column_header.tag_mode.any": "oder {additional}", "hashtag.column_header.tag_mode.any": "oder {additional}",
"hashtag.column_header.tag_mode.none": "ohne {additional}", "hashtag.column_header.tag_mode.none": "ohne {additional}",
"home.column_settings.basic": "Basiseinstellungen", "home.column_settings.show_direct": "Show direct messages",
"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",
"home_column.lists": "Listen", "home_column.lists": "Listen",
@ -249,11 +288,28 @@
"lists.subheading": "Deine Listen", "lists.subheading": "Deine Listen",
"lists.view_all": "Alle Listen anzeigen", "lists.view_all": "Alle Listen anzeigen",
"loading_indicator.label": "Wird geladen …", "loading_indicator.label": "Wird geladen …",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Passwort", "login.fields.password_placeholder": "Passwort",
"login.fields.username_placeholder": "Nutzername", "login.fields.username_placeholder": "Nutzername",
"login.log_in": "Anmelden", "login.log_in": "Anmelden",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Probleme beim Anmelden?", "login.reset_password_hint": "Probleme beim Anmelden?",
"media_gallery.toggle_visible": "Sichtbarkeit umschalten", "media_gallery.toggle_visible": "Sichtbarkeit umschalten",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Nicht gefunden", "missing_indicator.label": "Nicht gefunden",
"missing_indicator.sublabel": "Die Ressource konnte nicht gefunden werden", "missing_indicator.sublabel": "Die Ressource konnte nicht gefunden werden",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Benachrichtigungen von diesem Account verbergen?", "mute_modal.hide_notifications": "Benachrichtigungen von diesem Account verbergen?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Blockierte Profile", "navigation_bar.blocks": "Blockierte Profile",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Lokale Zeitleiste", "navigation_bar.community_timeline": "Lokale Zeitleiste",
"navigation_bar.compose": "Neuen Beitrag verfassen", "navigation_bar.compose": "Neuen Beitrag verfassen",
"navigation_bar.direct": "Direktnachrichten", "navigation_bar.direct": "Direktnachrichten",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Geteilte Beiträge:", "notifications.column_settings.reblog": "Geteilte Beiträge:",
"notifications.column_settings.show": "In der Spalte anzeigen", "notifications.column_settings.show": "In der Spalte anzeigen",
"notifications.column_settings.sound": "Ton abspielen", "notifications.column_settings.sound": "Ton abspielen",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "Alle", "notifications.filter.all": "Alle",
"notifications.filter.boosts": "Geteilte Beiträge", "notifications.filter.boosts": "Geteilte Beiträge",
"notifications.filter.favourites": "Favorisierungen", "notifications.filter.favourites": "Favorisierungen",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Passwort", "registration.fields.password_placeholder": "Passwort",
"registration.fields.username_placeholder": "Nutzername", "registration.fields.username_placeholder": "Nutzername",
"registration.lead": "Mit einem Konto auf {instance} kannst du Nutzern im gesamten Fediverse folgen.", "registration.lead": "Mit einem Konto auf {instance} kannst du Nutzern im gesamten Fediverse folgen.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Registrieren", "registration.sign_up": "Registrieren",
"registration.tos": "Nutzungsbedingungen", "registration.tos": "Nutzungsbedingungen",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
@ -379,8 +440,12 @@
"search_results.statuses": "Beiträge", "search_results.statuses": "Beiträge",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {Ergebnis} other {Ergebnisse}}", "search_results.total": "{count, number} {count, plural, one {Ergebnis} other {Ergebnisse}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Emailaddresse", "security.fields.email.label": "Emailaddresse",
"security.fields.new_password.label": "Neues Passwort", "security.fields.new_password.label": "Neues Passwort",
"security.fields.old_password.label": "Bisheriges Passwort", "security.fields.old_password.label": "Bisheriges Passwort",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Email ändern", "security.headers.update_email": "Email ändern",
"security.headers.update_password": "Passwort ändern", "security.headers.update_password": "Passwort ändern",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Änderungen speichern", "security.submit": "Änderungen speichern",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Öffne Moderationsoberfläche für @{name}", "status.admin_account": "Öffne Moderationsoberfläche für @{name}",
"status.admin_status": "Öffne Beitrag in der Moderationsoberfläche", "status.admin_status": "Öffne Beitrag in der Moderationsoberfläche",
"status.block": "Blockiere @{name}", "status.block": "Blockiere @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Nicht mehr teilen", "status.cancel_reblog_private": "Nicht mehr teilen",
"status.cannot_reblog": "Dieser Beitrag kann nicht geteilt werden", "status.cannot_reblog": "Dieser Beitrag kann nicht geteilt werden",
"status.copy": "Kopiere Link zum Beitrag", "status.copy": "Kopiere Link zum Beitrag",
@ -439,6 +510,7 @@
"status.show_more": "Mehr anzeigen", "status.show_more": "Mehr anzeigen",
"status.show_more_all": "Alle Inhaltswarnungen aufklappen", "status.show_more_all": "Alle Inhaltswarnungen aufklappen",
"status.show_thread": "Zeige Konversation", "status.show_thread": "Zeige Konversation",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Stummschaltung von Konversation aufheben", "status.unmute_conversation": "Stummschaltung von Konversation aufheben",
"status.unpin": "Vom Profil lösen", "status.unpin": "Vom Profil lösen",
"status_list.queue_label": "{count, plural, one {Ein neuer Beitrag} other {# neue Beiträge}}. Hier klicken, um {count, plural, one {ihn} other {sie}} anzuzeigen.", "status_list.queue_label": "{count, plural, one {Ein neuer Beitrag} other {# neue Beiträge}}. Hier klicken, um {count, plural, one {ihn} other {sie}} anzuzeigen.",

View File

@ -365,6 +365,10 @@
"defaultMessage": "Lists", "defaultMessage": "Lists",
"id": "column.lists" "id": "column.lists"
}, },
{
"defaultMessage": "Bookmarks",
"id": "column.bookmarks"
},
{ {
"defaultMessage": "Apps", "defaultMessage": "Apps",
"id": "tabs_bar.apps" "id": "tabs_bar.apps"
@ -446,6 +450,14 @@
"defaultMessage": "Expand this post", "defaultMessage": "Expand this post",
"id": "status.open" "id": "status.open"
}, },
{
"defaultMessage": "Bookmark",
"id": "status.bookmark"
},
{
"defaultMessage": "Remove bookmark",
"id": "status.unbookmark"
},
{ {
"defaultMessage": "Report @{name}", "defaultMessage": "Report @{name}",
"id": "status.report" "id": "status.report"
@ -709,22 +721,6 @@
}, },
{ {
"descriptors": [ "descriptors": [
{
"defaultMessage": "Unfollow",
"id": "account.unfollow"
},
{
"defaultMessage": "Follow",
"id": "account.follow"
},
{
"defaultMessage": "Awaiting approval. Click to cancel follow request",
"id": "account.requested"
},
{
"defaultMessage": "Unblock @{name}",
"id": "account.unblock"
},
{ {
"defaultMessage": "Edit profile", "defaultMessage": "Edit profile",
"id": "account.edit_profile" "id": "account.edit_profile"
@ -935,6 +931,31 @@
], ],
"path": "app/soapbox/features/auth_login/components/login_form.json" "path": "app/soapbox/features/auth_login/components/login_form.json"
}, },
{
"descriptors": [
{
"defaultMessage": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"id": "login.fields.otp_code_hint"
},
{
"defaultMessage": "Two-factor code:",
"id": "login.fields.otp_code_label"
},
{
"defaultMessage": "OTP Login",
"id": "login.otp_log_in"
},
{
"defaultMessage": "Invalid code, please try again.",
"id": "login.otp_log_in.fail"
},
{
"defaultMessage": "Log in",
"id": "login.log_in"
}
],
"path": "app/soapbox/features/auth_login/components/otp_auth_form.json"
},
{ {
"descriptors": [ "descriptors": [
{ {
@ -950,6 +971,27 @@
}, },
{ {
"descriptors": [ "descriptors": [
{
"defaultMessage": "Bookmarks",
"id": "column.bookmarks"
},
{
"defaultMessage": "You don't have any bookmarks yet. When you add one, it will show up here.",
"id": "empty_column.bookmarks"
}
],
"path": "app/soapbox/features/bookmarks/index.json"
},
{
"descriptors": [
{
"defaultMessage": "Show reposts",
"id": "home.column_settings.show_reblogs"
},
{
"defaultMessage": "Show replies",
"id": "home.column_settings.show_replies"
},
{ {
"defaultMessage": "Media Only", "defaultMessage": "Media Only",
"id": "community.column_settings.media_only" "id": "community.column_settings.media_only"
@ -984,6 +1026,10 @@
"defaultMessage": "Lists", "defaultMessage": "Lists",
"id": "navigation_bar.lists" "id": "navigation_bar.lists"
}, },
{
"defaultMessage": "Bookmarks",
"id": "navigation_bar.bookmarks"
},
{ {
"defaultMessage": "Preferences", "defaultMessage": "Preferences",
"id": "navigation_bar.preferences" "id": "navigation_bar.preferences"
@ -1271,7 +1317,7 @@
{ {
"descriptors": [ "descriptors": [
{ {
"defaultMessage": "Add media (JPEG, PNG, GIF, WebM, MP4, MOV)", "defaultMessage": "Add media attachment",
"id": "upload_button.label" "id": "upload_button.label"
} }
], ],
@ -1303,6 +1349,19 @@
], ],
"path": "app/soapbox/features/compose/components/upload.json" "path": "app/soapbox/features/compose/components/upload.json"
}, },
{
"descriptors": [
{
"defaultMessage": "Post markdown enabled",
"id": "compose_form.markdown.marked"
},
{
"defaultMessage": "Post markdown disabled",
"id": "compose_form.markdown.unmarked"
}
],
"path": "app/soapbox/features/compose/containers/markdown_button_container.json"
},
{ {
"descriptors": [ "descriptors": [
{ {
@ -1439,6 +1498,10 @@
"defaultMessage": "Content", "defaultMessage": "Content",
"id": "edit_profile.fields.meta_fields.content_placeholder" "id": "edit_profile.fields.meta_fields.content_placeholder"
}, },
{
"defaultMessage": "Verified users may not update their display name",
"id": "edit_profile.fields.verified_display_name"
},
{ {
"defaultMessage": "Display name", "defaultMessage": "Display name",
"id": "edit_profile.fields.display_name_label" "id": "edit_profile.fields.display_name_label"
@ -1518,9 +1581,113 @@
"defaultMessage": "Muted words", "defaultMessage": "Muted words",
"id": "column.filters" "id": "column.filters"
}, },
{
"defaultMessage": "Add New Filter",
"id": "column.filters.subheading_add_new"
},
{
"defaultMessage": "Keyword or phrase",
"id": "column.filters.keyword"
},
{
"defaultMessage": "Expire after",
"id": "column.filters.expires"
},
{
"defaultMessage": "Expiration dates are not currently supported",
"id": "column.filters.expires_hint"
},
{
"defaultMessage": "Home timeline",
"id": "column.filters.home_timeline"
},
{
"defaultMessage": "Public timeline",
"id": "column.filters.public_timeline"
},
{
"defaultMessage": "Notifications",
"id": "column.filters.notifications"
},
{
"defaultMessage": "Conversations",
"id": "column.filters.conversations"
},
{
"defaultMessage": "Drop instead of hide",
"id": "column.filters.drop_header"
},
{
"defaultMessage": "Filtered posts will disappear irreversibly, even if filter is later removed",
"id": "column.filters.drop_hint"
},
{
"defaultMessage": "Whole word",
"id": "column.filters.whole_word_header"
},
{
"defaultMessage": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"id": "column.filters.whole_word_hint"
},
{
"defaultMessage": "Add New Filter",
"id": "column.filters.add_new"
},
{
"defaultMessage": "Error adding filter",
"id": "column.filters.create_error"
},
{
"defaultMessage": "Error deleting filter",
"id": "column.filters.delete_error"
},
{
"defaultMessage": "Current Filters",
"id": "column.filters.subheading_filters"
},
{
"defaultMessage": "Delete",
"id": "column.filters.delete"
},
{ {
"defaultMessage": "You haven't created any muted words yet.", "defaultMessage": "You haven't created any muted words yet.",
"id": "empty_column.filters" "id": "empty_column.filters"
},
{
"defaultMessage": "Filter contexts",
"id": "filters.context_header"
},
{
"defaultMessage": "One or multiple contexts where the filter should apply",
"id": "filters.context_hint"
},
{
"defaultMessage": "Keyword or phrase:",
"id": "filters.filters_list_phrase_label"
},
{
"defaultMessage": "Filter contexts:",
"id": "filters.filters_list_context_label"
},
{
"defaultMessage": "Filter settings:",
"id": "filters.filters_list_details_label"
},
{
"defaultMessage": "Drop",
"id": "filters.filters_list_drop"
},
{
"defaultMessage": "Hide",
"id": "filters.filters_list_hide"
},
{
"defaultMessage": "Whole word",
"id": "filters.filters_list_whole-word"
},
{
"defaultMessage": "Delete",
"id": "filters.filters_list_delete"
} }
], ],
"path": "app/soapbox/features/filters/index.json" "path": "app/soapbox/features/filters/index.json"
@ -1800,10 +1967,6 @@
}, },
{ {
"descriptors": [ "descriptors": [
{
"defaultMessage": "Basic",
"id": "home.column_settings.basic"
},
{ {
"defaultMessage": "Show reposts", "defaultMessage": "Show reposts",
"id": "home.column_settings.show_reblogs" "id": "home.column_settings.show_reblogs"
@ -1811,6 +1974,10 @@
{ {
"defaultMessage": "Show replies", "defaultMessage": "Show replies",
"id": "home.column_settings.show_replies" "id": "home.column_settings.show_replies"
},
{
"defaultMessage": "Show direct messages",
"id": "home.column_settings.show_direct"
} }
], ],
"path": "app/soapbox/features/home_timeline/components/column_settings.json" "path": "app/soapbox/features/home_timeline/components/column_settings.json"
@ -1862,6 +2029,14 @@
"defaultMessage": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "defaultMessage": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"id": "registration.lead" "id": "registration.lead"
}, },
{
"defaultMessage": "Why do you want to join?",
"id": "registration.reason"
},
{
"defaultMessage": "This will help us review your application",
"id": "registration.reason_hint"
},
{ {
"defaultMessage": "Sign up", "defaultMessage": "Sign up",
"id": "registration.sign_up" "id": "registration.sign_up"
@ -2074,6 +2249,10 @@
"defaultMessage": "Desktop notifications", "defaultMessage": "Desktop notifications",
"id": "notifications.column_settings.alert" "id": "notifications.column_settings.alert"
}, },
{
"defaultMessage": "Play sound for all notifications",
"id": "notifications.column_settings.sounds.all_sounds"
},
{ {
"defaultMessage": "Show in column", "defaultMessage": "Show in column",
"id": "notifications.column_settings.show" "id": "notifications.column_settings.show"
@ -2086,6 +2265,10 @@
"defaultMessage": "Push notifications", "defaultMessage": "Push notifications",
"id": "notifications.column_settings.push" "id": "notifications.column_settings.push"
}, },
{
"defaultMessage": "Sounds",
"id": "notifications.column_settings.sounds"
},
{ {
"defaultMessage": "Quick filter bar", "defaultMessage": "Quick filter bar",
"id": "notifications.column_settings.filter_bar.category" "id": "notifications.column_settings.filter_bar.category"
@ -2289,6 +2472,32 @@
}, },
{ {
"descriptors": [ "descriptors": [
{
"defaultMessage": "Follows you",
"id": "account.follows_you"
}
],
"path": "app/soapbox/features/profile_hover_card/profile_hover_card_container.json"
},
{
"descriptors": [
{
"defaultMessage": "Close",
"id": "lightbox.close"
}
],
"path": "app/soapbox/features/public_layout/components/header.json"
},
{
"descriptors": [
{
"defaultMessage": "Show reposts",
"id": "home.column_settings.show_reblogs"
},
{
"defaultMessage": "Show replies",
"id": "home.column_settings.show_replies"
},
{ {
"defaultMessage": "Media Only", "defaultMessage": "Media Only",
"id": "community.column_settings.media_only" "id": "community.column_settings.media_only"
@ -2420,10 +2629,131 @@
{ {
"defaultMessage": "Account deletion failed.", "defaultMessage": "Account deletion failed.",
"id": "security.delete_account.fail" "id": "security.delete_account.fail"
},
{
"defaultMessage": "Set up 2-Factor Auth",
"id": "security.mfa"
},
{
"defaultMessage": "Configure multi-factor authentication with OTP",
"id": "security.mfa_setup_hint"
},
{
"defaultMessage": "You have multi-factor authentication set up with OTP.",
"id": "security.mfa_enabled"
},
{
"defaultMessage": "Disable",
"id": "security.disable_mfa"
},
{
"defaultMessage": "Authorization Methods",
"id": "security.mfa_header"
} }
], ],
"path": "app/soapbox/features/security/index.json" "path": "app/soapbox/features/security/index.json"
}, },
{
"descriptors": [
{
"defaultMessage": "Security",
"id": "column.security"
},
{
"defaultMessage": "Multi-Factor Authentication",
"id": "column.mfa"
},
{
"defaultMessage": "Cancel",
"id": "column.mfa_cancel"
},
{
"defaultMessage": "Proceed to Setup",
"id": "column.mfa_setup"
},
{
"defaultMessage": "Confirm",
"id": "column.mfa_confirm_button"
},
{
"defaultMessage": "Disable",
"id": "column.mfa_disable_button"
},
{
"defaultMessage": "Password",
"id": "security.fields.password.label"
},
{
"defaultMessage": "Incorrect code or password. Try again.",
"id": "security.confirm.fail"
},
{
"defaultMessage": "Failed to fetch setup key",
"id": "security.qr.fail"
},
{
"defaultMessage": "Failed to fetch backup codes",
"id": "security.codes.fail"
},
{
"defaultMessage": "Incorrect password. Try again.",
"id": "security.disable.fail"
},
{
"defaultMessage": "OTP Enabled",
"id": "mfa.otp_enabled_title"
},
{
"defaultMessage": "You have enabled two-factor authentication via OTP.",
"id": "mfa.otp_enabled_description"
},
{
"defaultMessage": "Enter your current password to disable two-factor auth:",
"id": "mfa.mfa_disable_enter_password"
},
{
"defaultMessage": "OTP Disabled",
"id": "mfa.setup_otp_title"
},
{
"defaultMessage": "Follow these steps to set up multi-factor authentication on your account with OTP",
"id": "mfa.setup_hint"
},
{
"defaultMessage": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"id": "mfa.setup_warning"
},
{
"defaultMessage": "Recovery codes",
"id": "mfa.setup_recoverycodes"
},
{
"defaultMessage": "Scan",
"id": "mfa.mfa_setup_scan_title"
},
{
"defaultMessage": "Using your two-factor app, scan this QR code or enter text key:",
"id": "mfa.mfa_setup_scan_description"
},
{
"defaultMessage": "Key:",
"id": "mfa.mfa_setup_scan_key"
},
{
"defaultMessage": "Verify",
"id": "mfa.mfa_setup_verify_title"
},
{
"defaultMessage": "To enable two-factor authentication, enter the code from your two-factor app:",
"id": "mfa.mfa_setup_verify_description"
},
{
"defaultMessage": "Enter your current password to confirm your identity:",
"id": "mfa.mfa_setup_enter_password"
}
],
"path": "app/soapbox/features/security/mfa_form.json"
},
{ {
"descriptors": [ "descriptors": [
{ {
@ -2570,6 +2900,35 @@
], ],
"path": "app/soapbox/features/status/index.json" "path": "app/soapbox/features/status/index.json"
}, },
{
"descriptors": [
{
"defaultMessage": "Unfollow",
"id": "account.unfollow"
},
{
"defaultMessage": "Follow",
"id": "account.follow"
},
{
"defaultMessage": "Awaiting approval. Click to cancel follow request",
"id": "account.requested"
},
{
"defaultMessage": "Awaiting approval",
"id": "account.requested_small"
},
{
"defaultMessage": "Unblock @{name}",
"id": "account.unblock"
},
{
"defaultMessage": "Edit profile",
"id": "account.edit_profile"
}
],
"path": "app/soapbox/features/ui/components/action_button.json"
},
{ {
"descriptors": [ "descriptors": [
{ {
@ -2668,6 +3027,48 @@
], ],
"path": "app/soapbox/features/ui/components/embed_modal.json" "path": "app/soapbox/features/ui/components/embed_modal.json"
}, },
{
"descriptors": [
{
"defaultMessage": "Collapse explanation box",
"id": "explanation_box.collapse"
},
{
"defaultMessage": "Expand explanation box",
"id": "explanation_box.expand"
}
],
"path": "app/soapbox/features/ui/components/explanation_box.json"
},
{
"descriptors": [
{
"defaultMessage": "Edit Profile",
"id": "account.edit_profile"
},
{
"defaultMessage": "Messages",
"id": "navigation_bar.messages"
},
{
"defaultMessage": "Preferences",
"id": "navigation_bar.preferences"
},
{
"defaultMessage": "Security",
"id": "navigation_bar.security"
},
{
"defaultMessage": "Lists",
"id": "column.lists"
},
{
"defaultMessage": "Bookmarks",
"id": "column.bookmarks"
}
],
"path": "app/soapbox/features/ui/components/features_panel.json"
},
{ {
"descriptors": [ "descriptors": [
{ {

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Κατάγγειλε @{name}", "account.report": "Κατάγγειλε @{name}",
"account.requested": "Εκκρεμεί έγκριση. Κάνε κλικ για να ακυρώσεις το αίτημα παρακολούθησης", "account.requested": "Εκκρεμεί έγκριση. Κάνε κλικ για να ακυρώσεις το αίτημα παρακολούθησης",
"account.requested_small": "Awaiting approval",
"account.share": "Μοίρασμα του προφίλ @{name}", "account.share": "Μοίρασμα του προφίλ @{name}",
"account.show_reblogs": "Εμφάνιση προωθήσεων από @{name}", "account.show_reblogs": "Εμφάνιση προωθήσεων από @{name}",
"account.unblock": "Ξεμπλόκαρε @{name}", "account.unblock": "Ξεμπλόκαρε @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Κάτι πήγε στραβά κατά τη φόρτωση του στοιχείου.", "bundle_modal_error.message": "Κάτι πήγε στραβά κατά τη φόρτωση του στοιχείου.",
"bundle_modal_error.retry": "Δοκίμασε ξανά", "bundle_modal_error.retry": "Δοκίμασε ξανά",
"column.blocks": "Αποκλεισμένοι χρήστες", "column.blocks": "Αποκλεισμένοι χρήστες",
"column.bookmarks": "Bookmarks",
"column.community": "Τοπική ροή", "column.community": "Τοπική ροή",
"column.direct": "Προσωπικά μηνύματα", "column.direct": "Προσωπικά μηνύματα",
"column.domain_blocks": "Κρυμμένοι τομείς", "column.domain_blocks": "Κρυμμένοι τομείς",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Αιτήματα ακολούθησης", "column.follow_requests": "Αιτήματα ακολούθησης",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Αρχική", "column.home": "Αρχική",
"column.lists": "Λίστες", "column.lists": "Λίστες",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Αποσιωπημένοι χρήστες", "column.mutes": "Αποσιωπημένοι χρήστες",
"column.notifications": "Ειδοποιήσεις", "column.notifications": "Ειδοποιήσεις",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "Αυτό το τουτ δεν θα εμφανίζεται κάτω από κανένα hashtag καθώς είναι αφανές. Μόνο τα δημόσια τουτ μπορούν να αναζητηθούν ανά hashtag.", "compose_form.hashtag_warning": "Αυτό το τουτ δεν θα εμφανίζεται κάτω από κανένα hashtag καθώς είναι αφανές. Μόνο τα δημόσια τουτ μπορούν να αναζητηθούν ανά hashtag.",
"compose_form.lock_disclaimer": "Ο λογαριασμός σου δεν είναι {locked}. Οποιοσδήποτε μπορεί να σε ακολουθήσει για να δει τις δημοσιεύσεις σας προς τους ακολούθους σας.", "compose_form.lock_disclaimer": "Ο λογαριασμός σου δεν είναι {locked}. Οποιοσδήποτε μπορεί να σε ακολουθήσει για να δει τις δημοσιεύσεις σας προς τους ακολούθους σας.",
"compose_form.lock_disclaimer.lock": "κλειδωμένο", "compose_form.lock_disclaimer.lock": "κλειδωμένο",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "Τι σκέφτεσαι;", "compose_form.placeholder": "Τι σκέφτεσαι;",
"compose_form.poll.add_option": "Προσθήκη επιλογής", "compose_form.poll.add_option": "Προσθήκη επιλογής",
"compose_form.poll.duration": "Διάρκεια δημοσκόπησης", "compose_form.poll.duration": "Διάρκεια δημοσκόπησης",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "Δεν έχει τουτ εδώ!", "empty_column.account_timeline": "Δεν έχει τουτ εδώ!",
"empty_column.account_unavailable": "Μη διαθέσιμο προφίλ", "empty_column.account_unavailable": "Μη διαθέσιμο προφίλ",
"empty_column.blocks": "Δεν έχεις αποκλείσει κανέναν χρήστη ακόμα.", "empty_column.blocks": "Δεν έχεις αποκλείσει κανέναν χρήστη ακόμα.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "Η τοπική ροή είναι κενή. Γράψε κάτι δημόσιο παραμύθι ν' αρχινίσει!", "empty_column.community": "Η τοπική ροή είναι κενή. Γράψε κάτι δημόσιο παραμύθι ν' αρχινίσει!",
"empty_column.direct": "Δεν έχεις προσωπικά μηνύματα ακόμα. Όταν στείλεις ή λάβεις κανένα, θα εμφανιστεί εδώ.", "empty_column.direct": "Δεν έχεις προσωπικά μηνύματα ακόμα. Όταν στείλεις ή λάβεις κανένα, θα εμφανιστεί εδώ.",
"empty_column.domain_blocks": "Δεν υπάρχουν αποκλεισμένοι τομείς ακόμα.", "empty_column.domain_blocks": "Δεν υπάρχουν αποκλεισμένοι τομείς ακόμα.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Δεν έχεις αποσιωπήσει κανένα χρήστη ακόμα.", "empty_column.mutes": "Δεν έχεις αποσιωπήσει κανένα χρήστη ακόμα.",
"empty_column.notifications": "Δεν έχεις ειδοποιήσεις ακόμα. Αλληλεπίδρασε με άλλους χρήστες για να ξεκινήσεις την κουβέντα.", "empty_column.notifications": "Δεν έχεις ειδοποιήσεις ακόμα. Αλληλεπίδρασε με άλλους χρήστες για να ξεκινήσεις την κουβέντα.",
"empty_column.public": "Δεν υπάρχει τίποτα εδώ! Γράψε κάτι δημόσιο, ή ακολούθησε χειροκίνητα χρήστες από άλλους κόμβους για να τη γεμίσεις", "empty_column.public": "Δεν υπάρχει τίποτα εδώ! Γράψε κάτι δημόσιο, ή ακολούθησε χειροκίνητα χρήστες από άλλους κόμβους για να τη γεμίσεις",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Ενέκρινε", "follow_request.authorize": "Ενέκρινε",
"follow_request.reject": "Απέρριψε", "follow_request.reject": "Απέρριψε",
"getting_started.heading": "Αφετηρία", "getting_started.heading": "Αφετηρία",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "και {additional}", "hashtag.column_header.tag_mode.all": "και {additional}",
"hashtag.column_header.tag_mode.any": "ή {additional}", "hashtag.column_header.tag_mode.any": "ή {additional}",
"hashtag.column_header.tag_mode.none": "χωρίς {additional}", "hashtag.column_header.tag_mode.none": "χωρίς {additional}",
"home.column_settings.basic": "Βασικές ρυθμίσεις", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "Εμφάνιση προωθήσεων", "home.column_settings.show_reblogs": "Εμφάνιση προωθήσεων",
"home.column_settings.show_replies": "Εμφάνιση απαντήσεων", "home.column_settings.show_replies": "Εμφάνιση απαντήσεων",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Οι λίστες σου", "lists.subheading": "Οι λίστες σου",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Φορτώνει...", "loading_indicator.label": "Φορτώνει...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Εναλλαγή ορατότητας", "media_gallery.toggle_visible": "Εναλλαγή ορατότητας",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Δε βρέθηκε", "missing_indicator.label": "Δε βρέθηκε",
"missing_indicator.sublabel": "Αδύνατη η εύρεση αυτού του πόρου", "missing_indicator.sublabel": "Αδύνατη η εύρεση αυτού του πόρου",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Απόκρυψη ειδοποιήσεων αυτού του χρήστη;", "mute_modal.hide_notifications": "Απόκρυψη ειδοποιήσεων αυτού του χρήστη;",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Αποκλεισμένοι χρήστες", "navigation_bar.blocks": "Αποκλεισμένοι χρήστες",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Τοπική ροή", "navigation_bar.community_timeline": "Τοπική ροή",
"navigation_bar.compose": "Γράψε νέο τουτ", "navigation_bar.compose": "Γράψε νέο τουτ",
"navigation_bar.direct": "Προσωπικά μηνύματα", "navigation_bar.direct": "Προσωπικά μηνύματα",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Προωθήσεις:", "notifications.column_settings.reblog": "Προωθήσεις:",
"notifications.column_settings.show": "Εμφάνισε σε στήλη", "notifications.column_settings.show": "Εμφάνισε σε στήλη",
"notifications.column_settings.sound": "Ηχητική ειδοποίηση", "notifications.column_settings.sound": "Ηχητική ειδοποίηση",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "Όλες", "notifications.filter.all": "Όλες",
"notifications.filter.boosts": "Προωθήσεις", "notifications.filter.boosts": "Προωθήσεις",
"notifications.filter.favourites": "Αγαπημένα", "notifications.filter.favourites": "Αγαπημένα",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}η", "relative_time.days": "{number}η",
@ -379,8 +440,12 @@
"search_results.statuses": "Τουτ", "search_results.statuses": "Τουτ",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, zero {αποτελέσματα} one {αποτέλεσμα} other {αποτελέσματα}}", "search_results.total": "{count, number} {count, plural, zero {αποτελέσματα} one {αποτέλεσμα} other {αποτελέσματα}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Άνοιγμα λειτουργίας διαμεσολάβησης για τον/την @{name}", "status.admin_account": "Άνοιγμα λειτουργίας διαμεσολάβησης για τον/την @{name}",
"status.admin_status": "Άνοιγμα αυτής της δημοσίευσης στη λειτουργία διαμεσολάβησης", "status.admin_status": "Άνοιγμα αυτής της δημοσίευσης στη λειτουργία διαμεσολάβησης",
"status.block": "Αποκλεισμός @{name}", "status.block": "Αποκλεισμός @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Ακύρωσε την προώθηση", "status.cancel_reblog_private": "Ακύρωσε την προώθηση",
"status.cannot_reblog": "Αυτή η δημοσίευση δεν μπορεί να προωθηθεί", "status.cannot_reblog": "Αυτή η δημοσίευση δεν μπορεί να προωθηθεί",
"status.copy": "Αντιγραφή συνδέσμου της δημοσίευσης", "status.copy": "Αντιγραφή συνδέσμου της δημοσίευσης",
@ -439,6 +510,7 @@
"status.show_more": "Δείξε περισσότερα", "status.show_more": "Δείξε περισσότερα",
"status.show_more_all": "Δείξε περισσότερα για όλα", "status.show_more_all": "Δείξε περισσότερα για όλα",
"status.show_thread": "Εμφάνιση νήματος", "status.show_thread": "Εμφάνιση νήματος",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Διέκοψε την αποσιώπηση της συζήτησης", "status.unmute_conversation": "Διέκοψε την αποσιώπηση της συζήτησης",
"status.unpin": "Ξεκαρφίτσωσε από το προφίλ", "status.unpin": "Ξεκαρφίτσωσε από το προφίλ",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Report @{name}", "account.report": "Report @{name}",
"account.requested": "Awaiting approval. Click to cancel follow request", "account.requested": "Awaiting approval. Click to cancel follow request",
"account.requested_small": "Awaiting approval",
"account.share": "Share @{name}'s profile", "account.share": "Share @{name}'s profile",
"account.show_reblogs": "Show reposts from @{name}", "account.show_reblogs": "Show reposts from @{name}",
"account.unblock": "Unblock @{name}", "account.unblock": "Unblock @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Something went wrong while loading this component.", "bundle_modal_error.message": "Something went wrong while loading this component.",
"bundle_modal_error.retry": "Try again", "bundle_modal_error.retry": "Try again",
"column.blocks": "Blocked users", "column.blocks": "Blocked users",
"column.bookmarks": "Bookmarks",
"column.community": "Local timeline", "column.community": "Local timeline",
"column.direct": "Direct messages", "column.direct": "Direct messages",
"column.domain_blocks": "Hidden domains", "column.domain_blocks": "Hidden domains",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Follow requests", "column.follow_requests": "Follow requests",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Home", "column.home": "Home",
"column.lists": "Lists", "column.lists": "Lists",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Muted users", "column.mutes": "Muted users",
"column.notifications": "Notifications", "column.notifications": "Notifications",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "This post won't be listed under any hashtag as it is unlisted. Only public posts can be searched by hashtag.", "compose_form.hashtag_warning": "This post won't be listed under any hashtag as it is unlisted. Only public posts 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": "Your account is not {locked}. Anyone can follow you to view your follower-only posts.",
"compose_form.lock_disclaimer.lock": "locked", "compose_form.lock_disclaimer.lock": "locked",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "What's on your mind?", "compose_form.placeholder": "What's on your mind?",
"compose_form.poll.add_option": "Add a choice", "compose_form.poll.add_option": "Add a choice",
"compose_form.poll.duration": "Poll duration", "compose_form.poll.duration": "Poll duration",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "No posts here!", "empty_column.account_timeline": "No posts here!",
"empty_column.account_unavailable": "Profile unavailable", "empty_column.account_unavailable": "Profile unavailable",
"empty_column.blocks": "You haven't blocked any users yet.", "empty_column.blocks": "You haven't blocked any users yet.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!", "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.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.domain_blocks": "There are no hidden domains yet.",
@ -165,8 +193,19 @@
"empty_column.mutes": "You haven't muted any users yet.", "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.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 servers to fill it up", "empty_column.public": "There is nothing here! Write something publicly, or manually follow users from other servers to fill it up",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Authorize", "follow_request.authorize": "Authorize",
"follow_request.reject": "Reject", "follow_request.reject": "Reject",
"getting_started.heading": "Getting started", "getting_started.heading": "Getting started",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "and {additional}", "hashtag.column_header.tag_mode.all": "and {additional}",
"hashtag.column_header.tag_mode.any": "or {additional}", "hashtag.column_header.tag_mode.any": "or {additional}",
"hashtag.column_header.tag_mode.none": "without {additional}", "hashtag.column_header.tag_mode.none": "without {additional}",
"home.column_settings.basic": "Basic", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "Show reposts", "home.column_settings.show_reblogs": "Show reposts",
"home.column_settings.show_replies": "Show replies", "home.column_settings.show_replies": "Show replies",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Your lists", "lists.subheading": "Your lists",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Loading...", "loading_indicator.label": "Loading...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Toggle visibility", "media_gallery.toggle_visible": "Toggle visibility",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Not found", "missing_indicator.label": "Not found",
"missing_indicator.sublabel": "This resource could not be found", "missing_indicator.sublabel": "This resource could not be found",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Hide notifications from this user?", "mute_modal.hide_notifications": "Hide notifications from this user?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Blocked users", "navigation_bar.blocks": "Blocked users",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Local timeline", "navigation_bar.community_timeline": "Local timeline",
"navigation_bar.compose": "Compose new post", "navigation_bar.compose": "Compose new post",
"navigation_bar.direct": "Direct messages", "navigation_bar.direct": "Direct messages",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Reposts:", "notifications.column_settings.reblog": "Reposts:",
"notifications.column_settings.show": "Show in column", "notifications.column_settings.show": "Show in column",
"notifications.column_settings.sound": "Play sound", "notifications.column_settings.sound": "Play sound",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "All", "notifications.filter.all": "All",
"notifications.filter.boosts": "Reposts", "notifications.filter.boosts": "Reposts",
"notifications.filter.favourites": "Likes", "notifications.filter.favourites": "Likes",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
@ -379,8 +440,12 @@
"search_results.statuses": "Posts", "search_results.statuses": "Posts",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {result} other {results}}", "search_results.total": "{count, number} {count, plural, one {result} other {results}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Open moderation interface for @{name}", "status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface", "status.admin_status": "Open this post in the moderation interface",
"status.block": "Block @{name}", "status.block": "Block @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Un-repost", "status.cancel_reblog_private": "Un-repost",
"status.cannot_reblog": "This post cannot be reposted", "status.cannot_reblog": "This post cannot be reposted",
"status.copy": "Copy link to post", "status.copy": "Copy link to post",
@ -439,6 +510,7 @@
"status.show_more": "Show more", "status.show_more": "Show more",
"status.show_more_all": "Show more for all", "status.show_more_all": "Show more for all",
"status.show_thread": "Show thread", "status.show_thread": "Show thread",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Unmute conversation", "status.unmute_conversation": "Unmute conversation",
"status.unpin": "Unpin from profile", "status.unpin": "Unpin from profile",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Signali @{name}", "account.report": "Signali @{name}",
"account.requested": "Atendo de aprobo. Alklaku por nuligi peton de sekvado", "account.requested": "Atendo de aprobo. Alklaku por nuligi peton de sekvado",
"account.requested_small": "Awaiting approval",
"account.share": "Diskonigi la profilon de @{name}", "account.share": "Diskonigi la profilon de @{name}",
"account.show_reblogs": "Montri diskonigojn de @{name}", "account.show_reblogs": "Montri diskonigojn de @{name}",
"account.unblock": "Malbloki @{name}", "account.unblock": "Malbloki @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Io misfunkciis en la ŝargado de ĉi tiu elemento.", "bundle_modal_error.message": "Io misfunkciis en la ŝargado de ĉi tiu elemento.",
"bundle_modal_error.retry": "Bonvolu reprovi", "bundle_modal_error.retry": "Bonvolu reprovi",
"column.blocks": "Blokitaj uzantoj", "column.blocks": "Blokitaj uzantoj",
"column.bookmarks": "Bookmarks",
"column.community": "Loka tempolinio", "column.community": "Loka tempolinio",
"column.direct": "Rektaj mesaĝoj", "column.direct": "Rektaj mesaĝoj",
"column.domain_blocks": "Kaŝitaj domajnoj", "column.domain_blocks": "Kaŝitaj domajnoj",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Petoj de sekvado", "column.follow_requests": "Petoj de sekvado",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Hejmo", "column.home": "Hejmo",
"column.lists": "Listoj", "column.lists": "Listoj",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Silentigitaj uzantoj", "column.mutes": "Silentigitaj uzantoj",
"column.notifications": "Sciigoj", "column.notifications": "Sciigoj",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "Ĉi tiu mesaĝo ne estos listigita per ajna kradvorto. Nur publikaj mesaĝoj estas serĉeblaj per kradvortoj.", "compose_form.hashtag_warning": "Ĉi tiu mesaĝo ne estos listigita per ajna kradvorto. Nur publikaj mesaĝoj estas serĉeblaj per kradvortoj.",
"compose_form.lock_disclaimer": "Via konta ne estas {locked}. Iu ajn povas sekvi vin por vidi viajn mesaĝojn, kiuj estas nur por sekvantoj.", "compose_form.lock_disclaimer": "Via konta ne estas {locked}. Iu ajn povas sekvi vin por vidi viajn mesaĝojn, kiuj estas nur por sekvantoj.",
"compose_form.lock_disclaimer.lock": "ŝlosita", "compose_form.lock_disclaimer.lock": "ŝlosita",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "Pri kio vi pensas?", "compose_form.placeholder": "Pri kio vi pensas?",
"compose_form.poll.add_option": "Aldoni elekteblon", "compose_form.poll.add_option": "Aldoni elekteblon",
"compose_form.poll.duration": "Balotenketa daŭro", "compose_form.poll.duration": "Balotenketa daŭro",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "Neniu mesaĝo ĉi tie!", "empty_column.account_timeline": "Neniu mesaĝo ĉi tie!",
"empty_column.account_unavailable": "Profilo ne disponebla", "empty_column.account_unavailable": "Profilo ne disponebla",
"empty_column.blocks": "Vi ankoraŭ ne blokis uzanton.", "empty_column.blocks": "Vi ankoraŭ ne blokis uzanton.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "La loka tempolinio estas malplena. Skribu ion por plenigi ĝin!", "empty_column.community": "La loka tempolinio estas malplena. Skribu ion por plenigi ĝin!",
"empty_column.direct": "Vi ankoraŭ ne havas rektan mesaĝon. Kiam vi sendos aŭ ricevos iun, ĝi aperos ĉi tie.", "empty_column.direct": "Vi ankoraŭ ne havas rektan mesaĝon. Kiam vi sendos aŭ ricevos iun, ĝi aperos ĉi tie.",
"empty_column.domain_blocks": "Ankoraŭ neniu domajno estas blokita.", "empty_column.domain_blocks": "Ankoraŭ neniu domajno estas blokita.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Vi ne ankoraŭ silentigis iun uzanton.", "empty_column.mutes": "Vi ne ankoraŭ silentigis iun uzanton.",
"empty_column.notifications": "Vi ankoraŭ ne havas sciigojn. Interagu kun aliaj por komenci konversacion.", "empty_column.notifications": "Vi ankoraŭ ne havas sciigojn. Interagu kun aliaj por komenci konversacion.",
"empty_column.public": "Estas nenio ĉi tie! Publike skribu ion, aŭ mane sekvu uzantojn de aliaj serviloj por plenigi la publikan tempolinion", "empty_column.public": "Estas nenio ĉi tie! Publike skribu ion, aŭ mane sekvu uzantojn de aliaj serviloj por plenigi la publikan tempolinion",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Rajtigi", "follow_request.authorize": "Rajtigi",
"follow_request.reject": "Rifuzi", "follow_request.reject": "Rifuzi",
"getting_started.heading": "Por komenci", "getting_started.heading": "Por komenci",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "kaj {additional}", "hashtag.column_header.tag_mode.all": "kaj {additional}",
"hashtag.column_header.tag_mode.any": "aŭ {additional}", "hashtag.column_header.tag_mode.any": "aŭ {additional}",
"hashtag.column_header.tag_mode.none": "sen {additional}", "hashtag.column_header.tag_mode.none": "sen {additional}",
"home.column_settings.basic": "Bazaj agordoj", "home.column_settings.show_direct": "Show direct messages",
"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",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Viaj listoj", "lists.subheading": "Viaj listoj",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Ŝargado…", "loading_indicator.label": "Ŝargado…",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Baskuligi videblecon", "media_gallery.toggle_visible": "Baskuligi videblecon",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Ne trovita", "missing_indicator.label": "Ne trovita",
"missing_indicator.sublabel": "Ĉi tiu elemento ne estis trovita", "missing_indicator.sublabel": "Ĉi tiu elemento ne estis trovita",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Ĉu vi volas kaŝi la sciigojn de ĉi tiu uzanto?", "mute_modal.hide_notifications": "Ĉu vi volas kaŝi la sciigojn de ĉi tiu uzanto?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Blokitaj uzantoj", "navigation_bar.blocks": "Blokitaj uzantoj",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Loka tempolinio", "navigation_bar.community_timeline": "Loka tempolinio",
"navigation_bar.compose": "Skribi novan mesaĝon", "navigation_bar.compose": "Skribi novan mesaĝon",
"navigation_bar.direct": "Rektaj mesaĝoj", "navigation_bar.direct": "Rektaj mesaĝoj",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Diskonigoj:", "notifications.column_settings.reblog": "Diskonigoj:",
"notifications.column_settings.show": "Montri en kolumno", "notifications.column_settings.show": "Montri en kolumno",
"notifications.column_settings.sound": "Eligi sonon", "notifications.column_settings.sound": "Eligi sonon",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "Ĉiuj", "notifications.filter.all": "Ĉiuj",
"notifications.filter.boosts": "Diskonigoj", "notifications.filter.boosts": "Diskonigoj",
"notifications.filter.favourites": "Stelumoj", "notifications.filter.favourites": "Stelumoj",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}t", "relative_time.days": "{number}t",
@ -379,8 +440,12 @@
"search_results.statuses": "Mesaĝoj", "search_results.statuses": "Mesaĝoj",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {rezulto} other {rezultoj}}", "search_results.total": "{count, number} {count, plural, one {rezulto} other {rezultoj}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Malfermi la kontrolan interfacon por @{name}", "status.admin_account": "Malfermi la kontrolan interfacon por @{name}",
"status.admin_status": "Malfermi ĉi tiun mesaĝon en la kontrola interfaco", "status.admin_status": "Malfermi ĉi tiun mesaĝon en la kontrola interfaco",
"status.block": "Bloki @{name}", "status.block": "Bloki @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Ne plu diskonigi", "status.cancel_reblog_private": "Ne plu diskonigi",
"status.cannot_reblog": "Ĉi tiu mesaĝo ne diskonigeblas", "status.cannot_reblog": "Ĉi tiu mesaĝo ne diskonigeblas",
"status.copy": "Kopii la ligilon al la mesaĝo", "status.copy": "Kopii la ligilon al la mesaĝo",
@ -439,6 +510,7 @@
"status.show_more": "Grandigi", "status.show_more": "Grandigi",
"status.show_more_all": "Grandigi ĉiujn", "status.show_more_all": "Grandigi ĉiujn",
"status.show_thread": "Montri la fadenon", "status.show_thread": "Montri la fadenon",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Malsilentigi la konversacion", "status.unmute_conversation": "Malsilentigi la konversacion",
"status.unpin": "Depingli de profilo", "status.unpin": "Depingli de profilo",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Denunciar a @{name}", "account.report": "Denunciar a @{name}",
"account.requested": "Esperando aprobación. Hacé clic para cancelar la solicitud de seguimiento.", "account.requested": "Esperando aprobación. Hacé clic para cancelar la solicitud de seguimiento.",
"account.requested_small": "Awaiting approval",
"account.share": "Compartir el perfil de @{name}", "account.share": "Compartir el perfil de @{name}",
"account.show_reblogs": "Mostrar retoots de @{name}", "account.show_reblogs": "Mostrar retoots de @{name}",
"account.unblock": "Desbloquear a @{name}", "account.unblock": "Desbloquear a @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Algo salió mal al cargar este componente.", "bundle_modal_error.message": "Algo salió mal al cargar este componente.",
"bundle_modal_error.retry": "Intentá de nuevo", "bundle_modal_error.retry": "Intentá de nuevo",
"column.blocks": "Usuarios bloqueados", "column.blocks": "Usuarios bloqueados",
"column.bookmarks": "Bookmarks",
"column.community": "Línea temporal local", "column.community": "Línea temporal local",
"column.direct": "Mensajes directos", "column.direct": "Mensajes directos",
"column.domain_blocks": "Dominios ocultos", "column.domain_blocks": "Dominios ocultos",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Solicitudes de seguimiento", "column.follow_requests": "Solicitudes de seguimiento",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Principal", "column.home": "Principal",
"column.lists": "Listas", "column.lists": "Listas",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Usuarios silenciados", "column.mutes": "Usuarios silenciados",
"column.notifications": "Notificaciones", "column.notifications": "Notificaciones",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "Este toot no se mostrará bajo hashtags porque no es público. Sólo los toots públicos se pueden buscar por hashtag.", "compose_form.hashtag_warning": "Este toot no se mostrará bajo hashtags porque no es público. Sólo los toots públicos se pueden buscar por hashtag.",
"compose_form.lock_disclaimer": "Tu cuenta no está {locked}. Todos pueden seguirte para ver tus toots marcados como \"sólo para seguidores\".", "compose_form.lock_disclaimer": "Tu cuenta no está {locked}. Todos pueden seguirte para ver tus toots marcados como \"sólo para seguidores\".",
"compose_form.lock_disclaimer.lock": "bloqueada", "compose_form.lock_disclaimer.lock": "bloqueada",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "¿Qué onda?", "compose_form.placeholder": "¿Qué onda?",
"compose_form.poll.add_option": "Agregá una opción", "compose_form.poll.add_option": "Agregá una opción",
"compose_form.poll.duration": "Duración de la encuesta", "compose_form.poll.duration": "Duración de la encuesta",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "¡No hay toots aquí!", "empty_column.account_timeline": "¡No hay toots aquí!",
"empty_column.account_unavailable": "Perfil no disponible", "empty_column.account_unavailable": "Perfil no disponible",
"empty_column.blocks": "Todavía no bloqueaste a ningún usuario.", "empty_column.blocks": "Todavía no bloqueaste a ningún usuario.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "La línea temporal local está vacía. ¡Escribí algo en modo público para que se empiece a correr la bola!", "empty_column.community": "La línea temporal local está vacía. ¡Escribí algo en modo público para que se empiece a correr la bola!",
"empty_column.direct": "Todavía no tenés ningún mensaje directo. Cuando enviés o recibás uno, se mostrará acá.", "empty_column.direct": "Todavía no tenés ningún mensaje directo. Cuando enviés o recibás uno, se mostrará acá.",
"empty_column.domain_blocks": "Todavía no hay dominios ocultos.", "empty_column.domain_blocks": "Todavía no hay dominios ocultos.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Todavía no silenciaste a ningún usuario.", "empty_column.mutes": "Todavía no silenciaste a ningún usuario.",
"empty_column.notifications": "Todavía no tenés ninguna notificación. Interactuá con otros para iniciar la conversación.", "empty_column.notifications": "Todavía no tenés ninguna notificación. Interactuá con otros para iniciar la conversación.",
"empty_column.public": "¡Naranja! Escribí algo públicamente, o seguí usuarios manualmente de otros servidores para ir llenando esta línea temporal.", "empty_column.public": "¡Naranja! Escribí algo públicamente, o seguí usuarios manualmente de otros servidores para ir llenando esta línea temporal.",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Autorizar", "follow_request.authorize": "Autorizar",
"follow_request.reject": "Rechazar", "follow_request.reject": "Rechazar",
"getting_started.heading": "Introducción", "getting_started.heading": "Introducción",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "y {additional}", "hashtag.column_header.tag_mode.all": "y {additional}",
"hashtag.column_header.tag_mode.any": "o {additional}", "hashtag.column_header.tag_mode.any": "o {additional}",
"hashtag.column_header.tag_mode.none": "sin {additional}", "hashtag.column_header.tag_mode.none": "sin {additional}",
"home.column_settings.basic": "Básico", "home.column_settings.show_direct": "Show direct messages",
"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",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Tus listas", "lists.subheading": "Tus listas",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Cargando…", "loading_indicator.label": "Cargando…",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Cambiar visibilidad", "media_gallery.toggle_visible": "Cambiar visibilidad",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "No se encontró", "missing_indicator.label": "No se encontró",
"missing_indicator.sublabel": "No se encontró este recurso", "missing_indicator.sublabel": "No se encontró este recurso",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "¿Querés ocultar las notificaciones de este usuario?", "mute_modal.hide_notifications": "¿Querés ocultar las notificaciones de este usuario?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Usuarios bloqueados", "navigation_bar.blocks": "Usuarios bloqueados",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Línea temporal local", "navigation_bar.community_timeline": "Línea temporal local",
"navigation_bar.compose": "Redactar un nuevo toot", "navigation_bar.compose": "Redactar un nuevo toot",
"navigation_bar.direct": "Mensajes directos", "navigation_bar.direct": "Mensajes directos",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Retoots:", "notifications.column_settings.reblog": "Retoots:",
"notifications.column_settings.show": "Mostrar en columna", "notifications.column_settings.show": "Mostrar en columna",
"notifications.column_settings.sound": "Reproducir sonido", "notifications.column_settings.sound": "Reproducir sonido",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "Todas", "notifications.filter.all": "Todas",
"notifications.filter.boosts": "Retoots", "notifications.filter.boosts": "Retoots",
"notifications.filter.favourites": "Favoritos", "notifications.filter.favourites": "Favoritos",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
@ -379,8 +440,12 @@
"search_results.statuses": "Posts", "search_results.statuses": "Posts",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}", "search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Abrir interface de moderación para @{name}", "status.admin_account": "Abrir interface de moderación para @{name}",
"status.admin_status": "Abrir este estado en la interface de moderación", "status.admin_status": "Abrir este estado en la interface de moderación",
"status.block": "Bloquear a @{name}", "status.block": "Bloquear a @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Quitar retoot", "status.cancel_reblog_private": "Quitar retoot",
"status.cannot_reblog": "No se puede retootear este toot", "status.cannot_reblog": "No se puede retootear este toot",
"status.copy": "Copiar enlace al estado", "status.copy": "Copiar enlace al estado",
@ -439,6 +510,7 @@
"status.show_more": "Mostrar más", "status.show_more": "Mostrar más",
"status.show_more_all": "Mostrar más para todo", "status.show_more_all": "Mostrar más para todo",
"status.show_thread": "Mostrar hilo", "status.show_thread": "Mostrar hilo",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Dejar de silenciar conversación", "status.unmute_conversation": "Dejar de silenciar conversación",
"status.unpin": "Desmarcar del perfil", "status.unpin": "Desmarcar del perfil",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Reportar a @{name}", "account.report": "Reportar a @{name}",
"account.requested": "Esperando aprobación", "account.requested": "Esperando aprobación",
"account.requested_small": "Awaiting approval",
"account.share": "Compartir el perfil de @{name}", "account.share": "Compartir el perfil de @{name}",
"account.show_reblogs": "Mostrar retoots de @{name}", "account.show_reblogs": "Mostrar retoots de @{name}",
"account.unblock": "Desbloquear a @{name}", "account.unblock": "Desbloquear a @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Algo salió mal al cargar este componente.", "bundle_modal_error.message": "Algo salió mal al cargar este componente.",
"bundle_modal_error.retry": "Inténtalo de nuevo", "bundle_modal_error.retry": "Inténtalo de nuevo",
"column.blocks": "Usuarios bloqueados", "column.blocks": "Usuarios bloqueados",
"column.bookmarks": "Bookmarks",
"column.community": "Línea de tiempo local", "column.community": "Línea de tiempo local",
"column.direct": "Mensajes directos", "column.direct": "Mensajes directos",
"column.domain_blocks": "Dominios ocultados", "column.domain_blocks": "Dominios ocultados",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Solicitudes de seguimiento", "column.follow_requests": "Solicitudes de seguimiento",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Inicio", "column.home": "Inicio",
"column.lists": "Listas", "column.lists": "Listas",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Usuarios silenciados", "column.mutes": "Usuarios silenciados",
"column.notifications": "Notificaciones", "column.notifications": "Notificaciones",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "Este toot no se mostrará bajo hashtags porque no es público. Sólo los toots públicos se pueden buscar por hashtag.", "compose_form.hashtag_warning": "Este toot no se mostrará bajo hashtags porque no es público. Sólo los toots públicos se pueden buscar por hashtag.",
"compose_form.lock_disclaimer": "Tu cuenta no está bloqueada. Todos pueden seguirte para ver tus toots solo para seguidores.", "compose_form.lock_disclaimer": "Tu cuenta no está bloqueada. Todos pueden seguirte para ver tus toots solo para seguidores.",
"compose_form.lock_disclaimer.lock": "bloqueado", "compose_form.lock_disclaimer.lock": "bloqueado",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "¿En qué estás pensando?", "compose_form.placeholder": "¿En qué estás pensando?",
"compose_form.poll.add_option": "Añadir una opción", "compose_form.poll.add_option": "Añadir una opción",
"compose_form.poll.duration": "Duración de la encuesta", "compose_form.poll.duration": "Duración de la encuesta",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "¡No hay toots aquí!", "empty_column.account_timeline": "¡No hay toots aquí!",
"empty_column.account_unavailable": "Perfil no disponible", "empty_column.account_unavailable": "Perfil no disponible",
"empty_column.blocks": "Aún no has bloqueado a ningún usuario.", "empty_column.blocks": "Aún no has bloqueado a ningún usuario.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "La línea de tiempo local está vacía. ¡Escribe algo para empezar la fiesta!", "empty_column.community": "La línea de tiempo local está vacía. ¡Escribe algo para empezar la fiesta!",
"empty_column.direct": "Aún no tienes ningún mensaje directo. Cuando envíes o recibas uno, se mostrará aquí.", "empty_column.direct": "Aún no tienes ningún mensaje directo. Cuando envíes o recibas uno, se mostrará aquí.",
"empty_column.domain_blocks": "Todavía no hay dominios ocultos.", "empty_column.domain_blocks": "Todavía no hay dominios ocultos.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Aún no has silenciado a ningún usuario.", "empty_column.mutes": "Aún no has silenciado a ningún usuario.",
"empty_column.notifications": "No tienes ninguna notificación aún. Interactúa con otros para empezar una conversación.", "empty_column.notifications": "No tienes ninguna notificación aún. Interactúa con otros para empezar una conversación.",
"empty_column.public": "¡No hay nada aquí! Escribe algo públicamente, o sigue usuarios de otras instancias manualmente para llenarlo", "empty_column.public": "¡No hay nada aquí! Escribe algo públicamente, o sigue usuarios de otras instancias manualmente para llenarlo",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Autorizar", "follow_request.authorize": "Autorizar",
"follow_request.reject": "Rechazar", "follow_request.reject": "Rechazar",
"getting_started.heading": "Primeros pasos", "getting_started.heading": "Primeros pasos",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "y {additional}", "hashtag.column_header.tag_mode.all": "y {additional}",
"hashtag.column_header.tag_mode.any": "o {additional}", "hashtag.column_header.tag_mode.any": "o {additional}",
"hashtag.column_header.tag_mode.none": "sin {additional}", "hashtag.column_header.tag_mode.none": "sin {additional}",
"home.column_settings.basic": "Básico", "home.column_settings.show_direct": "Show direct messages",
"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",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Tus listas", "lists.subheading": "Tus listas",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Cargando…", "loading_indicator.label": "Cargando…",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Cambiar visibilidad", "media_gallery.toggle_visible": "Cambiar visibilidad",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "No encontrado", "missing_indicator.label": "No encontrado",
"missing_indicator.sublabel": "No se encontró este recurso", "missing_indicator.sublabel": "No se encontró este recurso",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Ocultar notificaciones de este usuario?", "mute_modal.hide_notifications": "Ocultar notificaciones de este usuario?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Usuarios bloqueados", "navigation_bar.blocks": "Usuarios bloqueados",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Historia local", "navigation_bar.community_timeline": "Historia local",
"navigation_bar.compose": "Escribir un nuevo toot", "navigation_bar.compose": "Escribir un nuevo toot",
"navigation_bar.direct": "Mensajes directos", "navigation_bar.direct": "Mensajes directos",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Retoots:", "notifications.column_settings.reblog": "Retoots:",
"notifications.column_settings.show": "Mostrar en columna", "notifications.column_settings.show": "Mostrar en columna",
"notifications.column_settings.sound": "Reproducir sonido", "notifications.column_settings.sound": "Reproducir sonido",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "Todos", "notifications.filter.all": "Todos",
"notifications.filter.boosts": "Retoots", "notifications.filter.boosts": "Retoots",
"notifications.filter.favourites": "Favoritos", "notifications.filter.favourites": "Favoritos",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
@ -379,8 +440,12 @@
"search_results.statuses": "Posts", "search_results.statuses": "Posts",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}", "search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Abrir interfaz de moderación para @{name}", "status.admin_account": "Abrir interfaz de moderación para @{name}",
"status.admin_status": "Abrir este estado en la interfaz de moderación", "status.admin_status": "Abrir este estado en la interfaz de moderación",
"status.block": "Bloquear a @{name}", "status.block": "Bloquear a @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Des-impulsar", "status.cancel_reblog_private": "Des-impulsar",
"status.cannot_reblog": "Este toot no puede retootearse", "status.cannot_reblog": "Este toot no puede retootearse",
"status.copy": "Copiar enlace al estado", "status.copy": "Copiar enlace al estado",
@ -439,6 +510,7 @@
"status.show_more": "Mostrar más", "status.show_more": "Mostrar más",
"status.show_more_all": "Mostrar más para todo", "status.show_more_all": "Mostrar más para todo",
"status.show_thread": "Ver hilo", "status.show_thread": "Ver hilo",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Dejar de silenciar conversación", "status.unmute_conversation": "Dejar de silenciar conversación",
"status.unpin": "Dejar de fijar", "status.unpin": "Dejar de fijar",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Raporteeri @{name}", "account.report": "Raporteeri @{name}",
"account.requested": "Ootab kinnitust. Klõpsa jälgimise soovi tühistamiseks", "account.requested": "Ootab kinnitust. Klõpsa jälgimise soovi tühistamiseks",
"account.requested_small": "Awaiting approval",
"account.share": "Jaga @{name} profiili", "account.share": "Jaga @{name} profiili",
"account.show_reblogs": "Näita kasutaja @{name} upitusi", "account.show_reblogs": "Näita kasutaja @{name} upitusi",
"account.unblock": "Eemalda blokeering @{name}", "account.unblock": "Eemalda blokeering @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Selle komponendi laadimisel läks midagi viltu.", "bundle_modal_error.message": "Selle komponendi laadimisel läks midagi viltu.",
"bundle_modal_error.retry": "Proovi uuesti", "bundle_modal_error.retry": "Proovi uuesti",
"column.blocks": "Blokeeritud kasutajad", "column.blocks": "Blokeeritud kasutajad",
"column.bookmarks": "Bookmarks",
"column.community": "Kohalik ajajoon", "column.community": "Kohalik ajajoon",
"column.direct": "Otsesõnumid", "column.direct": "Otsesõnumid",
"column.domain_blocks": "Peidetud domeenid", "column.domain_blocks": "Peidetud domeenid",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Jälgimistaotlused", "column.follow_requests": "Jälgimistaotlused",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Kodu", "column.home": "Kodu",
"column.lists": "Nimekirjad", "column.lists": "Nimekirjad",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Vaigistatud kasutajad", "column.mutes": "Vaigistatud kasutajad",
"column.notifications": "Teated", "column.notifications": "Teated",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "Seda tuuti ei kuvata ühegi sildi all, sest see on kirjendamata. Ainult avalikud tuutid on sildi järgi otsitavad.", "compose_form.hashtag_warning": "Seda tuuti ei kuvata ühegi sildi all, sest see on kirjendamata. Ainult avalikud tuutid on sildi järgi otsitavad.",
"compose_form.lock_disclaimer": "Sinu konto ei ole {locked}. Igaüks saab sind jälgida ja näha su ainult-jälgijatele postitusi.", "compose_form.lock_disclaimer": "Sinu konto ei ole {locked}. Igaüks saab sind jälgida ja näha su ainult-jälgijatele postitusi.",
"compose_form.lock_disclaimer.lock": "lukus", "compose_form.lock_disclaimer.lock": "lukus",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "Millest mõtled?", "compose_form.placeholder": "Millest mõtled?",
"compose_form.poll.add_option": "Lisa valik", "compose_form.poll.add_option": "Lisa valik",
"compose_form.poll.duration": "Küsitluse kestus", "compose_form.poll.duration": "Küsitluse kestus",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "Siin tuute ei ole!", "empty_column.account_timeline": "Siin tuute ei ole!",
"empty_column.account_unavailable": "Profiil pole saadaval", "empty_column.account_unavailable": "Profiil pole saadaval",
"empty_column.blocks": "Sa ei ole veel ühtegi kasutajat blokeerinud.", "empty_column.blocks": "Sa ei ole veel ühtegi kasutajat blokeerinud.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "Kohalik ajajoon on tühi. Kirjuta midagi avalikult, et pall veerema saada!", "empty_column.community": "Kohalik ajajoon on tühi. Kirjuta midagi avalikult, et pall veerema saada!",
"empty_column.direct": "Sul ei veel otsesõnumeid. Kui saadad või võtad mõne vastu, ilmuvad nad siia.", "empty_column.direct": "Sul ei veel otsesõnumeid. Kui saadad või võtad mõne vastu, ilmuvad nad siia.",
"empty_column.domain_blocks": "Siin ei ole veel peidetud domeene.", "empty_column.domain_blocks": "Siin ei ole veel peidetud domeene.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Sa pole veel ühtegi kasutajat vaigistanud.", "empty_column.mutes": "Sa pole veel ühtegi kasutajat vaigistanud.",
"empty_column.notifications": "Sul ei ole veel teateid. Suhtle teistega alustamaks vestlust.", "empty_column.notifications": "Sul ei ole veel teateid. Suhtle teistega alustamaks vestlust.",
"empty_column.public": "Siin pole midagi! Kirjuta midagi avalikut või jälgi ise kasutajaid täitmaks seda ruumi", "empty_column.public": "Siin pole midagi! Kirjuta midagi avalikut või jälgi ise kasutajaid täitmaks seda ruumi",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Autoriseeri", "follow_request.authorize": "Autoriseeri",
"follow_request.reject": "Hülga", "follow_request.reject": "Hülga",
"getting_started.heading": "Alustamine", "getting_started.heading": "Alustamine",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "ja {additional}", "hashtag.column_header.tag_mode.all": "ja {additional}",
"hashtag.column_header.tag_mode.any": "või {additional}", "hashtag.column_header.tag_mode.any": "või {additional}",
"hashtag.column_header.tag_mode.none": "ilma {additional}", "hashtag.column_header.tag_mode.none": "ilma {additional}",
"home.column_settings.basic": "Peamine", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "Näita upitusi", "home.column_settings.show_reblogs": "Näita upitusi",
"home.column_settings.show_replies": "Näita vastuseid", "home.column_settings.show_replies": "Näita vastuseid",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Sinu nimistud", "lists.subheading": "Sinu nimistud",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Laeb..", "loading_indicator.label": "Laeb..",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Lülita nähtavus", "media_gallery.toggle_visible": "Lülita nähtavus",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Ei leitud", "missing_indicator.label": "Ei leitud",
"missing_indicator.sublabel": "Seda ressurssi ei leitud", "missing_indicator.sublabel": "Seda ressurssi ei leitud",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Kas peita teated sellelt kasutajalt?", "mute_modal.hide_notifications": "Kas peita teated sellelt kasutajalt?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Blokeeritud kasutajad", "navigation_bar.blocks": "Blokeeritud kasutajad",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Kohalik ajajoon", "navigation_bar.community_timeline": "Kohalik ajajoon",
"navigation_bar.compose": "Koosta uus tuut", "navigation_bar.compose": "Koosta uus tuut",
"navigation_bar.direct": "Otsesõnumid", "navigation_bar.direct": "Otsesõnumid",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Upitused:", "notifications.column_settings.reblog": "Upitused:",
"notifications.column_settings.show": "Kuva tulbas", "notifications.column_settings.show": "Kuva tulbas",
"notifications.column_settings.sound": "Mängi heli", "notifications.column_settings.sound": "Mängi heli",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "Kõik", "notifications.filter.all": "Kõik",
"notifications.filter.boosts": "Upitused", "notifications.filter.boosts": "Upitused",
"notifications.filter.favourites": "Lemmikud", "notifications.filter.favourites": "Lemmikud",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}p", "relative_time.days": "{number}p",
@ -379,8 +440,12 @@
"search_results.statuses": "Tuudid", "search_results.statuses": "Tuudid",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {tulemus} other {tulemust}}", "search_results.total": "{count, number} {count, plural, one {tulemus} other {tulemust}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Ava moderaatoriliides kasutajale @{name}", "status.admin_account": "Ava moderaatoriliides kasutajale @{name}",
"status.admin_status": "Ava see staatus moderaatoriliites", "status.admin_status": "Ava see staatus moderaatoriliites",
"status.block": "Blokeeri @{name}", "status.block": "Blokeeri @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Äraupita", "status.cancel_reblog_private": "Äraupita",
"status.cannot_reblog": "Seda postitust ei saa upitada", "status.cannot_reblog": "Seda postitust ei saa upitada",
"status.copy": "Kopeeri link staatusesse", "status.copy": "Kopeeri link staatusesse",
@ -439,6 +510,7 @@
"status.show_more": "Näita veel", "status.show_more": "Näita veel",
"status.show_more_all": "Näita enam kõigile", "status.show_more_all": "Näita enam kõigile",
"status.show_thread": "Kuva lõim", "status.show_thread": "Kuva lõim",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Ära vaigista vestlust", "status.unmute_conversation": "Ära vaigista vestlust",
"status.unpin": "Kinnita profiililt lahti", "status.unpin": "Kinnita profiililt lahti",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Salatu @{name}", "account.report": "Salatu @{name}",
"account.requested": "Onarpenaren zain. Klikatu jarraitzeko eskaera ezeztatzeko", "account.requested": "Onarpenaren zain. Klikatu jarraitzeko eskaera ezeztatzeko",
"account.requested_small": "Awaiting approval",
"account.share": "@{name}(e)ren profila elkarbanatu", "account.share": "@{name}(e)ren profila elkarbanatu",
"account.show_reblogs": "Erakutsi @{name}(r)en bultzadak", "account.show_reblogs": "Erakutsi @{name}(r)en bultzadak",
"account.unblock": "Desblokeatu @{name}", "account.unblock": "Desblokeatu @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Zerbait okerra gertatu da osagai hau kargatzean.", "bundle_modal_error.message": "Zerbait okerra gertatu da osagai hau kargatzean.",
"bundle_modal_error.retry": "Saiatu berriro", "bundle_modal_error.retry": "Saiatu berriro",
"column.blocks": "Blokeatutako erabiltzaileak", "column.blocks": "Blokeatutako erabiltzaileak",
"column.bookmarks": "Bookmarks",
"column.community": "Denbora-lerro lokala", "column.community": "Denbora-lerro lokala",
"column.direct": "Mezu zuzenak", "column.direct": "Mezu zuzenak",
"column.domain_blocks": "Ezkutatutako domeinuak", "column.domain_blocks": "Ezkutatutako domeinuak",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Jarraitzeko eskariak", "column.follow_requests": "Jarraitzeko eskariak",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Hasiera", "column.home": "Hasiera",
"column.lists": "Zerrendak", "column.lists": "Zerrendak",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Mutututako erabiltzaileak", "column.mutes": "Mutututako erabiltzaileak",
"column.notifications": "Jakinarazpenak", "column.notifications": "Jakinarazpenak",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "Toot hau ez da traoletan agertuko zerrendatu gabekoa baita. Traoletan toot publikoak besterik ez dira agertzen.", "compose_form.hashtag_warning": "Toot hau ez da traoletan agertuko zerrendatu gabekoa baita. Traoletan toot publikoak besterik ez dira agertzen.",
"compose_form.lock_disclaimer": "Zure kontua ez dago {locked}. Edonork jarraitu zaitzake zure jarraitzaileentzako soilik diren mezuak ikusteko.", "compose_form.lock_disclaimer": "Zure kontua ez dago {locked}. Edonork jarraitu zaitzake zure jarraitzaileentzako soilik diren mezuak ikusteko.",
"compose_form.lock_disclaimer.lock": "giltzapetuta", "compose_form.lock_disclaimer.lock": "giltzapetuta",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "Zer duzu buruan?", "compose_form.placeholder": "Zer duzu buruan?",
"compose_form.poll.add_option": "Gehitu aukera bat", "compose_form.poll.add_option": "Gehitu aukera bat",
"compose_form.poll.duration": "Inkestaren iraupena", "compose_form.poll.duration": "Inkestaren iraupena",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "Ez dago toot-ik hemen!", "empty_column.account_timeline": "Ez dago toot-ik hemen!",
"empty_column.account_unavailable": "Profila ez dago eskuragarri", "empty_column.account_unavailable": "Profila ez dago eskuragarri",
"empty_column.blocks": "Ez duzu erabiltzailerik blokeatu oraindik.", "empty_column.blocks": "Ez duzu erabiltzailerik blokeatu oraindik.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"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": "Ez dago ezkutatutako domeinurik oraindik.", "empty_column.domain_blocks": "Ez dago ezkutatutako domeinurik oraindik.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Ez duzu erabiltzailerik mututu oraindik.", "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 zerbitzari batzuetako erabiltzaileak hau betetzen joateko", "empty_column.public": "Ez dago ezer hemen! Idatzi zerbait publikoki edo jarraitu eskuz beste zerbitzari batzuetako erabiltzaileak hau betetzen joateko",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Baimendu", "follow_request.authorize": "Baimendu",
"follow_request.reject": "Ukatu", "follow_request.reject": "Ukatu",
"getting_started.heading": "Menua", "getting_started.heading": "Menua",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "eta {additional}", "hashtag.column_header.tag_mode.all": "eta {additional}",
"hashtag.column_header.tag_mode.any": "edo {additional}", "hashtag.column_header.tag_mode.any": "edo {additional}",
"hashtag.column_header.tag_mode.none": "gabe {additional}", "hashtag.column_header.tag_mode.none": "gabe {additional}",
"home.column_settings.basic": "Oinarrizkoa", "home.column_settings.show_direct": "Show direct messages",
"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",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Zure zerrendak", "lists.subheading": "Zure zerrendak",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Kargatzen...", "loading_indicator.label": "Kargatzen...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Txandakatu ikusgaitasuna", "media_gallery.toggle_visible": "Txandakatu ikusgaitasuna",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"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",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Ezkutatu erabiltzaile honen jakinarazpenak?", "mute_modal.hide_notifications": "Ezkutatu erabiltzaile honen jakinarazpenak?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Blokeatutako erabiltzaileak", "navigation_bar.blocks": "Blokeatutako erabiltzaileak",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Denbora-lerro lokala", "navigation_bar.community_timeline": "Denbora-lerro lokala",
"navigation_bar.compose": "Idatzi toot berria", "navigation_bar.compose": "Idatzi toot berria",
"navigation_bar.direct": "Mezu zuzenak", "navigation_bar.direct": "Mezu zuzenak",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Bultzadak:", "notifications.column_settings.reblog": "Bultzadak:",
"notifications.column_settings.show": "Erakutsi zutabean", "notifications.column_settings.show": "Erakutsi zutabean",
"notifications.column_settings.sound": "Jo soinua", "notifications.column_settings.sound": "Jo soinua",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "Denak", "notifications.filter.all": "Denak",
"notifications.filter.boosts": "Bultzadak", "notifications.filter.boosts": "Bultzadak",
"notifications.filter.favourites": "Gogokoak", "notifications.filter.favourites": "Gogokoak",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}e", "relative_time.days": "{number}e",
@ -379,8 +440,12 @@
"search_results.statuses": "Toot-ak", "search_results.statuses": "Toot-ak",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {emaitza} other {emaitzak}}", "search_results.total": "{count, number} {count, plural, one {emaitza} other {emaitzak}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Ireki @{name} erabiltzailearen moderazio interfazea", "status.admin_account": "Ireki @{name} erabiltzailearen moderazio interfazea",
"status.admin_status": "Ireki mezu hau moderazio interfazean", "status.admin_status": "Ireki mezu hau moderazio interfazean",
"status.block": "Blokeatu @{name}", "status.block": "Blokeatu @{name}",
"status.bookmark": "Bookmark",
"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.copy": "Kopiatu mezuaren esteka", "status.copy": "Kopiatu mezuaren esteka",
@ -439,6 +510,7 @@
"status.show_more": "Erakutsi gehiago", "status.show_more": "Erakutsi gehiago",
"status.show_more_all": "Erakutsi denetarik gehiago", "status.show_more_all": "Erakutsi denetarik gehiago",
"status.show_thread": "Erakutsi haria", "status.show_thread": "Erakutsi haria",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Desmututu elkarrizketa", "status.unmute_conversation": "Desmututu elkarrizketa",
"status.unpin": "Desfinkatu profiletik", "status.unpin": "Desfinkatu profiletik",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "گزارش @{name}", "account.report": "گزارش @{name}",
"account.requested": "در انتظار پذیرش", "account.requested": "در انتظار پذیرش",
"account.requested_small": "Awaiting approval",
"account.share": "هم‌رسانی نمایهٔ @{name}", "account.share": "هم‌رسانی نمایهٔ @{name}",
"account.show_reblogs": "نشان‌دادن بازبوق‌های @{name}", "account.show_reblogs": "نشان‌دادن بازبوق‌های @{name}",
"account.unblock": "رفع انسداد @{name}", "account.unblock": "رفع انسداد @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "هنگام بازکردن این بخش خطایی رخ داد.", "bundle_modal_error.message": "هنگام بازکردن این بخش خطایی رخ داد.",
"bundle_modal_error.retry": "تلاش دوباره", "bundle_modal_error.retry": "تلاش دوباره",
"column.blocks": "کاربران مسدودشده", "column.blocks": "کاربران مسدودشده",
"column.bookmarks": "Bookmarks",
"column.community": "نوشته‌های محلی", "column.community": "نوشته‌های محلی",
"column.direct": "پیغام‌های خصوصی", "column.direct": "پیغام‌های خصوصی",
"column.domain_blocks": "دامین‌های پنهان‌شده", "column.domain_blocks": "دامین‌های پنهان‌شده",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "درخواست‌های پیگیری", "column.follow_requests": "درخواست‌های پیگیری",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "خانه", "column.home": "خانه",
"column.lists": "فهرست‌ها", "column.lists": "فهرست‌ها",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "کاربران بی‌صداشده", "column.mutes": "کاربران بی‌صداشده",
"column.notifications": "اعلان‌ها", "column.notifications": "اعلان‌ها",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"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.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "تازه چه خبر؟", "compose_form.placeholder": "تازه چه خبر؟",
"compose_form.poll.add_option": "افزودن گزینه", "compose_form.poll.add_option": "افزودن گزینه",
"compose_form.poll.duration": "مدت نظرسنجی", "compose_form.poll.duration": "مدت نظرسنجی",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "هیچ بوقی این‌جا نیست!", "empty_column.account_timeline": "هیچ بوقی این‌جا نیست!",
"empty_column.account_unavailable": "نمایهٔ ناموجود", "empty_column.account_unavailable": "نمایهٔ ناموجود",
"empty_column.blocks": "شما هنوز هیچ کسی را مسدود نکرده‌اید.", "empty_column.blocks": "شما هنوز هیچ کسی را مسدود نکرده‌اید.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "فهرست نوشته‌های محلی خالی است. چیزی بنویسید تا چرخش بچرخد!", "empty_column.community": "فهرست نوشته‌های محلی خالی است. چیزی بنویسید تا چرخش بچرخد!",
"empty_column.direct": "شما هیچ پیغام مستقیمی ندارید. اگر چنین پیغامی بگیرید یا بفرستید این‌جا نمایش خواهد یافت.", "empty_column.direct": "شما هیچ پیغام مستقیمی ندارید. اگر چنین پیغامی بگیرید یا بفرستید این‌جا نمایش خواهد یافت.",
"empty_column.domain_blocks": "هنوز هیچ دامینی پنهان نشده است.", "empty_column.domain_blocks": "هنوز هیچ دامینی پنهان نشده است.",
@ -165,8 +193,19 @@
"empty_column.mutes": "شما هنوز هیچ کاربری را بی‌صدا نکرده‌اید.", "empty_column.mutes": "شما هنوز هیچ کاربری را بی‌صدا نکرده‌اید.",
"empty_column.notifications": "هنوز هیچ اعلانی ندارید. به نوشته‌های دیگران واکنش نشان دهید تا گفتگو آغاز شود.", "empty_column.notifications": "هنوز هیچ اعلانی ندارید. به نوشته‌های دیگران واکنش نشان دهید تا گفتگو آغاز شود.",
"empty_column.public": "این‌جا هنوز چیزی نیست! خودتان چیزی بنویسید یا کاربران سرورهای دیگر را پی بگیرید تا این‌جا پر شود", "empty_column.public": "این‌جا هنوز چیزی نیست! خودتان چیزی بنویسید یا کاربران سرورهای دیگر را پی بگیرید تا این‌جا پر شود",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "اجازه دهید", "follow_request.authorize": "اجازه دهید",
"follow_request.reject": "اجازه ندهید", "follow_request.reject": "اجازه ندهید",
"getting_started.heading": "آغاز کنید", "getting_started.heading": "آغاز کنید",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "و {additional}", "hashtag.column_header.tag_mode.all": "و {additional}",
"hashtag.column_header.tag_mode.any": "یا {additional}", "hashtag.column_header.tag_mode.any": "یا {additional}",
"hashtag.column_header.tag_mode.none": "بدون {additional}", "hashtag.column_header.tag_mode.none": "بدون {additional}",
"home.column_settings.basic": "اصلی", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "نمایش بازبوق‌ها", "home.column_settings.show_reblogs": "نمایش بازبوق‌ها",
"home.column_settings.show_replies": "نمایش پاسخ‌ها", "home.column_settings.show_replies": "نمایش پاسخ‌ها",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "فهرست‌های شما", "lists.subheading": "فهرست‌های شما",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "بارگیری...", "loading_indicator.label": "بارگیری...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "تغییر پیدایی", "media_gallery.toggle_visible": "تغییر پیدایی",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "پیدا نشد", "missing_indicator.label": "پیدا نشد",
"missing_indicator.sublabel": "این منبع پیدا نشد", "missing_indicator.sublabel": "این منبع پیدا نشد",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "اعلان‌های این کاربر پنهان شود؟", "mute_modal.hide_notifications": "اعلان‌های این کاربر پنهان شود؟",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "کاربران مسدودشده", "navigation_bar.blocks": "کاربران مسدودشده",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "نوشته‌های محلی", "navigation_bar.community_timeline": "نوشته‌های محلی",
"navigation_bar.compose": "نوشتن بوق تازه", "navigation_bar.compose": "نوشتن بوق تازه",
"navigation_bar.direct": "پیغام‌های مستقیم", "navigation_bar.direct": "پیغام‌های مستقیم",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "بازبوق‌ها:", "notifications.column_settings.reblog": "بازبوق‌ها:",
"notifications.column_settings.show": "نمایش در ستون", "notifications.column_settings.show": "نمایش در ستون",
"notifications.column_settings.sound": "پخش صدا", "notifications.column_settings.sound": "پخش صدا",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "همه", "notifications.filter.all": "همه",
"notifications.filter.boosts": "بازبوق‌ها", "notifications.filter.boosts": "بازبوق‌ها",
"notifications.filter.favourites": "پسندیده‌ها", "notifications.filter.favourites": "پسندیده‌ها",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number} روز", "relative_time.days": "{number} روز",
@ -379,8 +440,12 @@
"search_results.statuses": "بوق‌ها", "search_results.statuses": "بوق‌ها",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {نتیجه} other {نتیجه}}", "search_results.total": "{count, number} {count, plural, one {نتیجه} other {نتیجه}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "محیط مدیریت مربوط به @{name} را باز کن", "status.admin_account": "محیط مدیریت مربوط به @{name} را باز کن",
"status.admin_status": "این نوشته را در محیط مدیریت باز کن", "status.admin_status": "این نوشته را در محیط مدیریت باز کن",
"status.block": "مسدودسازی @{name}", "status.block": "مسدودسازی @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "حذف بازبوق", "status.cancel_reblog_private": "حذف بازبوق",
"status.cannot_reblog": "این نوشته را نمی‌شود بازبوقید", "status.cannot_reblog": "این نوشته را نمی‌شود بازبوقید",
"status.copy": "رونوشت‌برداری از نشانی این نوشته", "status.copy": "رونوشت‌برداری از نشانی این نوشته",
@ -439,6 +510,7 @@
"status.show_more": "نمایش", "status.show_more": "نمایش",
"status.show_more_all": "نمایش بیشتر همه", "status.show_more_all": "نمایش بیشتر همه",
"status.show_thread": "نمایش گفتگو", "status.show_thread": "نمایش گفتگو",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "باصداکردن گفتگو", "status.unmute_conversation": "باصداکردن گفتگو",
"status.unpin": "برداشتن نوشتهٔ ثابت نمایه", "status.unpin": "برداشتن نوشتهٔ ثابت نمایه",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Raportoi @{name}", "account.report": "Raportoi @{name}",
"account.requested": "Odottaa hyväksyntää. Peruuta seuraamispyyntö klikkaamalla", "account.requested": "Odottaa hyväksyntää. Peruuta seuraamispyyntö klikkaamalla",
"account.requested_small": "Awaiting approval",
"account.share": "Jaa käyttäjän @{name} profiili", "account.share": "Jaa käyttäjän @{name} profiili",
"account.show_reblogs": "Näytä buustaukset käyttäjältä @{name}", "account.show_reblogs": "Näytä buustaukset käyttäjältä @{name}",
"account.unblock": "Salli @{name}", "account.unblock": "Salli @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Jokin meni vikaan komponenttia ladattaessa.", "bundle_modal_error.message": "Jokin meni vikaan komponenttia ladattaessa.",
"bundle_modal_error.retry": "Yritä uudestaan", "bundle_modal_error.retry": "Yritä uudestaan",
"column.blocks": "Estetyt käyttäjät", "column.blocks": "Estetyt käyttäjät",
"column.bookmarks": "Bookmarks",
"column.community": "Paikallinen aikajana", "column.community": "Paikallinen aikajana",
"column.direct": "Viestit", "column.direct": "Viestit",
"column.domain_blocks": "Piilotetut verkkotunnukset", "column.domain_blocks": "Piilotetut verkkotunnukset",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Seuraamispyynnöt", "column.follow_requests": "Seuraamispyynnöt",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Koti", "column.home": "Koti",
"column.lists": "Listat", "column.lists": "Listat",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Mykistetyt käyttäjät", "column.mutes": "Mykistetyt käyttäjät",
"column.notifications": "Ilmoitukset", "column.notifications": "Ilmoitukset",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "Tämä tuuttaus ei näy hashtag-hauissa, koska se on listaamaton. Hashtagien avulla voi hakea vain julkisia tuuttauksia.", "compose_form.hashtag_warning": "Tämä tuuttaus ei näy hashtag-hauissa, koska se on listaamaton. Hashtagien avulla voi hakea vain julkisia tuuttauksia.",
"compose_form.lock_disclaimer": "Tilisi ei ole {locked}. Kuka tahansa voi seurata tiliäsi ja nähdä vain seuraajille rajaamasi julkaisut.", "compose_form.lock_disclaimer": "Tilisi ei ole {locked}. Kuka tahansa voi seurata tiliäsi ja nähdä vain seuraajille rajaamasi julkaisut.",
"compose_form.lock_disclaimer.lock": "lukittu", "compose_form.lock_disclaimer.lock": "lukittu",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "Mitä mietit?", "compose_form.placeholder": "Mitä mietit?",
"compose_form.poll.add_option": "Lisää valinta", "compose_form.poll.add_option": "Lisää valinta",
"compose_form.poll.duration": "Äänestyksen kesto", "compose_form.poll.duration": "Äänestyksen kesto",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "Ei ole 'toots' täällä!", "empty_column.account_timeline": "Ei ole 'toots' täällä!",
"empty_column.account_unavailable": "Profiilia ei löydy", "empty_column.account_unavailable": "Profiilia ei löydy",
"empty_column.blocks": "Et ole vielä estänyt yhtään käyttäjää.", "empty_column.blocks": "Et ole vielä estänyt yhtään käyttäjää.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "Paikallinen aikajana on tyhjä. Homma lähtee käyntiin, kun kirjoitat jotain julkista!", "empty_column.community": "Paikallinen aikajana on tyhjä. Homma lähtee käyntiin, kun kirjoitat jotain julkista!",
"empty_column.direct": "Sinulla ei ole vielä yhtään viestiä yksittäiselle käyttäjälle. Kun lähetät tai vastaanotat sellaisen, se näkyy täällä.", "empty_column.direct": "Sinulla ei ole vielä yhtään viestiä yksittäiselle käyttäjälle. Kun lähetät tai vastaanotat sellaisen, se näkyy täällä.",
"empty_column.domain_blocks": "Yhtään verkko-osoitetta ei ole vielä piilotettu.", "empty_column.domain_blocks": "Yhtään verkko-osoitetta ei ole vielä piilotettu.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Et ole mykistänyt vielä yhtään käyttäjää.", "empty_column.mutes": "Et ole mykistänyt vielä yhtään käyttäjää.",
"empty_column.notifications": "Sinulle ei ole vielä ilmoituksia. Aloita keskustelu juttelemalla muille.", "empty_column.notifications": "Sinulle ei ole vielä ilmoituksia. Aloita keskustelu juttelemalla muille.",
"empty_column.public": "Täällä ei ole mitään! Saat sisältöä, kun kirjoitat jotain julkisesti tai käyt seuraamassa muiden instanssien käyttäjiä", "empty_column.public": "Täällä ei ole mitään! Saat sisältöä, kun kirjoitat jotain julkisesti tai käyt seuraamassa muiden instanssien käyttäjiä",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Valtuuta", "follow_request.authorize": "Valtuuta",
"follow_request.reject": "Hylkää", "follow_request.reject": "Hylkää",
"getting_started.heading": "Aloitus", "getting_started.heading": "Aloitus",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "ja {additional}", "hashtag.column_header.tag_mode.all": "ja {additional}",
"hashtag.column_header.tag_mode.any": "tai {additional}", "hashtag.column_header.tag_mode.any": "tai {additional}",
"hashtag.column_header.tag_mode.none": "ilman {additional}", "hashtag.column_header.tag_mode.none": "ilman {additional}",
"home.column_settings.basic": "Perusasetukset", "home.column_settings.show_direct": "Show direct messages",
"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",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Omat listat", "lists.subheading": "Omat listat",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Ladataan...", "loading_indicator.label": "Ladataan...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Säädä näkyvyyttä", "media_gallery.toggle_visible": "Säädä näkyvyyttä",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Ei löytynyt", "missing_indicator.label": "Ei löytynyt",
"missing_indicator.sublabel": "Tätä resurssia ei löytynyt", "missing_indicator.sublabel": "Tätä resurssia ei löytynyt",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Piilota tältä käyttäjältä tulevat ilmoitukset?", "mute_modal.hide_notifications": "Piilota tältä käyttäjältä tulevat ilmoitukset?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Estetyt käyttäjät", "navigation_bar.blocks": "Estetyt käyttäjät",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Paikallinen aikajana", "navigation_bar.community_timeline": "Paikallinen aikajana",
"navigation_bar.compose": "Kirjoita uusi tuuttaus", "navigation_bar.compose": "Kirjoita uusi tuuttaus",
"navigation_bar.direct": "Viestit", "navigation_bar.direct": "Viestit",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Buustit:", "notifications.column_settings.reblog": "Buustit:",
"notifications.column_settings.show": "Näytä sarakkeessa", "notifications.column_settings.show": "Näytä sarakkeessa",
"notifications.column_settings.sound": "Äänimerkki", "notifications.column_settings.sound": "Äänimerkki",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "Kaikki", "notifications.filter.all": "Kaikki",
"notifications.filter.boosts": "Buustit", "notifications.filter.boosts": "Buustit",
"notifications.filter.favourites": "Suosikit", "notifications.filter.favourites": "Suosikit",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number} pv", "relative_time.days": "{number} pv",
@ -379,8 +440,12 @@
"search_results.statuses": "Tuuttaukset", "search_results.statuses": "Tuuttaukset",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {tulos} other {tulosta}}", "search_results.total": "{count, number} {count, plural, one {tulos} other {tulosta}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Avaa moderaattorinäkymä tilistä @{name}", "status.admin_account": "Avaa moderaattorinäkymä tilistä @{name}",
"status.admin_status": "Avaa tilapäivitys moderaattorinäkymässä", "status.admin_status": "Avaa tilapäivitys moderaattorinäkymässä",
"status.block": "Estä @{name}", "status.block": "Estä @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Peru buustaus", "status.cancel_reblog_private": "Peru buustaus",
"status.cannot_reblog": "Tätä julkaisua ei voi buustata", "status.cannot_reblog": "Tätä julkaisua ei voi buustata",
"status.copy": "Kopioi linkki tilapäivitykseen", "status.copy": "Kopioi linkki tilapäivitykseen",
@ -439,6 +510,7 @@
"status.show_more": "Näytä lisää", "status.show_more": "Näytä lisää",
"status.show_more_all": "Näytä lisää kaikista", "status.show_more_all": "Näytä lisää kaikista",
"status.show_thread": "Näytä ketju", "status.show_thread": "Näytä ketju",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Poista keskustelun mykistys", "status.unmute_conversation": "Poista keskustelun mykistys",
"status.unpin": "Irrota profiilista", "status.unpin": "Irrota profiilista",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Signaler @{name}", "account.report": "Signaler @{name}",
"account.requested": "En attente dapprobation. Cliquez pour annuler la requête", "account.requested": "En attente dapprobation. Cliquez pour annuler la requête",
"account.requested_small": "Awaiting approval",
"account.share": "Partager le profil de @{name}", "account.share": "Partager le profil de @{name}",
"account.show_reblogs": "Afficher les partages de @{name}", "account.show_reblogs": "Afficher les partages de @{name}",
"account.unblock": "Débloquer @{name}", "account.unblock": "Débloquer @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Une erreur sest produite lors du chargement de ce composant.", "bundle_modal_error.message": "Une erreur sest produite lors du chargement de ce composant.",
"bundle_modal_error.retry": "Réessayer", "bundle_modal_error.retry": "Réessayer",
"column.blocks": "Comptes bloqués", "column.blocks": "Comptes bloqués",
"column.bookmarks": "Bookmarks",
"column.community": "Fil public local", "column.community": "Fil public local",
"column.direct": "Messages privés", "column.direct": "Messages privés",
"column.domain_blocks": "Domaines cachés", "column.domain_blocks": "Domaines cachés",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Demandes de suivi", "column.follow_requests": "Demandes de suivi",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Accueil", "column.home": "Accueil",
"column.lists": "Listes", "column.lists": "Listes",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Comptes masqués", "column.mutes": "Comptes masqués",
"column.notifications": "Notifications", "column.notifications": "Notifications",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "Ce pouet ne sera pas listé dans les recherches par hashtag car sa visibilité est réglée sur \"non listé\". Seuls les pouets avec une visibilité \"publique\" peuvent être recherchés par hashtag.", "compose_form.hashtag_warning": "Ce pouet ne sera pas listé dans les recherches par hashtag car sa visibilité est réglée sur \"non listé\". Seuls les pouets avec une visibilité \"publique\" peuvent être recherchés par hashtag.",
"compose_form.lock_disclaimer": "Votre compte nest pas {locked}. Tout le monde peut vous suivre et voir vos pouets privés.", "compose_form.lock_disclaimer": "Votre compte nest pas {locked}. Tout le monde peut vous suivre et voir vos pouets privés.",
"compose_form.lock_disclaimer.lock": "verrouillé", "compose_form.lock_disclaimer.lock": "verrouillé",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "Quavez-vous en tête?", "compose_form.placeholder": "Quavez-vous en tête?",
"compose_form.poll.add_option": "Ajouter un choix", "compose_form.poll.add_option": "Ajouter un choix",
"compose_form.poll.duration": "Durée du sondage", "compose_form.poll.duration": "Durée du sondage",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "Aucun pouet ici !", "empty_column.account_timeline": "Aucun pouet ici !",
"empty_column.account_unavailable": "Profil non disponible", "empty_column.account_unavailable": "Profil non disponible",
"empty_column.blocks": "Vous navez bloqué aucun·e utilisateur·rice pour le moment.", "empty_column.blocks": "Vous navez bloqué aucun·e utilisateur·rice pour le moment.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"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 navez pas encore de messages directs. Lorsque vous en enverrez ou recevrez un, il saffichera ici.", "empty_column.direct": "Vous navez pas encore de messages directs. Lorsque vous en enverrez ou recevrez un, il saffichera ici.",
"empty_column.domain_blocks": "Il ny a aucun domaine caché pour le moment.", "empty_column.domain_blocks": "Il ny a aucun domaine caché pour le moment.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Vous navez pas encore mis dutilisateur·rice·s en silence.", "empty_column.mutes": "Vous navez pas encore mis dutilisateur·rice·s en silence.",
"empty_column.notifications": "Vous navez pas encore de notification. Interagissez avec dautres personnes pour débuter la conversation.", "empty_column.notifications": "Vous navez pas encore de notification. Interagissez avec dautres personnes pour débuter la conversation.",
"empty_column.public": "Il ny a rien ici! Écrivez quelque chose publiquement, ou bien suivez manuellement des personnes dautres instances pour le remplir", "empty_column.public": "Il ny a rien ici! Écrivez quelque chose publiquement, ou bien suivez manuellement des personnes dautres instances pour le remplir",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Accepter", "follow_request.authorize": "Accepter",
"follow_request.reject": "Rejeter", "follow_request.reject": "Rejeter",
"getting_started.heading": "Pour commencer", "getting_started.heading": "Pour commencer",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "et {additional}", "hashtag.column_header.tag_mode.all": "et {additional}",
"hashtag.column_header.tag_mode.any": "ou {additional}", "hashtag.column_header.tag_mode.any": "ou {additional}",
"hashtag.column_header.tag_mode.none": "sans {additional}", "hashtag.column_header.tag_mode.none": "sans {additional}",
"home.column_settings.basic": "Base", "home.column_settings.show_direct": "Show direct messages",
"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",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Vos listes", "lists.subheading": "Vos listes",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Chargement…", "loading_indicator.label": "Chargement…",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Modifier la visibilité", "media_gallery.toggle_visible": "Modifier la visibilité",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Non trouvé", "missing_indicator.label": "Non trouvé",
"missing_indicator.sublabel": "Ressource introuvable", "missing_indicator.sublabel": "Ressource introuvable",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Masquer les notifications de cette personne?", "mute_modal.hide_notifications": "Masquer les notifications de cette personne?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Comptes bloqués", "navigation_bar.blocks": "Comptes bloqués",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Fil public local", "navigation_bar.community_timeline": "Fil public local",
"navigation_bar.compose": "Rédiger un nouveau toot", "navigation_bar.compose": "Rédiger un nouveau toot",
"navigation_bar.direct": "Messages directs", "navigation_bar.direct": "Messages directs",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Partages:", "notifications.column_settings.reblog": "Partages:",
"notifications.column_settings.show": "Afficher dans la colonne", "notifications.column_settings.show": "Afficher dans la colonne",
"notifications.column_settings.sound": "Émettre un son", "notifications.column_settings.sound": "Émettre un son",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "Tout", "notifications.filter.all": "Tout",
"notifications.filter.boosts": "Repartages", "notifications.filter.boosts": "Repartages",
"notifications.filter.favourites": "Favoris", "notifications.filter.favourites": "Favoris",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number} j", "relative_time.days": "{number} j",
@ -379,8 +440,12 @@
"search_results.statuses": "Pouets", "search_results.statuses": "Pouets",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {résultat} other {résultats}}", "search_results.total": "{count, number} {count, plural, one {résultat} other {résultats}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Ouvrir linterface de modération pour @{name}", "status.admin_account": "Ouvrir linterface de modération pour @{name}",
"status.admin_status": "Ouvrir ce statut dans linterface de modération", "status.admin_status": "Ouvrir ce statut dans linterface de modération",
"status.block": "Bloquer @{name}", "status.block": "Bloquer @{name}",
"status.bookmark": "Bookmark",
"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.copy": "Copier le lien vers le pouet", "status.copy": "Copier le lien vers le pouet",
@ -439,6 +510,7 @@
"status.show_more": "Déplier", "status.show_more": "Déplier",
"status.show_more_all": "Tout déplier", "status.show_more_all": "Tout déplier",
"status.show_thread": "Lire le fil", "status.show_thread": "Lire le fil",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Ne plus masquer la conversation", "status.unmute_conversation": "Ne plus masquer la conversation",
"status.unpin": "Retirer du profil", "status.unpin": "Retirer du profil",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Report @{name}", "account.report": "Report @{name}",
"account.requested": "Awaiting approval", "account.requested": "Awaiting approval",
"account.requested_small": "Awaiting approval",
"account.share": "Share @{name}'s profile", "account.share": "Share @{name}'s profile",
"account.show_reblogs": "Show reposts from @{name}", "account.show_reblogs": "Show reposts from @{name}",
"account.unblock": "Unblock @{name}", "account.unblock": "Unblock @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Something went wrong while loading this component.", "bundle_modal_error.message": "Something went wrong while loading this component.",
"bundle_modal_error.retry": "Try again", "bundle_modal_error.retry": "Try again",
"column.blocks": "Blocked users", "column.blocks": "Blocked users",
"column.bookmarks": "Bookmarks",
"column.community": "Local timeline", "column.community": "Local timeline",
"column.direct": "Direct messages", "column.direct": "Direct messages",
"column.domain_blocks": "Hidden domains", "column.domain_blocks": "Hidden domains",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Follow requests", "column.follow_requests": "Follow requests",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Home", "column.home": "Home",
"column.lists": "Lists", "column.lists": "Lists",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Muted users", "column.mutes": "Muted users",
"column.notifications": "Notifications", "column.notifications": "Notifications",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "This post won't be listed under any hashtag as it is unlisted. Only public posts can be searched by hashtag.", "compose_form.hashtag_warning": "This post won't be listed under any hashtag as it is unlisted. Only public posts 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": "Your account is not {locked}. Anyone can follow you to view your follower-only posts.",
"compose_form.lock_disclaimer.lock": "locked", "compose_form.lock_disclaimer.lock": "locked",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "What is on your mind?", "compose_form.placeholder": "What is on your mind?",
"compose_form.poll.add_option": "Add a choice", "compose_form.poll.add_option": "Add a choice",
"compose_form.poll.duration": "Poll duration", "compose_form.poll.duration": "Poll duration",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "No posts here!", "empty_column.account_timeline": "No posts here!",
"empty_column.account_unavailable": "Profile unavailable", "empty_column.account_unavailable": "Profile unavailable",
"empty_column.blocks": "You haven't blocked any users yet.", "empty_column.blocks": "You haven't blocked any users yet.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!", "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.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.domain_blocks": "There are no hidden domains yet.",
@ -165,8 +193,19 @@
"empty_column.mutes": "You haven't muted any users yet.", "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.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 servers to fill it up", "empty_column.public": "There is nothing here! Write something publicly, or manually follow users from other servers to fill it up",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Authorize", "follow_request.authorize": "Authorize",
"follow_request.reject": "Reject", "follow_request.reject": "Reject",
"getting_started.heading": "Getting started", "getting_started.heading": "Getting started",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "and {additional}", "hashtag.column_header.tag_mode.all": "and {additional}",
"hashtag.column_header.tag_mode.any": "or {additional}", "hashtag.column_header.tag_mode.any": "or {additional}",
"hashtag.column_header.tag_mode.none": "without {additional}", "hashtag.column_header.tag_mode.none": "without {additional}",
"home.column_settings.basic": "Basic", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "Show reposts", "home.column_settings.show_reblogs": "Show reposts",
"home.column_settings.show_replies": "Show replies", "home.column_settings.show_replies": "Show replies",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Your lists", "lists.subheading": "Your lists",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Loading...", "loading_indicator.label": "Loading...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Toggle visibility", "media_gallery.toggle_visible": "Toggle visibility",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Not found", "missing_indicator.label": "Not found",
"missing_indicator.sublabel": "This resource could not be found", "missing_indicator.sublabel": "This resource could not be found",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Hide notifications from this user?", "mute_modal.hide_notifications": "Hide notifications from this user?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Blocked users", "navigation_bar.blocks": "Blocked users",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Local timeline", "navigation_bar.community_timeline": "Local timeline",
"navigation_bar.compose": "Compose new post", "navigation_bar.compose": "Compose new post",
"navigation_bar.direct": "Direct messages", "navigation_bar.direct": "Direct messages",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Reposts:", "notifications.column_settings.reblog": "Reposts:",
"notifications.column_settings.show": "Show in column", "notifications.column_settings.show": "Show in column",
"notifications.column_settings.sound": "Play sound", "notifications.column_settings.sound": "Play sound",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "All", "notifications.filter.all": "All",
"notifications.filter.boosts": "Reposts", "notifications.filter.boosts": "Reposts",
"notifications.filter.favourites": "Favorites", "notifications.filter.favourites": "Favorites",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
@ -379,8 +440,12 @@
"search_results.statuses": "Posts", "search_results.statuses": "Posts",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {result} other {results}}", "search_results.total": "{count, number} {count, plural, one {result} other {results}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Open moderation interface for @{name}", "status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface", "status.admin_status": "Open this post in the moderation interface",
"status.block": "Block @{name}", "status.block": "Block @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Un-repost", "status.cancel_reblog_private": "Un-repost",
"status.cannot_reblog": "This post cannot be reposted", "status.cannot_reblog": "This post cannot be reposted",
"status.copy": "Copy link to post", "status.copy": "Copy link to post",
@ -439,6 +510,7 @@
"status.show_more": "Show more", "status.show_more": "Show more",
"status.show_more_all": "Show more for all", "status.show_more_all": "Show more for all",
"status.show_thread": "Show thread", "status.show_thread": "Show thread",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Unmute conversation", "status.unmute_conversation": "Unmute conversation",
"status.unpin": "Unpin from profile", "status.unpin": "Unpin from profile",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Informar sobre @{name}", "account.report": "Informar sobre @{name}",
"account.requested": "Agardando aceptación. Pulse para cancelar a solicitude de seguimento", "account.requested": "Agardando aceptación. Pulse para cancelar a solicitude de seguimento",
"account.requested_small": "Awaiting approval",
"account.share": "Compartir o perfil de @{name}", "account.share": "Compartir o perfil de @{name}",
"account.show_reblogs": "Mostrar repeticións de @{name}", "account.show_reblogs": "Mostrar repeticións de @{name}",
"account.unblock": "Desbloquear @{name}", "account.unblock": "Desbloquear @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Algo fallou mentras se cargaba este compoñente.", "bundle_modal_error.message": "Algo fallou mentras se cargaba este compoñente.",
"bundle_modal_error.retry": "Inténteo de novo", "bundle_modal_error.retry": "Inténteo de novo",
"column.blocks": "Usuarias bloqueadas", "column.blocks": "Usuarias bloqueadas",
"column.bookmarks": "Bookmarks",
"column.community": "Liña temporal local", "column.community": "Liña temporal local",
"column.direct": "Mensaxes directas", "column.direct": "Mensaxes directas",
"column.domain_blocks": "Dominios agochados", "column.domain_blocks": "Dominios agochados",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Peticións de seguimento", "column.follow_requests": "Peticións de seguimento",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Inicio", "column.home": "Inicio",
"column.lists": "Listas", "column.lists": "Listas",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Usuarias acaladas", "column.mutes": "Usuarias acaladas",
"column.notifications": "Notificacións", "column.notifications": "Notificacións",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "Esta mensaxe non será listada baixo ningunha etiqueta xa que está marcada como non listada. Só os toots públicos poden buscarse por etiquetas.", "compose_form.hashtag_warning": "Esta mensaxe non será listada baixo ningunha etiqueta xa que está marcada como non listada. Só os toots públicos poden buscarse por etiquetas.",
"compose_form.lock_disclaimer": "A súa conta non está {locked}. Calquera pode seguila para ver as súas mensaxes só-para-seguidoras.", "compose_form.lock_disclaimer": "A súa conta non está {locked}. Calquera pode seguila para ver as súas mensaxes só-para-seguidoras.",
"compose_form.lock_disclaimer.lock": "bloqueado", "compose_form.lock_disclaimer.lock": "bloqueado",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "Qué contas?", "compose_form.placeholder": "Qué contas?",
"compose_form.poll.add_option": "Engadir unha opción", "compose_form.poll.add_option": "Engadir unha opción",
"compose_form.poll.duration": "Duración da sondaxe", "compose_form.poll.duration": "Duración da sondaxe",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "Sen toots por aquí!", "empty_column.account_timeline": "Sen toots por aquí!",
"empty_column.account_unavailable": "Perfil non dispoñible", "empty_column.account_unavailable": "Perfil non dispoñible",
"empty_column.blocks": "Non bloqueou ningunha usuaria polo de agora.", "empty_column.blocks": "Non bloqueou ningunha usuaria polo de agora.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "A liña temporal local está baldeira. Escriba algo de xeito público para que rule!", "empty_column.community": "A liña temporal local está baldeira. Escriba algo de xeito público para que rule!",
"empty_column.direct": "Aínda non ten mensaxes directas. Cando envíe ou reciba unha, aparecerá aquí.", "empty_column.direct": "Aínda non ten mensaxes directas. Cando envíe ou reciba unha, aparecerá aquí.",
"empty_column.domain_blocks": "Aínda non ocultou ningún dominio.", "empty_column.domain_blocks": "Aínda non ocultou ningún dominio.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Non acalou ningunha usuaria polo de agora.", "empty_column.mutes": "Non acalou ningunha usuaria polo de agora.",
"empty_column.notifications": "Aínda non ten notificacións. Interactúe con outras para iniciar unha conversa.", "empty_column.notifications": "Aínda non ten notificacións. Interactúe con outras para iniciar unha conversa.",
"empty_column.public": "Nada por aquí! Escriba algo de xeito público, ou siga manualmente usuarias de outros servidores para ir enchéndoa", "empty_column.public": "Nada por aquí! Escriba algo de xeito público, ou siga manualmente usuarias de outros servidores para ir enchéndoa",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Autorizar", "follow_request.authorize": "Autorizar",
"follow_request.reject": "Rexeitar", "follow_request.reject": "Rexeitar",
"getting_started.heading": "Comezando", "getting_started.heading": "Comezando",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "e {additional}", "hashtag.column_header.tag_mode.all": "e {additional}",
"hashtag.column_header.tag_mode.any": "ou {additional}", "hashtag.column_header.tag_mode.any": "ou {additional}",
"hashtag.column_header.tag_mode.none": "sen {additional}", "hashtag.column_header.tag_mode.none": "sen {additional}",
"home.column_settings.basic": "Básico", "home.column_settings.show_direct": "Show direct messages",
"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",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "As túas listas", "lists.subheading": "As túas listas",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Cargando...", "loading_indicator.label": "Cargando...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Ocultar", "media_gallery.toggle_visible": "Ocultar",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Non atopado", "missing_indicator.label": "Non atopado",
"missing_indicator.sublabel": "Non se puido atopar o recurso", "missing_indicator.sublabel": "Non se puido atopar o recurso",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Esconder notificacións deste usuario?", "mute_modal.hide_notifications": "Esconder notificacións deste usuario?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Usuarias bloqueadas", "navigation_bar.blocks": "Usuarias bloqueadas",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Liña temporal local", "navigation_bar.community_timeline": "Liña temporal local",
"navigation_bar.compose": "Escribir novo toot", "navigation_bar.compose": "Escribir novo toot",
"navigation_bar.direct": "Mensaxes directas", "navigation_bar.direct": "Mensaxes directas",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Promocións:", "notifications.column_settings.reblog": "Promocións:",
"notifications.column_settings.show": "Mostrar en columna", "notifications.column_settings.show": "Mostrar en columna",
"notifications.column_settings.sound": "Reproducir son", "notifications.column_settings.sound": "Reproducir son",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "Todo", "notifications.filter.all": "Todo",
"notifications.filter.boosts": "Promocións", "notifications.filter.boosts": "Promocións",
"notifications.filter.favourites": "Favoritos", "notifications.filter.favourites": "Favoritos",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
@ -379,8 +440,12 @@
"search_results.statuses": "Posts", "search_results.statuses": "Posts",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count,plural,one {result} outros {results}}", "search_results.total": "{count, number} {count,plural,one {result} outros {results}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Abrir interface de moderación para @{name}", "status.admin_account": "Abrir interface de moderación para @{name}",
"status.admin_status": "Abrir este estado na interface de moderación", "status.admin_status": "Abrir este estado na interface de moderación",
"status.block": "Bloquear @{name}", "status.block": "Bloquear @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Non promover", "status.cancel_reblog_private": "Non promover",
"status.cannot_reblog": "Esta mensaxe non pode ser promovida", "status.cannot_reblog": "Esta mensaxe non pode ser promovida",
"status.copy": "Copiar ligazón ao estado", "status.copy": "Copiar ligazón ao estado",
@ -439,6 +510,7 @@
"status.show_more": "Mostrar máis", "status.show_more": "Mostrar máis",
"status.show_more_all": "Mostrar máis para todas", "status.show_more_all": "Mostrar máis para todas",
"status.show_thread": "Mostrar fío", "status.show_thread": "Mostrar fío",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Non acalar a conversa", "status.unmute_conversation": "Non acalar a conversa",
"status.unpin": "Despegar do perfil", "status.unpin": "Despegar do perfil",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "לדווח על @{name}", "account.report": "לדווח על @{name}",
"account.requested": "בהמתנה לאישור", "account.requested": "בהמתנה לאישור",
"account.requested_small": "Awaiting approval",
"account.share": "לשתף את הפרופיל של @{name}", "account.share": "לשתף את הפרופיל של @{name}",
"account.show_reblogs": "להראות הדהודים מאת @{name}", "account.show_reblogs": "להראות הדהודים מאת @{name}",
"account.unblock": "הסרת חסימה מעל @{name}", "account.unblock": "הסרת חסימה מעל @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "משהו השתבש בעת טעינת הרכיב הזה.", "bundle_modal_error.message": "משהו השתבש בעת טעינת הרכיב הזה.",
"bundle_modal_error.retry": "לנסות שוב", "bundle_modal_error.retry": "לנסות שוב",
"column.blocks": "חסימות", "column.blocks": "חסימות",
"column.bookmarks": "Bookmarks",
"column.community": "ציר זמן מקומי", "column.community": "ציר זמן מקומי",
"column.direct": "Direct messages", "column.direct": "Direct messages",
"column.domain_blocks": "Hidden domains", "column.domain_blocks": "Hidden domains",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "בקשות מעקב", "column.follow_requests": "בקשות מעקב",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "בבית", "column.home": "בבית",
"column.lists": "Lists", "column.lists": "Lists",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "השתקות", "column.mutes": "השתקות",
"column.notifications": "התראות", "column.notifications": "התראות",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "This post won't be listed under any hashtag as it is unlisted. Only public posts can be searched by hashtag.", "compose_form.hashtag_warning": "This post won't be listed under any hashtag as it is unlisted. Only public posts can be searched by hashtag.",
"compose_form.lock_disclaimer": "חשבונך אינו {locked}. כל אחד יוכל לעקוב אחריך כדי לקרוא את הודעותיך המיועדות לעוקבים בלבד.", "compose_form.lock_disclaimer": "חשבונך אינו {locked}. כל אחד יוכל לעקוב אחריך כדי לקרוא את הודעותיך המיועדות לעוקבים בלבד.",
"compose_form.lock_disclaimer.lock": "נעול", "compose_form.lock_disclaimer.lock": "נעול",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "מה עובר לך בראש?", "compose_form.placeholder": "מה עובר לך בראש?",
"compose_form.poll.add_option": "Add a choice", "compose_form.poll.add_option": "Add a choice",
"compose_form.poll.duration": "Poll duration", "compose_form.poll.duration": "Poll duration",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "No posts here!", "empty_column.account_timeline": "No posts here!",
"empty_column.account_unavailable": "Profile unavailable", "empty_column.account_unavailable": "Profile unavailable",
"empty_column.blocks": "You haven't blocked any users yet.", "empty_column.blocks": "You haven't blocked any users yet.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "טור הסביבה ריק. יש לפרסם משהו כדי שדברים יתרחילו להתגלגל!", "empty_column.community": "טור הסביבה ריק. יש לפרסם משהו כדי שדברים יתרחילו להתגלגל!",
"empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.", "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.domain_blocks": "There are no hidden domains yet.",
@ -165,8 +193,19 @@
"empty_column.mutes": "You haven't muted any users yet.", "empty_column.mutes": "You haven't muted any users yet.",
"empty_column.notifications": "אין התראות עדיין. יאללה, הגיע הזמן להתחיל להתערבב.", "empty_column.notifications": "אין התראות עדיין. יאללה, הגיע הזמן להתחיל להתערבב.",
"empty_column.public": "אין פה כלום! כדי למלא את הטור הזה אפשר לכתוב משהו, או להתחיל לעקוב אחרי אנשים מקהילות אחרות", "empty_column.public": "אין פה כלום! כדי למלא את הטור הזה אפשר לכתוב משהו, או להתחיל לעקוב אחרי אנשים מקהילות אחרות",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "קבלה", "follow_request.authorize": "קבלה",
"follow_request.reject": "דחיה", "follow_request.reject": "דחיה",
"getting_started.heading": "בואו נתחיל", "getting_started.heading": "בואו נתחיל",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "and {additional}", "hashtag.column_header.tag_mode.all": "and {additional}",
"hashtag.column_header.tag_mode.any": "or {additional}", "hashtag.column_header.tag_mode.any": "or {additional}",
"hashtag.column_header.tag_mode.none": "without {additional}", "hashtag.column_header.tag_mode.none": "without {additional}",
"home.column_settings.basic": "למתחילים", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "הצגת הדהודים", "home.column_settings.show_reblogs": "הצגת הדהודים",
"home.column_settings.show_replies": "הצגת תגובות", "home.column_settings.show_replies": "הצגת תגובות",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Your lists", "lists.subheading": "Your lists",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "טוען...", "loading_indicator.label": "טוען...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "נראה בלתי נראה", "media_gallery.toggle_visible": "נראה בלתי נראה",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "לא נמצא", "missing_indicator.label": "לא נמצא",
"missing_indicator.sublabel": "This resource could not be found", "missing_indicator.sublabel": "This resource could not be found",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "להסתיר הודעות מחשבון זה?", "mute_modal.hide_notifications": "להסתיר הודעות מחשבון זה?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "חסימות", "navigation_bar.blocks": "חסימות",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "ציר זמן מקומי", "navigation_bar.community_timeline": "ציר זמן מקומי",
"navigation_bar.compose": "Compose new post", "navigation_bar.compose": "Compose new post",
"navigation_bar.direct": "Direct messages", "navigation_bar.direct": "Direct messages",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "הדהודים:", "notifications.column_settings.reblog": "הדהודים:",
"notifications.column_settings.show": "הצגה בטור", "notifications.column_settings.show": "הצגה בטור",
"notifications.column_settings.sound": "שמע מופעל", "notifications.column_settings.sound": "שמע מופעל",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "All", "notifications.filter.all": "All",
"notifications.filter.boosts": "Reposts", "notifications.filter.boosts": "Reposts",
"notifications.filter.favourites": "Favorites", "notifications.filter.favourites": "Favorites",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
@ -379,8 +440,12 @@
"search_results.statuses": "Posts", "search_results.statuses": "Posts",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {תוצאה} other {תוצאות}}", "search_results.total": "{count, number} {count, plural, one {תוצאה} other {תוצאות}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Open moderation interface for @{name}", "status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface", "status.admin_status": "Open this post in the moderation interface",
"status.block": "Block @{name}", "status.block": "Block @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Un-repost", "status.cancel_reblog_private": "Un-repost",
"status.cannot_reblog": "לא ניתן להדהד הודעה זו", "status.cannot_reblog": "לא ניתן להדהד הודעה זו",
"status.copy": "Copy link to post", "status.copy": "Copy link to post",
@ -439,6 +510,7 @@
"status.show_more": "הראה יותר", "status.show_more": "הראה יותר",
"status.show_more_all": "Show more for all", "status.show_more_all": "Show more for all",
"status.show_thread": "Show thread", "status.show_thread": "Show thread",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "הסרת השתקת שיחה", "status.unmute_conversation": "הסרת השתקת שיחה",
"status.unpin": "לשחרר מקיבוע באודות", "status.unpin": "לשחרר מקיבוע באודות",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Report @{name}", "account.report": "Report @{name}",
"account.requested": "Awaiting approval. Click to cancel follow request", "account.requested": "Awaiting approval. Click to cancel follow request",
"account.requested_small": "Awaiting approval",
"account.share": "Share @{name}'s profile", "account.share": "Share @{name}'s profile",
"account.show_reblogs": "Show reposts from @{name}", "account.show_reblogs": "Show reposts from @{name}",
"account.unblock": "Unblock @{name}", "account.unblock": "Unblock @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Something went wrong while loading this component.", "bundle_modal_error.message": "Something went wrong while loading this component.",
"bundle_modal_error.retry": "Try again", "bundle_modal_error.retry": "Try again",
"column.blocks": "Blocked users", "column.blocks": "Blocked users",
"column.bookmarks": "Bookmarks",
"column.community": "Local timeline", "column.community": "Local timeline",
"column.direct": "Direct messages", "column.direct": "Direct messages",
"column.domain_blocks": "Hidden domains", "column.domain_blocks": "Hidden domains",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Follow requests", "column.follow_requests": "Follow requests",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Home", "column.home": "Home",
"column.lists": "Lists", "column.lists": "Lists",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Muted users", "column.mutes": "Muted users",
"column.notifications": "Notifications", "column.notifications": "Notifications",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "This post won't be listed under any hashtag as it is unlisted. Only public posts can be searched by hashtag.", "compose_form.hashtag_warning": "This post won't be listed under any hashtag as it is unlisted. Only public posts 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": "Your account is not {locked}. Anyone can follow you to view your follower-only posts.",
"compose_form.lock_disclaimer.lock": "locked", "compose_form.lock_disclaimer.lock": "locked",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "What is on your mind?", "compose_form.placeholder": "What is on your mind?",
"compose_form.poll.add_option": "Add a choice", "compose_form.poll.add_option": "Add a choice",
"compose_form.poll.duration": "Poll duration", "compose_form.poll.duration": "Poll duration",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "No posts here!", "empty_column.account_timeline": "No posts here!",
"empty_column.account_unavailable": "Profile unavailable", "empty_column.account_unavailable": "Profile unavailable",
"empty_column.blocks": "You haven't blocked any users yet.", "empty_column.blocks": "You haven't blocked any users yet.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!", "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.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.domain_blocks": "There are no hidden domains yet.",
@ -165,8 +193,19 @@
"empty_column.mutes": "You haven't muted any users yet.", "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.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 servers to fill it up", "empty_column.public": "There is nothing here! Write something publicly, or manually follow users from other servers to fill it up",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Authorize", "follow_request.authorize": "Authorize",
"follow_request.reject": "Reject", "follow_request.reject": "Reject",
"getting_started.heading": "Getting started", "getting_started.heading": "Getting started",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "and {additional}", "hashtag.column_header.tag_mode.all": "and {additional}",
"hashtag.column_header.tag_mode.any": "or {additional}", "hashtag.column_header.tag_mode.any": "or {additional}",
"hashtag.column_header.tag_mode.none": "without {additional}", "hashtag.column_header.tag_mode.none": "without {additional}",
"home.column_settings.basic": "Basic", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "Show reposts", "home.column_settings.show_reblogs": "Show reposts",
"home.column_settings.show_replies": "Show replies", "home.column_settings.show_replies": "Show replies",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Your lists", "lists.subheading": "Your lists",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Loading...", "loading_indicator.label": "Loading...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Toggle visibility", "media_gallery.toggle_visible": "Toggle visibility",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Not found", "missing_indicator.label": "Not found",
"missing_indicator.sublabel": "This resource could not be found", "missing_indicator.sublabel": "This resource could not be found",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Hide notifications from this user?", "mute_modal.hide_notifications": "Hide notifications from this user?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Blocked users", "navigation_bar.blocks": "Blocked users",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Local timeline", "navigation_bar.community_timeline": "Local timeline",
"navigation_bar.compose": "Compose new post", "navigation_bar.compose": "Compose new post",
"navigation_bar.direct": "Direct messages", "navigation_bar.direct": "Direct messages",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Reposts:", "notifications.column_settings.reblog": "Reposts:",
"notifications.column_settings.show": "Show in column", "notifications.column_settings.show": "Show in column",
"notifications.column_settings.sound": "Play sound", "notifications.column_settings.sound": "Play sound",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "All", "notifications.filter.all": "All",
"notifications.filter.boosts": "Reposts", "notifications.filter.boosts": "Reposts",
"notifications.filter.favourites": "Favorites", "notifications.filter.favourites": "Favorites",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
@ -379,8 +440,12 @@
"search_results.statuses": "Posts", "search_results.statuses": "Posts",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {result} other {results}}", "search_results.total": "{count, number} {count, plural, one {result} other {results}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Open moderation interface for @{name}", "status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface", "status.admin_status": "Open this post in the moderation interface",
"status.block": "Block @{name}", "status.block": "Block @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Un-repost", "status.cancel_reblog_private": "Un-repost",
"status.cannot_reblog": "This post cannot be reposted", "status.cannot_reblog": "This post cannot be reposted",
"status.copy": "Copy link to post", "status.copy": "Copy link to post",
@ -439,6 +510,7 @@
"status.show_more": "Show more", "status.show_more": "Show more",
"status.show_more_all": "Show more for all", "status.show_more_all": "Show more for all",
"status.show_thread": "Show thread", "status.show_thread": "Show thread",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Unmute conversation", "status.unmute_conversation": "Unmute conversation",
"status.unpin": "Unpin from profile", "status.unpin": "Unpin from profile",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Prijavi @{name}", "account.report": "Prijavi @{name}",
"account.requested": "Čeka pristanak", "account.requested": "Čeka pristanak",
"account.requested_small": "Awaiting approval",
"account.share": "Share @{name}'s profile", "account.share": "Share @{name}'s profile",
"account.show_reblogs": "Show reposts from @{name}", "account.show_reblogs": "Show reposts from @{name}",
"account.unblock": "Deblokiraj @{name}", "account.unblock": "Deblokiraj @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Something went wrong while loading this component.", "bundle_modal_error.message": "Something went wrong while loading this component.",
"bundle_modal_error.retry": "Try again", "bundle_modal_error.retry": "Try again",
"column.blocks": "Blokirani korisnici", "column.blocks": "Blokirani korisnici",
"column.bookmarks": "Bookmarks",
"column.community": "Lokalni timeline", "column.community": "Lokalni timeline",
"column.direct": "Direct messages", "column.direct": "Direct messages",
"column.domain_blocks": "Hidden domains", "column.domain_blocks": "Hidden domains",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Zahtjevi za slijeđenje", "column.follow_requests": "Zahtjevi za slijeđenje",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Dom", "column.home": "Dom",
"column.lists": "Lists", "column.lists": "Lists",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Utišani korisnici", "column.mutes": "Utišani korisnici",
"column.notifications": "Notifikacije", "column.notifications": "Notifikacije",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "This post won't be listed under any hashtag as it is unlisted. Only public posts can be searched by hashtag.", "compose_form.hashtag_warning": "This post won't be listed under any hashtag as it is unlisted. Only public posts can be searched by hashtag.",
"compose_form.lock_disclaimer": "Tvoj račun nije {locked}. Svatko te može slijediti kako bi vidio postove namijenjene samo tvojim sljedbenicima.", "compose_form.lock_disclaimer": "Tvoj račun nije {locked}. Svatko te može slijediti kako bi vidio postove namijenjene samo tvojim sljedbenicima.",
"compose_form.lock_disclaimer.lock": "zaključan", "compose_form.lock_disclaimer.lock": "zaključan",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "Što ti je na umu?", "compose_form.placeholder": "Što ti je na umu?",
"compose_form.poll.add_option": "Add a choice", "compose_form.poll.add_option": "Add a choice",
"compose_form.poll.duration": "Poll duration", "compose_form.poll.duration": "Poll duration",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "No posts here!", "empty_column.account_timeline": "No posts here!",
"empty_column.account_unavailable": "Profile unavailable", "empty_column.account_unavailable": "Profile unavailable",
"empty_column.blocks": "You haven't blocked any users yet.", "empty_column.blocks": "You haven't blocked any users yet.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "Lokalni timeline je prazan. Napiši nešto javno kako bi pokrenuo stvari!", "empty_column.community": "Lokalni timeline je prazan. Napiši nešto javno kako bi pokrenuo stvari!",
"empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.", "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.domain_blocks": "There are no hidden domains yet.",
@ -165,8 +193,19 @@
"empty_column.mutes": "You haven't muted any users yet.", "empty_column.mutes": "You haven't muted any users yet.",
"empty_column.notifications": "Još nemaš notifikacija. Komuniciraj sa drugima kako bi započeo razgovor.", "empty_column.notifications": "Još nemaš notifikacija. Komuniciraj sa drugima kako bi započeo razgovor.",
"empty_column.public": "Ovdje nema ništa! Napiši nešto javno, ili ručno slijedi korisnike sa drugih instanci kako bi popunio", "empty_column.public": "Ovdje nema ništa! Napiši nešto javno, ili ručno slijedi korisnike sa drugih instanci kako bi popunio",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Autoriziraj", "follow_request.authorize": "Autoriziraj",
"follow_request.reject": "Odbij", "follow_request.reject": "Odbij",
"getting_started.heading": "Počnimo", "getting_started.heading": "Počnimo",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "and {additional}", "hashtag.column_header.tag_mode.all": "and {additional}",
"hashtag.column_header.tag_mode.any": "or {additional}", "hashtag.column_header.tag_mode.any": "or {additional}",
"hashtag.column_header.tag_mode.none": "without {additional}", "hashtag.column_header.tag_mode.none": "without {additional}",
"home.column_settings.basic": "Osnovno", "home.column_settings.show_direct": "Show direct messages",
"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",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Your lists", "lists.subheading": "Your lists",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Učitavam...", "loading_indicator.label": "Učitavam...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Preklopi vidljivost", "media_gallery.toggle_visible": "Preklopi vidljivost",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Nije nađen", "missing_indicator.label": "Nije nađen",
"missing_indicator.sublabel": "This resource could not be found", "missing_indicator.sublabel": "This resource could not be found",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Hide notifications from this user?", "mute_modal.hide_notifications": "Hide notifications from this user?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Blokirani korisnici", "navigation_bar.blocks": "Blokirani korisnici",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Lokalni timeline", "navigation_bar.community_timeline": "Lokalni timeline",
"navigation_bar.compose": "Compose new post", "navigation_bar.compose": "Compose new post",
"navigation_bar.direct": "Direct messages", "navigation_bar.direct": "Direct messages",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Boostovi:", "notifications.column_settings.reblog": "Boostovi:",
"notifications.column_settings.show": "Prikaži u stupcu", "notifications.column_settings.show": "Prikaži u stupcu",
"notifications.column_settings.sound": "Sviraj zvuk", "notifications.column_settings.sound": "Sviraj zvuk",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "All", "notifications.filter.all": "All",
"notifications.filter.boosts": "Reposts", "notifications.filter.boosts": "Reposts",
"notifications.filter.favourites": "Favorites", "notifications.filter.favourites": "Favorites",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
@ -379,8 +440,12 @@
"search_results.statuses": "Posts", "search_results.statuses": "Posts",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {result} other {results}}", "search_results.total": "{count, number} {count, plural, one {result} other {results}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Open moderation interface for @{name}", "status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface", "status.admin_status": "Open this post in the moderation interface",
"status.block": "Block @{name}", "status.block": "Block @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Un-repost", "status.cancel_reblog_private": "Un-repost",
"status.cannot_reblog": "Ovaj post ne može biti boostan", "status.cannot_reblog": "Ovaj post ne može biti boostan",
"status.copy": "Copy link to post", "status.copy": "Copy link to post",
@ -439,6 +510,7 @@
"status.show_more": "Pokaži više", "status.show_more": "Pokaži više",
"status.show_more_all": "Show more for all", "status.show_more_all": "Show more for all",
"status.show_thread": "Show thread", "status.show_thread": "Show thread",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Poništi utišavanje razgovora", "status.unmute_conversation": "Poništi utišavanje razgovora",
"status.unpin": "Unpin from profile", "status.unpin": "Unpin from profile",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "@{name} jelentése", "account.report": "@{name} jelentése",
"account.requested": "Engedélyre vár. Kattints a követési kérés visszavonásához", "account.requested": "Engedélyre vár. Kattints a követési kérés visszavonásához",
"account.requested_small": "Awaiting approval",
"account.share": "@{name} profiljának megosztása", "account.share": "@{name} profiljának megosztása",
"account.show_reblogs": "@{name} megtolásainak mutatása", "account.show_reblogs": "@{name} megtolásainak mutatása",
"account.unblock": "@{name} letiltásának feloldása", "account.unblock": "@{name} letiltásának feloldása",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Hiba történt a komponens betöltésekor.", "bundle_modal_error.message": "Hiba történt a komponens betöltésekor.",
"bundle_modal_error.retry": "Próbáld újra", "bundle_modal_error.retry": "Próbáld újra",
"column.blocks": "Letiltott felhasználók", "column.blocks": "Letiltott felhasználók",
"column.bookmarks": "Bookmarks",
"column.community": "Helyi idővonal", "column.community": "Helyi idővonal",
"column.direct": "Közvetlen üzenetek", "column.direct": "Közvetlen üzenetek",
"column.domain_blocks": "Rejtett domainek", "column.domain_blocks": "Rejtett domainek",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Követési kérelmek", "column.follow_requests": "Követési kérelmek",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Kezdőlap", "column.home": "Kezdőlap",
"column.lists": "Listák", "column.lists": "Listák",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Némított felhasználók", "column.mutes": "Némított felhasználók",
"column.notifications": "Értesítések", "column.notifications": "Értesítések",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "Ez a tülköd nem fog megjelenni semmilyen hashtag alatt mivel listázatlan. Csak nyilvános tülkök kereshetőek hashtaggel.", "compose_form.hashtag_warning": "Ez a tülköd nem fog megjelenni semmilyen hashtag alatt mivel listázatlan. Csak nyilvános tülkök kereshetőek hashtaggel.",
"compose_form.lock_disclaimer": "A fiókod nincs {locked}. Bárki követni tud, hogy megtekintse a kizárólag követőknek szánt üzeneteidet.", "compose_form.lock_disclaimer": "A fiókod nincs {locked}. Bárki követni tud, hogy megtekintse a kizárólag követőknek szánt üzeneteidet.",
"compose_form.lock_disclaimer.lock": "lezárva", "compose_form.lock_disclaimer.lock": "lezárva",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "Mi jár a fejedben?", "compose_form.placeholder": "Mi jár a fejedben?",
"compose_form.poll.add_option": "Lehetőség hozzáadása", "compose_form.poll.add_option": "Lehetőség hozzáadása",
"compose_form.poll.duration": "Szavazás időtartama", "compose_form.poll.duration": "Szavazás időtartama",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "Itt nincs tülkölés!", "empty_column.account_timeline": "Itt nincs tülkölés!",
"empty_column.account_unavailable": "A profil nem elérhető", "empty_column.account_unavailable": "A profil nem elérhető",
"empty_column.blocks": "Még senkit sem tiltottál le.", "empty_column.blocks": "Még senkit sem tiltottál le.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "A helyi idővonal üres. Tülkölj egyet nyilvánosan, hogy elindítsd az eseményeket!", "empty_column.community": "A helyi idővonal üres. Tülkölj egyet nyilvánosan, hogy elindítsd az eseményeket!",
"empty_column.direct": "Még nincs egy közvetlen üzeneted sem. Ha küldesz vagy kapsz egyet, itt fog megjelenni.", "empty_column.direct": "Még nincs egy közvetlen üzeneted sem. Ha küldesz vagy kapsz egyet, itt fog megjelenni.",
"empty_column.domain_blocks": "Még nem rejtettél el egyetlen domaint sem.", "empty_column.domain_blocks": "Még nem rejtettél el egyetlen domaint sem.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Még egy felhasználót sem némítottál le.", "empty_column.mutes": "Még egy felhasználót sem némítottál le.",
"empty_column.notifications": "Jelenleg nincsenek értesítéseid. Lépj kapcsolatba másokkal, hogy elindítsd a beszélgetést.", "empty_column.notifications": "Jelenleg nincsenek értesítéseid. Lépj kapcsolatba másokkal, hogy elindítsd a beszélgetést.",
"empty_column.public": "Jelenleg itt nincs semmi! Írj valamit nyilvánosan vagy kövess más szervereken levő felhasználókat, hogy megtöltsd", "empty_column.public": "Jelenleg itt nincs semmi! Írj valamit nyilvánosan vagy kövess más szervereken levő felhasználókat, hogy megtöltsd",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Engedélyezés", "follow_request.authorize": "Engedélyezés",
"follow_request.reject": "Visszautasítás", "follow_request.reject": "Visszautasítás",
"getting_started.heading": "Első lépések", "getting_started.heading": "Első lépések",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "és {additional}", "hashtag.column_header.tag_mode.all": "és {additional}",
"hashtag.column_header.tag_mode.any": "vagy {additional}", "hashtag.column_header.tag_mode.any": "vagy {additional}",
"hashtag.column_header.tag_mode.none": "nélküle {additional}", "hashtag.column_header.tag_mode.none": "nélküle {additional}",
"home.column_settings.basic": "Alapértelmezések", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "Megtolások mutatása", "home.column_settings.show_reblogs": "Megtolások mutatása",
"home.column_settings.show_replies": "Válaszok mutatása", "home.column_settings.show_replies": "Válaszok mutatása",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Listáid", "lists.subheading": "Listáid",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Betöltés...", "loading_indicator.label": "Betöltés...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Láthatóság állítása", "media_gallery.toggle_visible": "Láthatóság állítása",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Nincs találat", "missing_indicator.label": "Nincs találat",
"missing_indicator.sublabel": "Ez az erőforrás nem található", "missing_indicator.sublabel": "Ez az erőforrás nem található",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Rejtsük el a felhasználótól származó értesítéseket?", "mute_modal.hide_notifications": "Rejtsük el a felhasználótól származó értesítéseket?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Letiltott felhasználók", "navigation_bar.blocks": "Letiltott felhasználók",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Helyi idővonal", "navigation_bar.community_timeline": "Helyi idővonal",
"navigation_bar.compose": "Új tülk írása", "navigation_bar.compose": "Új tülk írása",
"navigation_bar.direct": "Közvetlen üzenetek", "navigation_bar.direct": "Közvetlen üzenetek",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Megtolások:", "notifications.column_settings.reblog": "Megtolások:",
"notifications.column_settings.show": "Oszlopban mutatás", "notifications.column_settings.show": "Oszlopban mutatás",
"notifications.column_settings.sound": "Hang lejátszása", "notifications.column_settings.sound": "Hang lejátszása",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "Mind", "notifications.filter.all": "Mind",
"notifications.filter.boosts": "Megtolások", "notifications.filter.boosts": "Megtolások",
"notifications.filter.favourites": "Kedvencnek jelölések", "notifications.filter.favourites": "Kedvencnek jelölések",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}nap", "relative_time.days": "{number}nap",
@ -379,8 +440,12 @@
"search_results.statuses": "Tülkök", "search_results.statuses": "Tülkök",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {találat} other {találat}}", "search_results.total": "{count, number} {count, plural, one {találat} other {találat}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Moderáció megnyitása @{name} felhasználóhoz", "status.admin_account": "Moderáció megnyitása @{name} felhasználóhoz",
"status.admin_status": "Tülk megnyitása moderációra", "status.admin_status": "Tülk megnyitása moderációra",
"status.block": "@{name} letiltása", "status.block": "@{name} letiltása",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Megtolás törlése", "status.cancel_reblog_private": "Megtolás törlése",
"status.cannot_reblog": "Ez a tülk nem tolható meg", "status.cannot_reblog": "Ez a tülk nem tolható meg",
"status.copy": "Link másolása tülkbe", "status.copy": "Link másolása tülkbe",
@ -439,6 +510,7 @@
"status.show_more": "Többet", "status.show_more": "Többet",
"status.show_more_all": "Többet mindenhol", "status.show_more_all": "Többet mindenhol",
"status.show_thread": "Szál mutatása", "status.show_thread": "Szál mutatása",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Beszélgetés némításának kikapcsolása", "status.unmute_conversation": "Beszélgetés némításának kikapcsolása",
"status.unpin": "Kitűzés eltávolítása a profilodról", "status.unpin": "Kitűzés eltávolítása a profilodról",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Բողոքել @{name}֊ից", "account.report": "Բողոքել @{name}֊ից",
"account.requested": "Հաստատման կարիք ունի։ Սեղմիր՝ հետեւելու հայցը չեղարկելու համար։", "account.requested": "Հաստատման կարիք ունի։ Սեղմիր՝ հետեւելու հայցը չեղարկելու համար։",
"account.requested_small": "Awaiting approval",
"account.share": "Կիսվել @{name}֊ի էջով", "account.share": "Կիսվել @{name}֊ի էջով",
"account.show_reblogs": "Ցուցադրել @{name}֊ի տարածածները", "account.show_reblogs": "Ցուցադրել @{name}֊ի տարածածները",
"account.unblock": "Ապաարգելափակել @{name}֊ին", "account.unblock": "Ապաարգելափակել @{name}֊ին",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Այս բաղադրիչը բեռնելու ընթացքում ինչ֊որ բան խափանվեց։", "bundle_modal_error.message": "Այս բաղադրիչը բեռնելու ընթացքում ինչ֊որ բան խափանվեց։",
"bundle_modal_error.retry": "Կրկին փորձել", "bundle_modal_error.retry": "Կրկին փորձել",
"column.blocks": "Արգելափակված օգտատերեր", "column.blocks": "Արգելափակված օգտատերեր",
"column.bookmarks": "Bookmarks",
"column.community": "Տեղական հոսք", "column.community": "Տեղական հոսք",
"column.direct": "Direct messages", "column.direct": "Direct messages",
"column.domain_blocks": "Hidden domains", "column.domain_blocks": "Hidden domains",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Հետեւելու հայցեր", "column.follow_requests": "Հետեւելու հայցեր",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Հիմնական", "column.home": "Հիմնական",
"column.lists": "Ցանկեր", "column.lists": "Ցանկեր",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Լռեցրած օգտատերեր", "column.mutes": "Լռեցրած օգտատերեր",
"column.notifications": "Ծանուցումներ", "column.notifications": "Ծանուցումներ",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"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.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "Ի՞նչ կա մտքիդ", "compose_form.placeholder": "Ի՞նչ կա մտքիդ",
"compose_form.poll.add_option": "Add a choice", "compose_form.poll.add_option": "Add a choice",
"compose_form.poll.duration": "Poll duration", "compose_form.poll.duration": "Poll duration",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "No posts here!", "empty_column.account_timeline": "No posts here!",
"empty_column.account_unavailable": "Profile unavailable", "empty_column.account_unavailable": "Profile unavailable",
"empty_column.blocks": "You haven't blocked any users yet.", "empty_column.blocks": "You haven't blocked any users yet.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "Տեղական հոսքը դատա՛րկ է։ Հրապարակային մի բան գրիր շարժիչը խոդ տալու համար։", "empty_column.community": "Տեղական հոսքը դատա՛րկ է։ Հրապարակային մի բան գրիր շարժիչը խոդ տալու համար։",
"empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.", "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.domain_blocks": "There are no hidden domains yet.",
@ -165,8 +193,19 @@
"empty_column.mutes": "You haven't muted any users yet.", "empty_column.mutes": "You haven't muted any users yet.",
"empty_column.notifications": "Ոչ մի ծանուցում դեռ չունես։ Բզիր մյուսներին՝ խոսակցությունը սկսելու համար։", "empty_column.notifications": "Ոչ մի ծանուցում դեռ չունես։ Բզիր մյուսներին՝ խոսակցությունը սկսելու համար։",
"empty_column.public": "Այստեղ բան չկա՛։ Հրապարակային մի բան գրիր կամ հետեւիր այլ հանգույցներից էակների՝ այն լցնելու համար։", "empty_column.public": "Այստեղ բան չկա՛։ Հրապարակային մի բան գրիր կամ հետեւիր այլ հանգույցներից էակների՝ այն լցնելու համար։",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Վավերացնել", "follow_request.authorize": "Վավերացնել",
"follow_request.reject": "Մերժել", "follow_request.reject": "Մերժել",
"getting_started.heading": "Ինչպես սկսել", "getting_started.heading": "Ինչպես սկսել",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "and {additional}", "hashtag.column_header.tag_mode.all": "and {additional}",
"hashtag.column_header.tag_mode.any": "or {additional}", "hashtag.column_header.tag_mode.any": "or {additional}",
"hashtag.column_header.tag_mode.none": "without {additional}", "hashtag.column_header.tag_mode.none": "without {additional}",
"home.column_settings.basic": "Հիմնական", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "Ցուցադրել տարածածները", "home.column_settings.show_reblogs": "Ցուցադրել տարածածները",
"home.column_settings.show_replies": "Ցուցադրել պատասխանները", "home.column_settings.show_replies": "Ցուցադրել պատասխանները",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Քո ցանկերը", "lists.subheading": "Քո ցանկերը",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Բեռնվում է…", "loading_indicator.label": "Բեռնվում է…",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Ցուցադրել/թաքցնել", "media_gallery.toggle_visible": "Ցուցադրել/թաքցնել",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Չգտնվեց", "missing_indicator.label": "Չգտնվեց",
"missing_indicator.sublabel": "This resource could not be found", "missing_indicator.sublabel": "This resource could not be found",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Թաքցնե՞լ ցանուցումներն այս օգտատիրոջից։", "mute_modal.hide_notifications": "Թաքցնե՞լ ցանուցումներն այս օգտատիրոջից։",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Արգելափակված օգտատերեր", "navigation_bar.blocks": "Արգելափակված օգտատերեր",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Տեղական հոսք", "navigation_bar.community_timeline": "Տեղական հոսք",
"navigation_bar.compose": "Compose new post", "navigation_bar.compose": "Compose new post",
"navigation_bar.direct": "Direct messages", "navigation_bar.direct": "Direct messages",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Տարածածներից՝", "notifications.column_settings.reblog": "Տարածածներից՝",
"notifications.column_settings.show": "Ցուցադրել սյունում", "notifications.column_settings.show": "Ցուցադրել սյունում",
"notifications.column_settings.sound": "Ձայն հանել", "notifications.column_settings.sound": "Ձայն հանել",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "All", "notifications.filter.all": "All",
"notifications.filter.boosts": "Reposts", "notifications.filter.boosts": "Reposts",
"notifications.filter.favourites": "Favorites", "notifications.filter.favourites": "Favorites",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}օր", "relative_time.days": "{number}օր",
@ -379,8 +440,12 @@
"search_results.statuses": "Posts", "search_results.statuses": "Posts",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {արդյունք} other {արդյունք}}", "search_results.total": "{count, number} {count, plural, one {արդյունք} other {արդյունք}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Open moderation interface for @{name}", "status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface", "status.admin_status": "Open this post in the moderation interface",
"status.block": "Արգելափակել @{name}֊ին", "status.block": "Արգելափակել @{name}֊ին",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Un-repost", "status.cancel_reblog_private": "Un-repost",
"status.cannot_reblog": "Այս թութը չի կարող տարածվել", "status.cannot_reblog": "Այս թութը չի կարող տարածվել",
"status.copy": "Copy link to post", "status.copy": "Copy link to post",
@ -439,6 +510,7 @@
"status.show_more": "Ավելին", "status.show_more": "Ավելին",
"status.show_more_all": "Show more for all", "status.show_more_all": "Show more for all",
"status.show_thread": "Show thread", "status.show_thread": "Show thread",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Ապալռեցնել խոսակցությունը", "status.unmute_conversation": "Ապալռեցնել խոսակցությունը",
"status.unpin": "Հանել անձնական էջից", "status.unpin": "Հանել անձնական էջից",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Laporkan @{name}", "account.report": "Laporkan @{name}",
"account.requested": "Menunggu persetujuan. Klik untuk membatalkan permintaan", "account.requested": "Menunggu persetujuan. Klik untuk membatalkan permintaan",
"account.requested_small": "Awaiting approval",
"account.share": "Bagikan profil @{name}", "account.share": "Bagikan profil @{name}",
"account.show_reblogs": "Tampilkan repost dari @{name}", "account.show_reblogs": "Tampilkan repost dari @{name}",
"account.unblock": "Hapus blokir @{name}", "account.unblock": "Hapus blokir @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Kesalahan terjadi saat memuat komponen ini.", "bundle_modal_error.message": "Kesalahan terjadi saat memuat komponen ini.",
"bundle_modal_error.retry": "Coba lagi", "bundle_modal_error.retry": "Coba lagi",
"column.blocks": "Pengguna diblokir", "column.blocks": "Pengguna diblokir",
"column.bookmarks": "Bookmarks",
"column.community": "Linimasa Lokal", "column.community": "Linimasa Lokal",
"column.direct": "Pesan langsung", "column.direct": "Pesan langsung",
"column.domain_blocks": "Topik tersembunyi", "column.domain_blocks": "Topik tersembunyi",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Permintaan mengikuti", "column.follow_requests": "Permintaan mengikuti",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Beranda", "column.home": "Beranda",
"column.lists": "List", "column.lists": "List",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Pengguna yang dibisukan", "column.mutes": "Pengguna yang dibisukan",
"column.notifications": "Notifikasi", "column.notifications": "Notifikasi",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "Toot ini tidak akan ada dalam daftar tagar manapun karena telah di set sebagai tidak terdaftar. Hanya postingan publik yang bisa dicari dengan tagar.", "compose_form.hashtag_warning": "Toot ini tidak akan ada dalam daftar tagar manapun karena telah di set sebagai tidak terdaftar. Hanya postingan publik yang bisa dicari dengan tagar.",
"compose_form.lock_disclaimer": "Akun anda tidak {locked}. Semua orang dapat mengikuti anda untuk melihat postingan khusus untuk pengikut anda.", "compose_form.lock_disclaimer": "Akun anda tidak {locked}. Semua orang dapat mengikuti anda untuk melihat postingan khusus untuk pengikut anda.",
"compose_form.lock_disclaimer.lock": "terkunci", "compose_form.lock_disclaimer.lock": "terkunci",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "Apa yang ada di pikiran anda?", "compose_form.placeholder": "Apa yang ada di pikiran anda?",
"compose_form.poll.add_option": "Tambahkan pilihan", "compose_form.poll.add_option": "Tambahkan pilihan",
"compose_form.poll.duration": "Durasi jajak pendapat", "compose_form.poll.duration": "Durasi jajak pendapat",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "Tidak ada toot di sini!", "empty_column.account_timeline": "Tidak ada toot di sini!",
"empty_column.account_unavailable": "Profil tidak tersedia", "empty_column.account_unavailable": "Profil tidak tersedia",
"empty_column.blocks": "Anda belum memblokir siapapun.", "empty_column.blocks": "Anda belum memblokir siapapun.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "Linimasa lokal masih kosong. Tulis sesuatu secara publik dan buat roda berputar!", "empty_column.community": "Linimasa lokal masih kosong. Tulis sesuatu secara publik dan buat roda berputar!",
"empty_column.direct": "Anda belum memiliki pesan langsung. Ketika Anda mengirim atau menerimanya, maka akan muncul di sini.", "empty_column.direct": "Anda belum memiliki pesan langsung. Ketika Anda mengirim atau menerimanya, maka akan muncul di sini.",
"empty_column.domain_blocks": "Tidak ada topik tersembunyi.", "empty_column.domain_blocks": "Tidak ada topik tersembunyi.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Anda belum membisukan siapapun.", "empty_column.mutes": "Anda belum membisukan siapapun.",
"empty_column.notifications": "Anda tidak memiliki notifikasi apapun. Berinteraksi dengan orang lain untuk memulai percakapan.", "empty_column.notifications": "Anda tidak memiliki notifikasi apapun. Berinteraksi dengan orang lain untuk memulai percakapan.",
"empty_column.public": "Tidak ada apapun disini! Tulis sesuatu, atau ikuti pengguna lain dari server lain untuk mengisi ini", "empty_column.public": "Tidak ada apapun disini! Tulis sesuatu, atau ikuti pengguna lain dari server lain untuk mengisi ini",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Izinkan", "follow_request.authorize": "Izinkan",
"follow_request.reject": "Tolak", "follow_request.reject": "Tolak",
"getting_started.heading": "Mulai", "getting_started.heading": "Mulai",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "dan {additional}", "hashtag.column_header.tag_mode.all": "dan {additional}",
"hashtag.column_header.tag_mode.any": "atau {additional}", "hashtag.column_header.tag_mode.any": "atau {additional}",
"hashtag.column_header.tag_mode.none": "tanpa {additional}", "hashtag.column_header.tag_mode.none": "tanpa {additional}",
"home.column_settings.basic": "Dasar", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "Tampilkan repost", "home.column_settings.show_reblogs": "Tampilkan repost",
"home.column_settings.show_replies": "Tampilkan balasan", "home.column_settings.show_replies": "Tampilkan balasan",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Daftar Anda", "lists.subheading": "Daftar Anda",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Tunggu sebentar...", "loading_indicator.label": "Tunggu sebentar...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Tampil/Sembunyikan", "media_gallery.toggle_visible": "Tampil/Sembunyikan",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Tidak ditemukan", "missing_indicator.label": "Tidak ditemukan",
"missing_indicator.sublabel": "Sumber daya tak bisa ditemukan", "missing_indicator.sublabel": "Sumber daya tak bisa ditemukan",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Sembunyikan notifikasi dari pengguna ini?", "mute_modal.hide_notifications": "Sembunyikan notifikasi dari pengguna ini?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Pengguna diblokir", "navigation_bar.blocks": "Pengguna diblokir",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Linimasa lokal", "navigation_bar.community_timeline": "Linimasa lokal",
"navigation_bar.compose": "Tulis toot baru", "navigation_bar.compose": "Tulis toot baru",
"navigation_bar.direct": "Pesan langsung", "navigation_bar.direct": "Pesan langsung",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Repost:", "notifications.column_settings.reblog": "Repost:",
"notifications.column_settings.show": "Tampilkan dalam kolom", "notifications.column_settings.show": "Tampilkan dalam kolom",
"notifications.column_settings.sound": "Mainkan suara", "notifications.column_settings.sound": "Mainkan suara",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "Semua", "notifications.filter.all": "Semua",
"notifications.filter.boosts": "Reposts", "notifications.filter.boosts": "Reposts",
"notifications.filter.favourites": "Favorit", "notifications.filter.favourites": "Favorit",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
@ -379,8 +440,12 @@
"search_results.statuses": "Posts", "search_results.statuses": "Posts",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {hasil} other {hasil}}", "search_results.total": "{count, number} {count, plural, one {hasil} other {hasil}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Open moderation interface for @{name}", "status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface", "status.admin_status": "Open this post in the moderation interface",
"status.block": "Block @{name}", "status.block": "Block @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Un-repost", "status.cancel_reblog_private": "Un-repost",
"status.cannot_reblog": "This post cannot be reposted", "status.cannot_reblog": "This post cannot be reposted",
"status.copy": "Copy link to post", "status.copy": "Copy link to post",
@ -439,6 +510,7 @@
"status.show_more": "Tampilkan semua", "status.show_more": "Tampilkan semua",
"status.show_more_all": "Show more for all", "status.show_more_all": "Show more for all",
"status.show_thread": "Show thread", "status.show_thread": "Show thread",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Unmute conversation", "status.unmute_conversation": "Unmute conversation",
"status.unpin": "Unpin from profile", "status.unpin": "Unpin from profile",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Denuncar @{name}", "account.report": "Denuncar @{name}",
"account.requested": "Vartante aprobo", "account.requested": "Vartante aprobo",
"account.requested_small": "Awaiting approval",
"account.share": "Share @{name}'s profile", "account.share": "Share @{name}'s profile",
"account.show_reblogs": "Show reposts from @{name}", "account.show_reblogs": "Show reposts from @{name}",
"account.unblock": "Desblokusar @{name}", "account.unblock": "Desblokusar @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Something went wrong while loading this component.", "bundle_modal_error.message": "Something went wrong while loading this component.",
"bundle_modal_error.retry": "Try again", "bundle_modal_error.retry": "Try again",
"column.blocks": "Blokusita uzeri", "column.blocks": "Blokusita uzeri",
"column.bookmarks": "Bookmarks",
"column.community": "Lokala tempolineo", "column.community": "Lokala tempolineo",
"column.direct": "Direct messages", "column.direct": "Direct messages",
"column.domain_blocks": "Hidden domains", "column.domain_blocks": "Hidden domains",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Demandi di sequado", "column.follow_requests": "Demandi di sequado",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Hemo", "column.home": "Hemo",
"column.lists": "Lists", "column.lists": "Lists",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Celita uzeri", "column.mutes": "Celita uzeri",
"column.notifications": "Savigi", "column.notifications": "Savigi",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "This post won't be listed under any hashtag as it is unlisted. Only public posts can be searched by hashtag.", "compose_form.hashtag_warning": "This post won't be listed under any hashtag as it is unlisted. Only public posts 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": "Your account is not {locked}. Anyone can follow you to view your follower-only posts.",
"compose_form.lock_disclaimer.lock": "locked", "compose_form.lock_disclaimer.lock": "locked",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "Quo esas en tua spirito?", "compose_form.placeholder": "Quo esas en tua spirito?",
"compose_form.poll.add_option": "Add a choice", "compose_form.poll.add_option": "Add a choice",
"compose_form.poll.duration": "Poll duration", "compose_form.poll.duration": "Poll duration",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "No posts here!", "empty_column.account_timeline": "No posts here!",
"empty_column.account_unavailable": "Profile unavailable", "empty_column.account_unavailable": "Profile unavailable",
"empty_column.blocks": "You haven't blocked any users yet.", "empty_column.blocks": "You haven't blocked any users yet.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "La lokala tempolineo esas vakua. Skribez ulo publike por iniciar la agiveso!", "empty_column.community": "La lokala tempolineo esas vakua. Skribez ulo publike por iniciar la agiveso!",
"empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.", "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.domain_blocks": "There are no hidden domains yet.",
@ -165,8 +193,19 @@
"empty_column.mutes": "You haven't muted any users yet.", "empty_column.mutes": "You haven't muted any users yet.",
"empty_column.notifications": "Tu havas ankore nula savigo. Komunikez kun altri por debutar la konverso.", "empty_column.notifications": "Tu havas ankore nula savigo. Komunikez kun altri por debutar la konverso.",
"empty_column.public": "Esas nulo hike! Skribez ulo publike, o manuale sequez uzeri de altra instaluri por plenigar ol.", "empty_column.public": "Esas nulo hike! Skribez ulo publike, o manuale sequez uzeri de altra instaluri por plenigar ol.",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Yurizar", "follow_request.authorize": "Yurizar",
"follow_request.reject": "Refuzar", "follow_request.reject": "Refuzar",
"getting_started.heading": "Debuto", "getting_started.heading": "Debuto",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "and {additional}", "hashtag.column_header.tag_mode.all": "and {additional}",
"hashtag.column_header.tag_mode.any": "or {additional}", "hashtag.column_header.tag_mode.any": "or {additional}",
"hashtag.column_header.tag_mode.none": "without {additional}", "hashtag.column_header.tag_mode.none": "without {additional}",
"home.column_settings.basic": "Simpla", "home.column_settings.show_direct": "Show direct messages",
"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",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Your lists", "lists.subheading": "Your lists",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Kargante...", "loading_indicator.label": "Kargante...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Chanjar videbleso", "media_gallery.toggle_visible": "Chanjar videbleso",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Ne trovita", "missing_indicator.label": "Ne trovita",
"missing_indicator.sublabel": "This resource could not be found", "missing_indicator.sublabel": "This resource could not be found",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Hide notifications from this user?", "mute_modal.hide_notifications": "Hide notifications from this user?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Blokusita uzeri", "navigation_bar.blocks": "Blokusita uzeri",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Lokala tempolineo", "navigation_bar.community_timeline": "Lokala tempolineo",
"navigation_bar.compose": "Compose new post", "navigation_bar.compose": "Compose new post",
"navigation_bar.direct": "Direct messages", "navigation_bar.direct": "Direct messages",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Repeti:", "notifications.column_settings.reblog": "Repeti:",
"notifications.column_settings.show": "Montrar en kolumno", "notifications.column_settings.show": "Montrar en kolumno",
"notifications.column_settings.sound": "Plear sono", "notifications.column_settings.sound": "Plear sono",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "All", "notifications.filter.all": "All",
"notifications.filter.boosts": "Reposts", "notifications.filter.boosts": "Reposts",
"notifications.filter.favourites": "Favorites", "notifications.filter.favourites": "Favorites",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
@ -379,8 +440,12 @@
"search_results.statuses": "Posts", "search_results.statuses": "Posts",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {rezulto} other {rezulti}}", "search_results.total": "{count, number} {count, plural, one {rezulto} other {rezulti}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Open moderation interface for @{name}", "status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface", "status.admin_status": "Open this post in the moderation interface",
"status.block": "Block @{name}", "status.block": "Block @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Un-repost", "status.cancel_reblog_private": "Un-repost",
"status.cannot_reblog": "This post cannot be reposted", "status.cannot_reblog": "This post cannot be reposted",
"status.copy": "Copy link to post", "status.copy": "Copy link to post",
@ -439,6 +510,7 @@
"status.show_more": "Montrar plue", "status.show_more": "Montrar plue",
"status.show_more_all": "Show more for all", "status.show_more_all": "Show more for all",
"status.show_thread": "Show thread", "status.show_thread": "Show thread",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Unmute conversation", "status.unmute_conversation": "Unmute conversation",
"status.unpin": "Unpin from profile", "status.unpin": "Unpin from profile",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Segnala @{name}", "account.report": "Segnala @{name}",
"account.requested": "In attesa di approvazione", "account.requested": "In attesa di approvazione",
"account.requested_small": "Awaiting approval",
"account.share": "Condividi il profilo di @{name}", "account.share": "Condividi il profilo di @{name}",
"account.show_reblogs": "Mostra condivisioni da @{name}", "account.show_reblogs": "Mostra condivisioni da @{name}",
"account.unblock": "Sblocca @{name}", "account.unblock": "Sblocca @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "C'è stato un errore mentre questo componente veniva caricato.", "bundle_modal_error.message": "C'è stato un errore mentre questo componente veniva caricato.",
"bundle_modal_error.retry": "Riprova", "bundle_modal_error.retry": "Riprova",
"column.blocks": "Utenti bloccati", "column.blocks": "Utenti bloccati",
"column.bookmarks": "Bookmarks",
"column.community": "Timeline locale", "column.community": "Timeline locale",
"column.direct": "Messaggi diretti", "column.direct": "Messaggi diretti",
"column.domain_blocks": "Domini nascosti", "column.domain_blocks": "Domini nascosti",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Richieste di amicizia", "column.follow_requests": "Richieste di amicizia",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Home", "column.home": "Home",
"column.lists": "Liste", "column.lists": "Liste",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Utenti silenziati", "column.mutes": "Utenti silenziati",
"column.notifications": "Notifiche", "column.notifications": "Notifiche",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "Questo toot non è listato, quindi non sarà trovato nelle ricerche per hashtag. Solo i toot pubblici possono essere cercati per hashtag.", "compose_form.hashtag_warning": "Questo toot non è listato, quindi non sarà trovato nelle ricerche per hashtag. Solo i toot pubblici possono essere cercati per hashtag.",
"compose_form.lock_disclaimer": "Il tuo account non è {locked}. Chiunque può decidere di seguirti per vedere i tuoi post per soli seguaci.", "compose_form.lock_disclaimer": "Il tuo account non è {locked}. Chiunque può decidere di seguirti per vedere i tuoi post per soli seguaci.",
"compose_form.lock_disclaimer.lock": "bloccato", "compose_form.lock_disclaimer.lock": "bloccato",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "A cosa stai pensando?", "compose_form.placeholder": "A cosa stai pensando?",
"compose_form.poll.add_option": "Aggiungi una scelta", "compose_form.poll.add_option": "Aggiungi una scelta",
"compose_form.poll.duration": "Durata del sondaggio", "compose_form.poll.duration": "Durata del sondaggio",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "Non ci sono toot qui!", "empty_column.account_timeline": "Non ci sono toot qui!",
"empty_column.account_unavailable": "Profilo non disponibile", "empty_column.account_unavailable": "Profilo non disponibile",
"empty_column.blocks": "Non hai ancora bloccato nessun utente.", "empty_column.blocks": "Non hai ancora bloccato nessun utente.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "La timeline locale è vuota. Condividi qualcosa pubblicamente per dare inizio alla festa!", "empty_column.community": "La timeline locale è vuota. Condividi qualcosa pubblicamente per dare inizio alla festa!",
"empty_column.direct": "Non hai ancora nessun messaggio privato. Quando ne manderai o riceverai qualcuno, apparirà qui.", "empty_column.direct": "Non hai ancora nessun messaggio privato. Quando ne manderai o riceverai qualcuno, apparirà qui.",
"empty_column.domain_blocks": "Non vi sono domini nascosti.", "empty_column.domain_blocks": "Non vi sono domini nascosti.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Non hai ancora silenziato nessun utente.", "empty_column.mutes": "Non hai ancora silenziato nessun utente.",
"empty_column.notifications": "Non hai ancora nessuna notifica. Interagisci con altri per iniziare conversazioni.", "empty_column.notifications": "Non hai ancora nessuna notifica. Interagisci con altri per iniziare conversazioni.",
"empty_column.public": "Qui non c'è nulla! Scrivi qualcosa pubblicamente, o aggiungi utenti da altri server per riempire questo spazio", "empty_column.public": "Qui non c'è nulla! Scrivi qualcosa pubblicamente, o aggiungi utenti da altri server per riempire questo spazio",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Autorizza", "follow_request.authorize": "Autorizza",
"follow_request.reject": "Rifiuta", "follow_request.reject": "Rifiuta",
"getting_started.heading": "Come iniziare", "getting_started.heading": "Come iniziare",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "e {additional}", "hashtag.column_header.tag_mode.all": "e {additional}",
"hashtag.column_header.tag_mode.any": "o {additional}", "hashtag.column_header.tag_mode.any": "o {additional}",
"hashtag.column_header.tag_mode.none": "senza {additional}", "hashtag.column_header.tag_mode.none": "senza {additional}",
"home.column_settings.basic": "Semplice", "home.column_settings.show_direct": "Show direct messages",
"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",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Le tue liste", "lists.subheading": "Le tue liste",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Caricamento...", "loading_indicator.label": "Caricamento...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Imposta visibilità", "media_gallery.toggle_visible": "Imposta visibilità",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Non trovato", "missing_indicator.label": "Non trovato",
"missing_indicator.sublabel": "Risorsa non trovata", "missing_indicator.sublabel": "Risorsa non trovata",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Nascondere le notifiche da quest'utente?", "mute_modal.hide_notifications": "Nascondere le notifiche da quest'utente?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Utenti bloccati", "navigation_bar.blocks": "Utenti bloccati",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Timeline locale", "navigation_bar.community_timeline": "Timeline locale",
"navigation_bar.compose": "Componi nuovo toot", "navigation_bar.compose": "Componi nuovo toot",
"navigation_bar.direct": "Messaggi diretti", "navigation_bar.direct": "Messaggi diretti",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Post condivisi:", "notifications.column_settings.reblog": "Post condivisi:",
"notifications.column_settings.show": "Mostra in colonna", "notifications.column_settings.show": "Mostra in colonna",
"notifications.column_settings.sound": "Riproduci suono", "notifications.column_settings.sound": "Riproduci suono",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "Tutti", "notifications.filter.all": "Tutti",
"notifications.filter.boosts": "Condivisioni", "notifications.filter.boosts": "Condivisioni",
"notifications.filter.favourites": "Apprezzati", "notifications.filter.favourites": "Apprezzati",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}g", "relative_time.days": "{number}g",
@ -379,8 +440,12 @@
"search_results.statuses": "Toot", "search_results.statuses": "Toot",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count} {count, plural, one {risultato} other {risultati}}", "search_results.total": "{count} {count, plural, one {risultato} other {risultati}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Apri interfaccia di moderazione per @{name}", "status.admin_account": "Apri interfaccia di moderazione per @{name}",
"status.admin_status": "Apri questo status nell'interfaccia di moderazione", "status.admin_status": "Apri questo status nell'interfaccia di moderazione",
"status.block": "Blocca @{name}", "status.block": "Blocca @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Annulla condivisione", "status.cancel_reblog_private": "Annulla condivisione",
"status.cannot_reblog": "Questo post non può essere condiviso", "status.cannot_reblog": "Questo post non può essere condiviso",
"status.copy": "Copia link allo status", "status.copy": "Copia link allo status",
@ -439,6 +510,7 @@
"status.show_more": "Mostra di più", "status.show_more": "Mostra di più",
"status.show_more_all": "Mostra di più per tutti", "status.show_more_all": "Mostra di più per tutti",
"status.show_thread": "Mostra thread", "status.show_thread": "Mostra thread",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Annulla silenzia conversazione", "status.unmute_conversation": "Annulla silenzia conversazione",
"status.unpin": "Non fissare in cima al profilo", "status.unpin": "Non fissare in cima al profilo",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "@{name}さんを通報", "account.report": "@{name}さんを通報",
"account.requested": "フォロー承認待ちです。クリックしてキャンセル", "account.requested": "フォロー承認待ちです。クリックしてキャンセル",
"account.requested_small": "Awaiting approval",
"account.share": "@{name}さんのプロフィールを共有する", "account.share": "@{name}さんのプロフィールを共有する",
"account.show_reblogs": "@{name}さんからのブーストを表示", "account.show_reblogs": "@{name}さんからのブーストを表示",
"account.unblock": "@{name}さんのブロックを解除", "account.unblock": "@{name}さんのブロックを解除",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "コンポーネントの読み込み中に問題が発生しました。", "bundle_modal_error.message": "コンポーネントの読み込み中に問題が発生しました。",
"bundle_modal_error.retry": "再試行", "bundle_modal_error.retry": "再試行",
"column.blocks": "ブロックしたユーザー", "column.blocks": "ブロックしたユーザー",
"column.bookmarks": "Bookmarks",
"column.community": "ローカルタイムライン", "column.community": "ローカルタイムライン",
"column.direct": "ダイレクトメッセージ", "column.direct": "ダイレクトメッセージ",
"column.domain_blocks": "非表示にしたドメイン", "column.domain_blocks": "非表示にしたドメイン",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "フォローリクエスト", "column.follow_requests": "フォローリクエスト",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "ホーム", "column.home": "ホーム",
"column.lists": "リスト", "column.lists": "リスト",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "ミュートしたユーザー", "column.mutes": "ミュートしたユーザー",
"column.notifications": "通知", "column.notifications": "通知",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"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.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "今なにしてる?", "compose_form.placeholder": "今なにしてる?",
"compose_form.poll.add_option": "追加", "compose_form.poll.add_option": "追加",
"compose_form.poll.duration": "アンケート期間", "compose_form.poll.duration": "アンケート期間",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "トゥートがありません!", "empty_column.account_timeline": "トゥートがありません!",
"empty_column.account_unavailable": "プロフィールは利用できません", "empty_column.account_unavailable": "プロフィールは利用できません",
"empty_column.blocks": "まだ誰もブロックしていません。", "empty_column.blocks": "まだ誰もブロックしていません。",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "ローカルタイムラインはまだ使われていません。何か書いてみましょう!", "empty_column.community": "ローカルタイムラインはまだ使われていません。何か書いてみましょう!",
"empty_column.direct": "ダイレクトメッセージはまだありません。ダイレクトメッセージをやりとりすると、ここに表示されます。", "empty_column.direct": "ダイレクトメッセージはまだありません。ダイレクトメッセージをやりとりすると、ここに表示されます。",
"empty_column.domain_blocks": "非表示にしているドメインはありません。", "empty_column.domain_blocks": "非表示にしているドメインはありません。",
@ -165,8 +193,19 @@
"empty_column.mutes": "まだ誰もミュートしていません。", "empty_column.mutes": "まだ誰もミュートしていません。",
"empty_column.notifications": "まだ通知がありません。他の人とふれ合って会話を始めましょう。", "empty_column.notifications": "まだ通知がありません。他の人とふれ合って会話を始めましょう。",
"empty_column.public": "ここにはまだ何もありません! 公開で何かを投稿したり、他のサーバーのユーザーをフォローしたりしていっぱいにしましょう", "empty_column.public": "ここにはまだ何もありません! 公開で何かを投稿したり、他のサーバーのユーザーをフォローしたりしていっぱいにしましょう",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "許可", "follow_request.authorize": "許可",
"follow_request.reject": "拒否", "follow_request.reject": "拒否",
"getting_started.heading": "スタート", "getting_started.heading": "スタート",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "と {additional}", "hashtag.column_header.tag_mode.all": "と {additional}",
"hashtag.column_header.tag_mode.any": "か {additional}", "hashtag.column_header.tag_mode.any": "か {additional}",
"hashtag.column_header.tag_mode.none": "({additional} を除く)", "hashtag.column_header.tag_mode.none": "({additional} を除く)",
"home.column_settings.basic": "基本設定", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "ブースト表示", "home.column_settings.show_reblogs": "ブースト表示",
"home.column_settings.show_replies": "返信表示", "home.column_settings.show_replies": "返信表示",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "あなたのリスト", "lists.subheading": "あなたのリスト",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "読み込み中...", "loading_indicator.label": "読み込み中...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "表示切り替え", "media_gallery.toggle_visible": "表示切り替え",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "見つかりません", "missing_indicator.label": "見つかりません",
"missing_indicator.sublabel": "見つかりませんでした", "missing_indicator.sublabel": "見つかりませんでした",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "このユーザーからの通知を隠しますか?", "mute_modal.hide_notifications": "このユーザーからの通知を隠しますか?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "ブロックしたユーザー", "navigation_bar.blocks": "ブロックしたユーザー",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "ローカルタイムライン", "navigation_bar.community_timeline": "ローカルタイムライン",
"navigation_bar.compose": "トゥートの新規作成", "navigation_bar.compose": "トゥートの新規作成",
"navigation_bar.direct": "ダイレクトメッセージ", "navigation_bar.direct": "ダイレクトメッセージ",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "ブースト:", "notifications.column_settings.reblog": "ブースト:",
"notifications.column_settings.show": "カラムに表示", "notifications.column_settings.show": "カラムに表示",
"notifications.column_settings.sound": "通知音を再生", "notifications.column_settings.sound": "通知音を再生",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "すべて", "notifications.filter.all": "すべて",
"notifications.filter.boosts": "ブースト", "notifications.filter.boosts": "ブースト",
"notifications.filter.favourites": "お気に入り", "notifications.filter.favourites": "お気に入り",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}日前", "relative_time.days": "{number}日前",
@ -379,8 +440,12 @@
"search_results.statuses": "トゥート", "search_results.statuses": "トゥート",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number}件の結果", "search_results.total": "{count, number}件の結果",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "@{name} のモデレーション画面を開く", "status.admin_account": "@{name} のモデレーション画面を開く",
"status.admin_status": "このトゥートをモデレーション画面で開く", "status.admin_status": "このトゥートをモデレーション画面で開く",
"status.block": "@{name}さんをブロック", "status.block": "@{name}さんをブロック",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "ブースト解除", "status.cancel_reblog_private": "ブースト解除",
"status.cannot_reblog": "この投稿はブーストできません", "status.cannot_reblog": "この投稿はブーストできません",
"status.copy": "トゥートへのリンクをコピー", "status.copy": "トゥートへのリンクをコピー",
@ -439,6 +510,7 @@
"status.show_more": "もっと見る", "status.show_more": "もっと見る",
"status.show_more_all": "全て見る", "status.show_more_all": "全て見る",
"status.show_thread": "スレッドを表示", "status.show_thread": "スレッドを表示",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "会話のミュートを解除", "status.unmute_conversation": "会話のミュートを解除",
"status.unpin": "プロフィールへの固定を解除", "status.unpin": "プロフィールへの固定を解除",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "დაარეპორტე @{name}", "account.report": "დაარეპორტე @{name}",
"account.requested": "დამტკიცების მოლოდინში. დააწკაპუნეთ რომ უარყოთ დადევნების მოთხონვა", "account.requested": "დამტკიცების მოლოდინში. დააწკაპუნეთ რომ უარყოთ დადევნების მოთხონვა",
"account.requested_small": "Awaiting approval",
"account.share": "გააზიარე @{name}-ის პროფილი", "account.share": "გააზიარე @{name}-ის პროფილი",
"account.show_reblogs": "აჩვენე ბუსტები @{name}-სგან", "account.show_reblogs": "აჩვენე ბუსტები @{name}-სგან",
"account.unblock": "განბლოკე @{name}", "account.unblock": "განბლოკე @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "ამ კომპონენტის ჩატვირთვისას რაღაც აირია.", "bundle_modal_error.message": "ამ კომპონენტის ჩატვირთვისას რაღაც აირია.",
"bundle_modal_error.retry": "სცადეთ კიდევ ერთხელ", "bundle_modal_error.retry": "სცადეთ კიდევ ერთხელ",
"column.blocks": "დაბლოკილი მომხმარებლები", "column.blocks": "დაბლოკილი მომხმარებლები",
"column.bookmarks": "Bookmarks",
"column.community": "ლოკალური თაიმლაინი", "column.community": "ლოკალური თაიმლაინი",
"column.direct": "პირდაპირი წერილები", "column.direct": "პირდაპირი წერილები",
"column.domain_blocks": "დამალული დომენები", "column.domain_blocks": "დამალული დომენები",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "დადევნების მოთხოვნები", "column.follow_requests": "დადევნების მოთხოვნები",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "სახლი", "column.home": "სახლი",
"column.lists": "სიები", "column.lists": "სიები",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "გაჩუმებული მომხმარებლები", "column.mutes": "გაჩუმებული მომხმარებლები",
"column.notifications": "შეტყობინებები", "column.notifications": "შეტყობინებები",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"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.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "რაზე ფიქრობ?", "compose_form.placeholder": "რაზე ფიქრობ?",
"compose_form.poll.add_option": "Add a choice", "compose_form.poll.add_option": "Add a choice",
"compose_form.poll.duration": "Poll duration", "compose_form.poll.duration": "Poll duration",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "No posts here!", "empty_column.account_timeline": "No posts here!",
"empty_column.account_unavailable": "Profile unavailable", "empty_column.account_unavailable": "Profile unavailable",
"empty_column.blocks": "You haven't blocked any users yet.", "empty_column.blocks": "You haven't blocked any users yet.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"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": "There are no hidden domains yet.",
@ -165,8 +193,19 @@
"empty_column.mutes": "You haven't muted any users yet.", "empty_column.mutes": "You haven't muted any users yet.",
"empty_column.notifications": "ჯერ შეტყობინებები არ გაქვთ. საუბრის დასაწყებად იურთიერთქმედეთ სხვებთან.", "empty_column.notifications": "ჯერ შეტყობინებები არ გაქვთ. საუბრის დასაწყებად იურთიერთქმედეთ სხვებთან.",
"empty_column.public": "აქ არაფერია! შესავსებად, დაწერეთ რაიმე ღიად ან ხელით გაჰყევით მომხმარებლებს სხვა ინსტანციებისგან", "empty_column.public": "აქ არაფერია! შესავსებად, დაწერეთ რაიმე ღიად ან ხელით გაჰყევით მომხმარებლებს სხვა ინსტანციებისგან",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "ავტორიზაცია", "follow_request.authorize": "ავტორიზაცია",
"follow_request.reject": "უარყოფა", "follow_request.reject": "უარყოფა",
"getting_started.heading": "დაწყება", "getting_started.heading": "დაწყება",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "and {additional}", "hashtag.column_header.tag_mode.all": "and {additional}",
"hashtag.column_header.tag_mode.any": "or {additional}", "hashtag.column_header.tag_mode.any": "or {additional}",
"hashtag.column_header.tag_mode.none": "without {additional}", "hashtag.column_header.tag_mode.none": "without {additional}",
"home.column_settings.basic": "ძირითადი", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "ბუსტების ჩვენება", "home.column_settings.show_reblogs": "ბუსტების ჩვენება",
"home.column_settings.show_replies": "პასუხების ჩვენება", "home.column_settings.show_replies": "პასუხების ჩვენება",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "თქვენი სიები", "lists.subheading": "თქვენი სიები",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "იტვირთება...", "loading_indicator.label": "იტვირთება...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "ხილვადობის ჩართვა", "media_gallery.toggle_visible": "ხილვადობის ჩართვა",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "არაა ნაპოვნი", "missing_indicator.label": "არაა ნაპოვნი",
"missing_indicator.sublabel": "ამ რესურსის პოვნა ვერ მოხერხდა", "missing_indicator.sublabel": "ამ რესურსის პოვნა ვერ მოხერხდა",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "დავმალოთ შეტყობინებები ამ მომხმარებლისგან?", "mute_modal.hide_notifications": "დავმალოთ შეტყობინებები ამ მომხმარებლისგან?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "დაბლოკილი მომხმარებლები", "navigation_bar.blocks": "დაბლოკილი მომხმარებლები",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "ლოკალური თაიმლაინი", "navigation_bar.community_timeline": "ლოკალური თაიმლაინი",
"navigation_bar.compose": "Compose new post", "navigation_bar.compose": "Compose new post",
"navigation_bar.direct": "პირდაპირი წერილები", "navigation_bar.direct": "პირდაპირი წერილები",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "ბუსტები:", "notifications.column_settings.reblog": "ბუსტები:",
"notifications.column_settings.show": "გამოჩნდეს სვეტში", "notifications.column_settings.show": "გამოჩნდეს სვეტში",
"notifications.column_settings.sound": "ხმის დაკვრა", "notifications.column_settings.sound": "ხმის დაკვრა",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "All", "notifications.filter.all": "All",
"notifications.filter.boosts": "Reposts", "notifications.filter.boosts": "Reposts",
"notifications.filter.favourites": "Favorites", "notifications.filter.favourites": "Favorites",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}დღ", "relative_time.days": "{number}დღ",
@ -379,8 +440,12 @@
"search_results.statuses": "ტუტები", "search_results.statuses": "ტუტები",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {result} other {results}}", "search_results.total": "{count, number} {count, plural, one {result} other {results}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Open moderation interface for @{name}", "status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface", "status.admin_status": "Open this post in the moderation interface",
"status.block": "დაბლოკე @{name}", "status.block": "დაბლოკე @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "ბუსტის მოშორება", "status.cancel_reblog_private": "ბუსტის მოშორება",
"status.cannot_reblog": "ეს პოსტი ვერ დაიბუსტება", "status.cannot_reblog": "ეს პოსტი ვერ დაიბუსტება",
"status.copy": "Copy link to post", "status.copy": "Copy link to post",
@ -439,6 +510,7 @@
"status.show_more": "აჩვენე მეტი", "status.show_more": "აჩვენე მეტი",
"status.show_more_all": "აჩვენე მეტი ყველაზე", "status.show_more_all": "აჩვენე მეტი ყველაზე",
"status.show_thread": "Show thread", "status.show_thread": "Show thread",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "საუბარზე გაჩუმების მოშორება", "status.unmute_conversation": "საუბარზე გაჩუმების მოშორება",
"status.unpin": "პროფილიდან პინის მოშორება", "status.unpin": "პროფილიდან პინის მოშორება",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Шағымдану @{name}", "account.report": "Шағымдану @{name}",
"account.requested": "Растауын күтіңіз. Жазылудан бас тарту үшін басыңыз", "account.requested": "Растауын күтіңіз. Жазылудан бас тарту үшін басыңыз",
"account.requested_small": "Awaiting approval",
"account.share": "@{name} профилін бөлісу\"", "account.share": "@{name} профилін бөлісу\"",
"account.show_reblogs": "@{name} бөліскендерін көрсету", "account.show_reblogs": "@{name} бөліскендерін көрсету",
"account.unblock": "Бұғаттан шығару @{name}", "account.unblock": "Бұғаттан шығару @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Бұл компонентті жүктеген кезде бір қате пайда болды.", "bundle_modal_error.message": "Бұл компонентті жүктеген кезде бір қате пайда болды.",
"bundle_modal_error.retry": "Қайтадан көріңіз", "bundle_modal_error.retry": "Қайтадан көріңіз",
"column.blocks": "Бұғатталғандар", "column.blocks": "Бұғатталғандар",
"column.bookmarks": "Bookmarks",
"column.community": "Жергілікті желі", "column.community": "Жергілікті желі",
"column.direct": "Жеке хаттар", "column.direct": "Жеке хаттар",
"column.domain_blocks": "Жасырылған домендер", "column.domain_blocks": "Жасырылған домендер",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Жазылу сұранымдары", "column.follow_requests": "Жазылу сұранымдары",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Басты бет", "column.home": "Басты бет",
"column.lists": "Тізімдер", "column.lists": "Тізімдер",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Үнсіз қолданушылар", "column.mutes": "Үнсіз қолданушылар",
"column.notifications": "Ескертпелер", "column.notifications": "Ескертпелер",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"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.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "Не бөліскіңіз келеді?", "compose_form.placeholder": "Не бөліскіңіз келеді?",
"compose_form.poll.add_option": "Жауап қос", "compose_form.poll.add_option": "Жауап қос",
"compose_form.poll.duration": "Сауалнама мерзімі", "compose_form.poll.duration": "Сауалнама мерзімі",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "Жазба жоқ ешқандай!", "empty_column.account_timeline": "Жазба жоқ ешқандай!",
"empty_column.account_unavailable": "Profile unavailable", "empty_column.account_unavailable": "Profile unavailable",
"empty_column.blocks": "Ешкімді бұғаттамағансыз.", "empty_column.blocks": "Ешкімді бұғаттамағансыз.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "Жергілікті желі бос. Сіз бастап жазыңыз!", "empty_column.community": "Жергілікті желі бос. Сіз бастап жазыңыз!",
"empty_column.direct": "Әзірше дым хат жоқ. Өзіңіз жазып көріңіз алдымен.", "empty_column.direct": "Әзірше дым хат жоқ. Өзіңіз жазып көріңіз алдымен.",
"empty_column.domain_blocks": "Бұғатталған домен жоқ.", "empty_column.domain_blocks": "Бұғатталған домен жоқ.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Әзірше ешқандай үнсізге қойылған қолданушы жоқ.", "empty_column.mutes": "Әзірше ешқандай үнсізге қойылған қолданушы жоқ.",
"empty_column.notifications": "Әзірше ешқандай ескертпе жоқ. Басқалармен араласуды бастаңыз және пікірталастарға қатысыңыз.", "empty_column.notifications": "Әзірше ешқандай ескертпе жоқ. Басқалармен араласуды бастаңыз және пікірталастарға қатысыңыз.",
"empty_column.public": "Ештеңе жоқ бұл жерде! Өзіңіз бастап жазып көріңіз немесе басқаларға жазылыңыз", "empty_column.public": "Ештеңе жоқ бұл жерде! Өзіңіз бастап жазып көріңіз немесе басқаларға жазылыңыз",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Авторизация", "follow_request.authorize": "Авторизация",
"follow_request.reject": "Қабылдамау", "follow_request.reject": "Қабылдамау",
"getting_started.heading": "Желіде", "getting_started.heading": "Желіде",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "және {additional}", "hashtag.column_header.tag_mode.all": "және {additional}",
"hashtag.column_header.tag_mode.any": "немесе {additional}", "hashtag.column_header.tag_mode.any": "немесе {additional}",
"hashtag.column_header.tag_mode.none": "{additional} болмай", "hashtag.column_header.tag_mode.none": "{additional} болмай",
"home.column_settings.basic": "Негізгі", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "Бөлісулерді көрсету", "home.column_settings.show_reblogs": "Бөлісулерді көрсету",
"home.column_settings.show_replies": "Жауаптарды көрсету", "home.column_settings.show_replies": "Жауаптарды көрсету",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Тізімдеріңіз", "lists.subheading": "Тізімдеріңіз",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Жүктеу...", "loading_indicator.label": "Жүктеу...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Көрінуді қосу", "media_gallery.toggle_visible": "Көрінуді қосу",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Табылмады", "missing_indicator.label": "Табылмады",
"missing_indicator.sublabel": "Бұл ресурс табылмады", "missing_indicator.sublabel": "Бұл ресурс табылмады",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Бұл қолданушы ескертпелерін жасырамыз ба?", "mute_modal.hide_notifications": "Бұл қолданушы ескертпелерін жасырамыз ба?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Бұғатталғандар", "navigation_bar.blocks": "Бұғатталғандар",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Жергілікті желі", "navigation_bar.community_timeline": "Жергілікті желі",
"navigation_bar.compose": "Жаңа жазба бастау", "navigation_bar.compose": "Жаңа жазба бастау",
"navigation_bar.direct": "Жеке хаттар", "navigation_bar.direct": "Жеке хаттар",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Бөлісулер:", "notifications.column_settings.reblog": "Бөлісулер:",
"notifications.column_settings.show": "Бағанда көрсет", "notifications.column_settings.show": "Бағанда көрсет",
"notifications.column_settings.sound": "Дыбысын қос", "notifications.column_settings.sound": "Дыбысын қос",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "Барлығы", "notifications.filter.all": "Барлығы",
"notifications.filter.boosts": "Бөлісулер", "notifications.filter.boosts": "Бөлісулер",
"notifications.filter.favourites": "Таңдаулылар", "notifications.filter.favourites": "Таңдаулылар",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}күн", "relative_time.days": "{number}күн",
@ -379,8 +440,12 @@
"search_results.statuses": "Жазбалар", "search_results.statuses": "Жазбалар",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {result} other {results}}", "search_results.total": "{count, number} {count, plural, one {result} other {results}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "@{name} үшін модерация интерфейсін аш", "status.admin_account": "@{name} үшін модерация интерфейсін аш",
"status.admin_status": "Бұл жазбаны модерация интерфейсінде аш", "status.admin_status": "Бұл жазбаны модерация интерфейсінде аш",
"status.block": "Бұғаттау @{name}", "status.block": "Бұғаттау @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Бөліспеу", "status.cancel_reblog_private": "Бөліспеу",
"status.cannot_reblog": "Бұл жазба бөлісілмейді", "status.cannot_reblog": "Бұл жазба бөлісілмейді",
"status.copy": "Жазба сілтемесін көшір", "status.copy": "Жазба сілтемесін көшір",
@ -439,6 +510,7 @@
"status.show_more": "Толығырақ", "status.show_more": "Толығырақ",
"status.show_more_all": "Бәрін толығымен", "status.show_more_all": "Бәрін толығымен",
"status.show_thread": "Желіні көрсет", "status.show_thread": "Желіні көрсет",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Пікірталасты үнсіз қылмау", "status.unmute_conversation": "Пікірталасты үнсіз қылмау",
"status.unpin": "Профильден алып тастау", "status.unpin": "Профильден алып тастау",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "@{name} 신고", "account.report": "@{name} 신고",
"account.requested": "승인 대기 중. 클릭해서 취소하기", "account.requested": "승인 대기 중. 클릭해서 취소하기",
"account.requested_small": "Awaiting approval",
"account.share": "@{name}의 프로파일 공유", "account.share": "@{name}의 프로파일 공유",
"account.show_reblogs": "@{name}의 부스트 보기", "account.show_reblogs": "@{name}의 부스트 보기",
"account.unblock": "차단 해제", "account.unblock": "차단 해제",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "컴포넌트를 불러오는 과정에서 문제가 발생했습니다.", "bundle_modal_error.message": "컴포넌트를 불러오는 과정에서 문제가 발생했습니다.",
"bundle_modal_error.retry": "다시 시도", "bundle_modal_error.retry": "다시 시도",
"column.blocks": "차단 중인 사용자", "column.blocks": "차단 중인 사용자",
"column.bookmarks": "Bookmarks",
"column.community": "로컬 타임라인", "column.community": "로컬 타임라인",
"column.direct": "다이렉트 메시지", "column.direct": "다이렉트 메시지",
"column.domain_blocks": "숨겨진 도메인", "column.domain_blocks": "숨겨진 도메인",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "팔로우 요청", "column.follow_requests": "팔로우 요청",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "홈", "column.home": "홈",
"column.lists": "리스트", "column.lists": "리스트",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "뮤트 중인 사용자", "column.mutes": "뮤트 중인 사용자",
"column.notifications": "알림", "column.notifications": "알림",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"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.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "지금 무엇을 하고 있나요?", "compose_form.placeholder": "지금 무엇을 하고 있나요?",
"compose_form.poll.add_option": "항목 추가", "compose_form.poll.add_option": "항목 추가",
"compose_form.poll.duration": "투표 기간", "compose_form.poll.duration": "투표 기간",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "여긴 툿이 없어요!", "empty_column.account_timeline": "여긴 툿이 없어요!",
"empty_column.account_unavailable": "프로필 사용 불가", "empty_column.account_unavailable": "프로필 사용 불가",
"empty_column.blocks": "아직 아무도 차단하지 않았습니다.", "empty_column.blocks": "아직 아무도 차단하지 않았습니다.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "로컬 타임라인에 아무 것도 없습니다. 아무거나 적어 보세요!", "empty_column.community": "로컬 타임라인에 아무 것도 없습니다. 아무거나 적어 보세요!",
"empty_column.direct": "아직 다이렉트 메시지가 없습니다. 다이렉트 메시지를 보내거나 받은 경우, 여기에 표시 됩니다.", "empty_column.direct": "아직 다이렉트 메시지가 없습니다. 다이렉트 메시지를 보내거나 받은 경우, 여기에 표시 됩니다.",
"empty_column.domain_blocks": "아직 숨겨진 도메인이 없습니다.", "empty_column.domain_blocks": "아직 숨겨진 도메인이 없습니다.",
@ -165,8 +193,19 @@
"empty_column.mutes": "아직 아무도 뮤트하지 않았습니다.", "empty_column.mutes": "아직 아무도 뮤트하지 않았습니다.",
"empty_column.notifications": "아직 알림이 없습니다. 다른 사람과 대화를 시작해 보세요.", "empty_column.notifications": "아직 알림이 없습니다. 다른 사람과 대화를 시작해 보세요.",
"empty_column.public": "여기엔 아직 아무 것도 없습니다! 공개적으로 무언가 포스팅하거나, 다른 서버의 유저를 팔로우 해서 채워보세요", "empty_column.public": "여기엔 아직 아무 것도 없습니다! 공개적으로 무언가 포스팅하거나, 다른 서버의 유저를 팔로우 해서 채워보세요",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "허가", "follow_request.authorize": "허가",
"follow_request.reject": "거부", "follow_request.reject": "거부",
"getting_started.heading": "시작", "getting_started.heading": "시작",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "그리고 {additional}", "hashtag.column_header.tag_mode.all": "그리고 {additional}",
"hashtag.column_header.tag_mode.any": "또는 {additional}", "hashtag.column_header.tag_mode.any": "또는 {additional}",
"hashtag.column_header.tag_mode.none": "({additional}를 제외)", "hashtag.column_header.tag_mode.none": "({additional}를 제외)",
"home.column_settings.basic": "기본 설정", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "부스트 표시", "home.column_settings.show_reblogs": "부스트 표시",
"home.column_settings.show_replies": "답글 표시", "home.column_settings.show_replies": "답글 표시",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "당신의 리스트", "lists.subheading": "당신의 리스트",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "불러오는 중...", "loading_indicator.label": "불러오는 중...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "표시 전환", "media_gallery.toggle_visible": "표시 전환",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "찾을 수 없습니다", "missing_indicator.label": "찾을 수 없습니다",
"missing_indicator.sublabel": "이 리소스를 찾을 수 없었습니다", "missing_indicator.sublabel": "이 리소스를 찾을 수 없었습니다",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "이 사용자로부터의 알림을 뮤트하시겠습니까?", "mute_modal.hide_notifications": "이 사용자로부터의 알림을 뮤트하시겠습니까?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "차단한 사용자", "navigation_bar.blocks": "차단한 사용자",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "로컬 타임라인", "navigation_bar.community_timeline": "로컬 타임라인",
"navigation_bar.compose": "새 툿 작성", "navigation_bar.compose": "새 툿 작성",
"navigation_bar.direct": "다이렉트 메시지", "navigation_bar.direct": "다이렉트 메시지",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "부스트:", "notifications.column_settings.reblog": "부스트:",
"notifications.column_settings.show": "컬럼에 표시", "notifications.column_settings.show": "컬럼에 표시",
"notifications.column_settings.sound": "효과음 재생", "notifications.column_settings.sound": "효과음 재생",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "모두", "notifications.filter.all": "모두",
"notifications.filter.boosts": "부스트", "notifications.filter.boosts": "부스트",
"notifications.filter.favourites": "즐겨찾기", "notifications.filter.favourites": "즐겨찾기",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}일 전", "relative_time.days": "{number}일 전",
@ -379,8 +440,12 @@
"search_results.statuses": "툿", "search_results.statuses": "툿",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number}건의 결과", "search_results.total": "{count, number}건의 결과",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "@{name}에 대한 모더레이션 인터페이스 열기", "status.admin_account": "@{name}에 대한 모더레이션 인터페이스 열기",
"status.admin_status": "모더레이션 인터페이스에서 이 게시물 열기", "status.admin_status": "모더레이션 인터페이스에서 이 게시물 열기",
"status.block": "@{name} 차단", "status.block": "@{name} 차단",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "부스트 취소", "status.cancel_reblog_private": "부스트 취소",
"status.cannot_reblog": "이 포스트는 부스트 할 수 없습니다", "status.cannot_reblog": "이 포스트는 부스트 할 수 없습니다",
"status.copy": "게시물 링크 복사", "status.copy": "게시물 링크 복사",
@ -439,6 +510,7 @@
"status.show_more": "더 보기", "status.show_more": "더 보기",
"status.show_more_all": "모두 펼치기", "status.show_more_all": "모두 펼치기",
"status.show_thread": "글타래 보기", "status.show_thread": "글타래 보기",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "이 대화의 뮤트 해제하기", "status.unmute_conversation": "이 대화의 뮤트 해제하기",
"status.unpin": "고정 해제", "status.unpin": "고정 해제",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Report @{name}", "account.report": "Report @{name}",
"account.requested": "Awaiting approval. Click to cancel follow request", "account.requested": "Awaiting approval. Click to cancel follow request",
"account.requested_small": "Awaiting approval",
"account.share": "Share @{name}'s profile", "account.share": "Share @{name}'s profile",
"account.show_reblogs": "Show reposts from @{name}", "account.show_reblogs": "Show reposts from @{name}",
"account.unblock": "Unblock @{name}", "account.unblock": "Unblock @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Something went wrong while loading this component.", "bundle_modal_error.message": "Something went wrong while loading this component.",
"bundle_modal_error.retry": "Try again", "bundle_modal_error.retry": "Try again",
"column.blocks": "Blocked users", "column.blocks": "Blocked users",
"column.bookmarks": "Bookmarks",
"column.community": "Local timeline", "column.community": "Local timeline",
"column.direct": "Direct messages", "column.direct": "Direct messages",
"column.domain_blocks": "Hidden domains", "column.domain_blocks": "Hidden domains",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Follow requests", "column.follow_requests": "Follow requests",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Home", "column.home": "Home",
"column.lists": "Lists", "column.lists": "Lists",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Muted users", "column.mutes": "Muted users",
"column.notifications": "Notifications", "column.notifications": "Notifications",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "This post won't be listed under any hashtag as it is unlisted. Only public posts can be searched by hashtag.", "compose_form.hashtag_warning": "This post won't be listed under any hashtag as it is unlisted. Only public posts 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": "Your account is not {locked}. Anyone can follow you to view your follower-only posts.",
"compose_form.lock_disclaimer.lock": "locked", "compose_form.lock_disclaimer.lock": "locked",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "What's on your mind?", "compose_form.placeholder": "What's on your mind?",
"compose_form.poll.add_option": "Add a choice", "compose_form.poll.add_option": "Add a choice",
"compose_form.poll.duration": "Poll duration", "compose_form.poll.duration": "Poll duration",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "No posts here!", "empty_column.account_timeline": "No posts here!",
"empty_column.account_unavailable": "Profile unavailable", "empty_column.account_unavailable": "Profile unavailable",
"empty_column.blocks": "You haven't blocked any users yet.", "empty_column.blocks": "You haven't blocked any users yet.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!", "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.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.domain_blocks": "There are no hidden domains yet.",
@ -165,8 +193,19 @@
"empty_column.mutes": "You haven't muted any users yet.", "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.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 servers to fill it up", "empty_column.public": "There is nothing here! Write something publicly, or manually follow users from other servers to fill it up",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Authorize", "follow_request.authorize": "Authorize",
"follow_request.reject": "Reject", "follow_request.reject": "Reject",
"getting_started.heading": "Getting started", "getting_started.heading": "Getting started",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "and {additional}", "hashtag.column_header.tag_mode.all": "and {additional}",
"hashtag.column_header.tag_mode.any": "or {additional}", "hashtag.column_header.tag_mode.any": "or {additional}",
"hashtag.column_header.tag_mode.none": "without {additional}", "hashtag.column_header.tag_mode.none": "without {additional}",
"home.column_settings.basic": "Basic", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "Show reposts", "home.column_settings.show_reblogs": "Show reposts",
"home.column_settings.show_replies": "Show replies", "home.column_settings.show_replies": "Show replies",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Your lists", "lists.subheading": "Your lists",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Loading...", "loading_indicator.label": "Loading...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Toggle visibility", "media_gallery.toggle_visible": "Toggle visibility",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Not found", "missing_indicator.label": "Not found",
"missing_indicator.sublabel": "This resource could not be found", "missing_indicator.sublabel": "This resource could not be found",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Hide notifications from this user?", "mute_modal.hide_notifications": "Hide notifications from this user?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Blocked users", "navigation_bar.blocks": "Blocked users",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Local timeline", "navigation_bar.community_timeline": "Local timeline",
"navigation_bar.compose": "Compose new post", "navigation_bar.compose": "Compose new post",
"navigation_bar.direct": "Direct messages", "navigation_bar.direct": "Direct messages",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Reposts:", "notifications.column_settings.reblog": "Reposts:",
"notifications.column_settings.show": "Show in column", "notifications.column_settings.show": "Show in column",
"notifications.column_settings.sound": "Play sound", "notifications.column_settings.sound": "Play sound",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "All", "notifications.filter.all": "All",
"notifications.filter.boosts": "Reposts", "notifications.filter.boosts": "Reposts",
"notifications.filter.favourites": "Favorites", "notifications.filter.favourites": "Favorites",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
@ -379,8 +440,12 @@
"search_results.statuses": "Posts", "search_results.statuses": "Posts",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {result} other {results}}", "search_results.total": "{count, number} {count, plural, one {result} other {results}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Open moderation interface for @{name}", "status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface", "status.admin_status": "Open this post in the moderation interface",
"status.block": "Block @{name}", "status.block": "Block @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Un-repost", "status.cancel_reblog_private": "Un-repost",
"status.cannot_reblog": "This post cannot be reposted", "status.cannot_reblog": "This post cannot be reposted",
"status.copy": "Copy link to post", "status.copy": "Copy link to post",
@ -439,6 +510,7 @@
"status.show_more": "Show more", "status.show_more": "Show more",
"status.show_more_all": "Show more for all", "status.show_more_all": "Show more for all",
"status.show_thread": "Show thread", "status.show_thread": "Show thread",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Unmute conversation", "status.unmute_conversation": "Unmute conversation",
"status.unpin": "Unpin from profile", "status.unpin": "Unpin from profile",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Ziņot par lietotāju @{name}", "account.report": "Ziņot par lietotāju @{name}",
"account.requested": "Gaidām apstiprinājumu. Nospied lai atceltu sekošanas pieparasījumu", "account.requested": "Gaidām apstiprinājumu. Nospied lai atceltu sekošanas pieparasījumu",
"account.requested_small": "Awaiting approval",
"account.share": "Dalīties ar lietotāja @{name}'s profilu", "account.share": "Dalīties ar lietotāja @{name}'s profilu",
"account.show_reblogs": "Parādīt lietotāja @{name} paceltos ierakstus", "account.show_reblogs": "Parādīt lietotāja @{name} paceltos ierakstus",
"account.unblock": "Atbloķēt lietotāju @{name}", "account.unblock": "Atbloķēt lietotāju @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Kaut kas nogāja greizi ielādējot šo komponenti.", "bundle_modal_error.message": "Kaut kas nogāja greizi ielādējot šo komponenti.",
"bundle_modal_error.retry": "Mēģini vēlreiz", "bundle_modal_error.retry": "Mēģini vēlreiz",
"column.blocks": "Bloķētie lietotāji", "column.blocks": "Bloķētie lietotāji",
"column.bookmarks": "Bookmarks",
"column.community": "Lokālā laika līnija", "column.community": "Lokālā laika līnija",
"column.direct": "Privātās ziņas", "column.direct": "Privātās ziņas",
"column.domain_blocks": "Paslēptie domēni", "column.domain_blocks": "Paslēptie domēni",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Sekotāju pieprasījumi", "column.follow_requests": "Sekotāju pieprasījumi",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Sākums", "column.home": "Sākums",
"column.lists": "Saraksti", "column.lists": "Saraksti",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Apklusinātie lietotāji", "column.mutes": "Apklusinātie lietotāji",
"column.notifications": "Paziņojumi", "column.notifications": "Paziņojumi",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "Ziņojumu nebūs iespējams atrast zem haštagiem jo tas nav publisks. Tikai publiskos ziņojumus ir iespējams meklēt pēc tiem.", "compose_form.hashtag_warning": "Ziņojumu nebūs iespējams atrast zem haštagiem jo tas nav publisks. Tikai publiskos ziņojumus ir iespējams meklēt pēc tiem.",
"compose_form.lock_disclaimer": "Tavs konts nav {locked}. Ikviens var Tev sekot lai apskatītu tikai sekotājiem paredzētos ziņojumus.", "compose_form.lock_disclaimer": "Tavs konts nav {locked}. Ikviens var Tev sekot lai apskatītu tikai sekotājiem paredzētos ziņojumus.",
"compose_form.lock_disclaimer.lock": "slēgts", "compose_form.lock_disclaimer.lock": "slēgts",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "Ko vēlies publicēt?", "compose_form.placeholder": "Ko vēlies publicēt?",
"compose_form.poll.add_option": "Add a choice", "compose_form.poll.add_option": "Add a choice",
"compose_form.poll.duration": "Poll duration", "compose_form.poll.duration": "Poll duration",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "Šeit ziņojumu nav!", "empty_column.account_timeline": "Šeit ziņojumu nav!",
"empty_column.account_unavailable": "Profile unavailable", "empty_column.account_unavailable": "Profile unavailable",
"empty_column.blocks": "Tu neesi vēl nevienu bloķējis.", "empty_column.blocks": "Tu neesi vēl nevienu bloķējis.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "Lokālā laika līnija ir tukša. :/ Ieraksti kaut ko lai sākas rosība!", "empty_column.community": "Lokālā laika līnija ir tukša. :/ Ieraksti kaut ko lai sākas rosība!",
"empty_column.direct": "Tev nav privāto ziņu. Tiklīdz saņemsi tās šeit parādīsies.", "empty_column.direct": "Tev nav privāto ziņu. Tiklīdz saņemsi tās šeit parādīsies.",
"empty_column.domain_blocks": "Slēpto domēnu vēl nav.", "empty_column.domain_blocks": "Slēpto domēnu vēl nav.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Tu neesi nevienu apklusinājis.", "empty_column.mutes": "Tu neesi nevienu apklusinājis.",
"empty_column.notifications": "Tev nav paziņojumu. Iesaisties sarunās ar citiem.", "empty_column.notifications": "Tev nav paziņojumu. Iesaisties sarunās ar citiem.",
"empty_column.public": "Šeit nekā nav, tukšums! Ieraksti kaut ko publiski, vai uzmeklē un seko kādam no citas instances", "empty_column.public": "Šeit nekā nav, tukšums! Ieraksti kaut ko publiski, vai uzmeklē un seko kādam no citas instances",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Autorizēt", "follow_request.authorize": "Autorizēt",
"follow_request.reject": "Noraidīt", "follow_request.reject": "Noraidīt",
"getting_started.heading": "Getting started", "getting_started.heading": "Getting started",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "and {additional}", "hashtag.column_header.tag_mode.all": "and {additional}",
"hashtag.column_header.tag_mode.any": "or {additional}", "hashtag.column_header.tag_mode.any": "or {additional}",
"hashtag.column_header.tag_mode.none": "without {additional}", "hashtag.column_header.tag_mode.none": "without {additional}",
"home.column_settings.basic": "Basic", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "Show reposts", "home.column_settings.show_reblogs": "Show reposts",
"home.column_settings.show_replies": "Show replies", "home.column_settings.show_replies": "Show replies",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Your lists", "lists.subheading": "Your lists",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Loading...", "loading_indicator.label": "Loading...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Toggle visibility", "media_gallery.toggle_visible": "Toggle visibility",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Not found", "missing_indicator.label": "Not found",
"missing_indicator.sublabel": "This resource could not be found", "missing_indicator.sublabel": "This resource could not be found",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Hide notifications from this user?", "mute_modal.hide_notifications": "Hide notifications from this user?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Blocked users", "navigation_bar.blocks": "Blocked users",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Local timeline", "navigation_bar.community_timeline": "Local timeline",
"navigation_bar.compose": "Compose new post", "navigation_bar.compose": "Compose new post",
"navigation_bar.direct": "Direct messages", "navigation_bar.direct": "Direct messages",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Reposts:", "notifications.column_settings.reblog": "Reposts:",
"notifications.column_settings.show": "Show in column", "notifications.column_settings.show": "Show in column",
"notifications.column_settings.sound": "Play sound", "notifications.column_settings.sound": "Play sound",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "All", "notifications.filter.all": "All",
"notifications.filter.boosts": "Reposts", "notifications.filter.boosts": "Reposts",
"notifications.filter.favourites": "Favorites", "notifications.filter.favourites": "Favorites",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
@ -379,8 +440,12 @@
"search_results.statuses": "Posts", "search_results.statuses": "Posts",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {result} other {results}}", "search_results.total": "{count, number} {count, plural, one {result} other {results}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Open moderation interface for @{name}", "status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface", "status.admin_status": "Open this post in the moderation interface",
"status.block": "Block @{name}", "status.block": "Block @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Un-repost", "status.cancel_reblog_private": "Un-repost",
"status.cannot_reblog": "This post cannot be reposted", "status.cannot_reblog": "This post cannot be reposted",
"status.copy": "Copy link to post", "status.copy": "Copy link to post",
@ -439,6 +510,7 @@
"status.show_more": "Show more", "status.show_more": "Show more",
"status.show_more_all": "Show more for all", "status.show_more_all": "Show more for all",
"status.show_thread": "Show thread", "status.show_thread": "Show thread",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Unmute conversation", "status.unmute_conversation": "Unmute conversation",
"status.unpin": "Unpin from profile", "status.unpin": "Unpin from profile",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Пријави @{name}", "account.report": "Пријави @{name}",
"account.requested": "Се чека одобрување. Кликни за да одкажиш барање за следење", "account.requested": "Се чека одобрување. Кликни за да одкажиш барање за следење",
"account.requested_small": "Awaiting approval",
"account.share": "Сподели @{name} профил", "account.share": "Сподели @{name} профил",
"account.show_reblogs": "Прикажи бустови од @{name}", "account.show_reblogs": "Прикажи бустови од @{name}",
"account.unblock": "Одблокирај @{name}", "account.unblock": "Одблокирај @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Настана грешка при прикажувањето на оваа веб-страница.", "bundle_modal_error.message": "Настана грешка при прикажувањето на оваа веб-страница.",
"bundle_modal_error.retry": "Обидете се повторно", "bundle_modal_error.retry": "Обидете се повторно",
"column.blocks": "Блокирани корисници", "column.blocks": "Блокирани корисници",
"column.bookmarks": "Bookmarks",
"column.community": "Local timeline", "column.community": "Local timeline",
"column.direct": "Директна порака", "column.direct": "Директна порака",
"column.domain_blocks": "Hidden domains", "column.domain_blocks": "Hidden domains",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Follow requests", "column.follow_requests": "Follow requests",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Дома", "column.home": "Дома",
"column.lists": "Листа", "column.lists": "Листа",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Muted users", "column.mutes": "Muted users",
"column.notifications": "Известувања", "column.notifications": "Известувања",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "This post won't be listed under any hashtag as it is unlisted. Only public posts can be searched by hashtag.", "compose_form.hashtag_warning": "This post won't be listed under any hashtag as it is unlisted. Only public posts 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": "Your account is not {locked}. Anyone can follow you to view your follower-only posts.",
"compose_form.lock_disclaimer.lock": "locked", "compose_form.lock_disclaimer.lock": "locked",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "What is on your mind?", "compose_form.placeholder": "What is on your mind?",
"compose_form.poll.add_option": "Add a choice", "compose_form.poll.add_option": "Add a choice",
"compose_form.poll.duration": "Poll duration", "compose_form.poll.duration": "Poll duration",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "No posts here!", "empty_column.account_timeline": "No posts here!",
"empty_column.account_unavailable": "Profile unavailable", "empty_column.account_unavailable": "Profile unavailable",
"empty_column.blocks": "You haven't blocked any users yet.", "empty_column.blocks": "You haven't blocked any users yet.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!", "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.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.domain_blocks": "There are no hidden domains yet.",
@ -165,8 +193,19 @@
"empty_column.mutes": "You haven't muted any users yet.", "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.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 servers to fill it up", "empty_column.public": "There is nothing here! Write something publicly, or manually follow users from other servers to fill it up",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Authorize", "follow_request.authorize": "Authorize",
"follow_request.reject": "Reject", "follow_request.reject": "Reject",
"getting_started.heading": "Getting started", "getting_started.heading": "Getting started",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "and {additional}", "hashtag.column_header.tag_mode.all": "and {additional}",
"hashtag.column_header.tag_mode.any": "or {additional}", "hashtag.column_header.tag_mode.any": "or {additional}",
"hashtag.column_header.tag_mode.none": "without {additional}", "hashtag.column_header.tag_mode.none": "without {additional}",
"home.column_settings.basic": "Basic", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "Show reposts", "home.column_settings.show_reblogs": "Show reposts",
"home.column_settings.show_replies": "Show replies", "home.column_settings.show_replies": "Show replies",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Your lists", "lists.subheading": "Your lists",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Loading...", "loading_indicator.label": "Loading...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Toggle visibility", "media_gallery.toggle_visible": "Toggle visibility",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Not found", "missing_indicator.label": "Not found",
"missing_indicator.sublabel": "This resource could not be found", "missing_indicator.sublabel": "This resource could not be found",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Hide notifications from this user?", "mute_modal.hide_notifications": "Hide notifications from this user?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Blocked users", "navigation_bar.blocks": "Blocked users",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Local timeline", "navigation_bar.community_timeline": "Local timeline",
"navigation_bar.compose": "Compose new post", "navigation_bar.compose": "Compose new post",
"navigation_bar.direct": "Direct messages", "navigation_bar.direct": "Direct messages",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Reposts:", "notifications.column_settings.reblog": "Reposts:",
"notifications.column_settings.show": "Show in column", "notifications.column_settings.show": "Show in column",
"notifications.column_settings.sound": "Play sound", "notifications.column_settings.sound": "Play sound",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "All", "notifications.filter.all": "All",
"notifications.filter.boosts": "Reposts", "notifications.filter.boosts": "Reposts",
"notifications.filter.favourites": "Favorites", "notifications.filter.favourites": "Favorites",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
@ -379,8 +440,12 @@
"search_results.statuses": "Posts", "search_results.statuses": "Posts",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {result} other {results}}", "search_results.total": "{count, number} {count, plural, one {result} other {results}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Open moderation interface for @{name}", "status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface", "status.admin_status": "Open this post in the moderation interface",
"status.block": "Block @{name}", "status.block": "Block @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Un-repost", "status.cancel_reblog_private": "Un-repost",
"status.cannot_reblog": "This post cannot be reposted", "status.cannot_reblog": "This post cannot be reposted",
"status.copy": "Copy link to post", "status.copy": "Copy link to post",
@ -439,6 +510,7 @@
"status.show_more": "Show more", "status.show_more": "Show more",
"status.show_more_all": "Show more for all", "status.show_more_all": "Show more for all",
"status.show_thread": "Show thread", "status.show_thread": "Show thread",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Unmute conversation", "status.unmute_conversation": "Unmute conversation",
"status.unpin": "Unpin from profile", "status.unpin": "Unpin from profile",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Report @{name}", "account.report": "Report @{name}",
"account.requested": "Awaiting approval. Click to cancel follow request", "account.requested": "Awaiting approval. Click to cancel follow request",
"account.requested_small": "Awaiting approval",
"account.share": "Share @{name}'s profile", "account.share": "Share @{name}'s profile",
"account.show_reblogs": "Show reposts from @{name}", "account.show_reblogs": "Show reposts from @{name}",
"account.unblock": "Unblock @{name}", "account.unblock": "Unblock @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Something went wrong while loading this component.", "bundle_modal_error.message": "Something went wrong while loading this component.",
"bundle_modal_error.retry": "Try again", "bundle_modal_error.retry": "Try again",
"column.blocks": "Blocked users", "column.blocks": "Blocked users",
"column.bookmarks": "Bookmarks",
"column.community": "Local timeline", "column.community": "Local timeline",
"column.direct": "Direct messages", "column.direct": "Direct messages",
"column.domain_blocks": "Hidden domains", "column.domain_blocks": "Hidden domains",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Follow requests", "column.follow_requests": "Follow requests",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Home", "column.home": "Home",
"column.lists": "Lists", "column.lists": "Lists",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Muted users", "column.mutes": "Muted users",
"column.notifications": "Notifications", "column.notifications": "Notifications",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "This post won't be listed under any hashtag as it is unlisted. Only public posts can be searched by hashtag.", "compose_form.hashtag_warning": "This post won't be listed under any hashtag as it is unlisted. Only public posts 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": "Your account is not {locked}. Anyone can follow you to view your follower-only posts.",
"compose_form.lock_disclaimer.lock": "locked", "compose_form.lock_disclaimer.lock": "locked",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "What is on your mind?", "compose_form.placeholder": "What is on your mind?",
"compose_form.poll.add_option": "Add a choice", "compose_form.poll.add_option": "Add a choice",
"compose_form.poll.duration": "Poll duration", "compose_form.poll.duration": "Poll duration",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "No posts here!", "empty_column.account_timeline": "No posts here!",
"empty_column.account_unavailable": "Profile unavailable", "empty_column.account_unavailable": "Profile unavailable",
"empty_column.blocks": "You haven't blocked any users yet.", "empty_column.blocks": "You haven't blocked any users yet.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "The local timeline is empty. Write something publicly to get the ball rolling!", "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.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.domain_blocks": "There are no hidden domains yet.",
@ -165,8 +193,19 @@
"empty_column.mutes": "You haven't muted any users yet.", "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.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", "empty_column.public": "There is nothing here! Write something publicly, or manually follow users from other instances to fill it up",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Authorize", "follow_request.authorize": "Authorize",
"follow_request.reject": "Reject", "follow_request.reject": "Reject",
"getting_started.heading": "Getting started", "getting_started.heading": "Getting started",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "and {additional}", "hashtag.column_header.tag_mode.all": "and {additional}",
"hashtag.column_header.tag_mode.any": "or {additional}", "hashtag.column_header.tag_mode.any": "or {additional}",
"hashtag.column_header.tag_mode.none": "without {additional}", "hashtag.column_header.tag_mode.none": "without {additional}",
"home.column_settings.basic": "Basic", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "Show reposts", "home.column_settings.show_reblogs": "Show reposts",
"home.column_settings.show_replies": "Show replies", "home.column_settings.show_replies": "Show replies",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Your lists", "lists.subheading": "Your lists",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Loading...", "loading_indicator.label": "Loading...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Toggle visibility", "media_gallery.toggle_visible": "Toggle visibility",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Not found", "missing_indicator.label": "Not found",
"missing_indicator.sublabel": "This resource could not be found", "missing_indicator.sublabel": "This resource could not be found",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Hide notifications from this user?", "mute_modal.hide_notifications": "Hide notifications from this user?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Blocked users", "navigation_bar.blocks": "Blocked users",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Local timeline", "navigation_bar.community_timeline": "Local timeline",
"navigation_bar.compose": "Compose new post", "navigation_bar.compose": "Compose new post",
"navigation_bar.direct": "Direct messages", "navigation_bar.direct": "Direct messages",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Reposts:", "notifications.column_settings.reblog": "Reposts:",
"notifications.column_settings.show": "Show in column", "notifications.column_settings.show": "Show in column",
"notifications.column_settings.sound": "Play sound", "notifications.column_settings.sound": "Play sound",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "All", "notifications.filter.all": "All",
"notifications.filter.boosts": "Reposts", "notifications.filter.boosts": "Reposts",
"notifications.filter.favourites": "Favorites", "notifications.filter.favourites": "Favorites",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
@ -379,8 +440,12 @@
"search_results.statuses": "Posts", "search_results.statuses": "Posts",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {result} other {results}}", "search_results.total": "{count, number} {count, plural, one {result} other {results}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Open moderation interface for @{name}", "status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface", "status.admin_status": "Open this post in the moderation interface",
"status.block": "Block @{name}", "status.block": "Block @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Un-repost", "status.cancel_reblog_private": "Un-repost",
"status.cannot_reblog": "This post cannot be reposted", "status.cannot_reblog": "This post cannot be reposted",
"status.copy": "Copy link to post", "status.copy": "Copy link to post",
@ -439,6 +510,7 @@
"status.show_more": "Show more", "status.show_more": "Show more",
"status.show_more_all": "Show more for all", "status.show_more_all": "Show more for all",
"status.show_thread": "Show thread", "status.show_thread": "Show thread",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Unmute conversation", "status.unmute_conversation": "Unmute conversation",
"status.unpin": "Unpin from profile", "status.unpin": "Unpin from profile",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Rapporteer @{name}", "account.report": "Rapporteer @{name}",
"account.requested": "Wacht op goedkeuring. Klik om het volgverzoek te annuleren", "account.requested": "Wacht op goedkeuring. Klik om het volgverzoek te annuleren",
"account.requested_small": "Awaiting approval",
"account.share": "Profiel van @{name} delen", "account.share": "Profiel van @{name} delen",
"account.show_reblogs": "Toon reposts van @{name}", "account.show_reblogs": "Toon reposts van @{name}",
"account.unblock": "Deblokkeer @{name}", "account.unblock": "Deblokkeer @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Tijdens het laden van dit onderdeel is er iets fout gegaan.", "bundle_modal_error.message": "Tijdens het laden van dit onderdeel is er iets fout gegaan.",
"bundle_modal_error.retry": "Opnieuw proberen", "bundle_modal_error.retry": "Opnieuw proberen",
"column.blocks": "Geblokkeerde gebruikers", "column.blocks": "Geblokkeerde gebruikers",
"column.bookmarks": "Bookmarks",
"column.community": "Lokale tijdlijn", "column.community": "Lokale tijdlijn",
"column.direct": "Directe berichten", "column.direct": "Directe berichten",
"column.domain_blocks": "Genegeerde servers", "column.domain_blocks": "Genegeerde servers",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Volgverzoeken", "column.follow_requests": "Volgverzoeken",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Start", "column.home": "Start",
"column.lists": "Lijsten", "column.lists": "Lijsten",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Genegeerde gebruikers", "column.mutes": "Genegeerde gebruikers",
"column.notifications": "Meldingen", "column.notifications": "Meldingen",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "Deze toot valt niet onder een hashtag te bekijken, omdat deze niet op openbare tijdlijnen wordt getoond. Alleen openbare toots kunnen via hashtags gevonden worden.", "compose_form.hashtag_warning": "Deze toot valt niet onder een hashtag te bekijken, omdat deze niet op openbare tijdlijnen wordt getoond. Alleen openbare toots kunnen via hashtags gevonden worden.",
"compose_form.lock_disclaimer": "Jouw account is niet {locked}. Iedereen kan jou volgen en kan de toots zien die je alleen aan jouw volgers hebt gericht.", "compose_form.lock_disclaimer": "Jouw account is niet {locked}. Iedereen kan jou volgen en kan de toots zien die je alleen aan jouw volgers hebt gericht.",
"compose_form.lock_disclaimer.lock": "besloten", "compose_form.lock_disclaimer.lock": "besloten",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "Wat wil je kwijt?", "compose_form.placeholder": "Wat wil je kwijt?",
"compose_form.poll.add_option": "Keuze toevoegen", "compose_form.poll.add_option": "Keuze toevoegen",
"compose_form.poll.duration": "Duur van de poll", "compose_form.poll.duration": "Duur van de poll",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "Hier zijn geen toots!", "empty_column.account_timeline": "Hier zijn geen toots!",
"empty_column.account_unavailable": "Profiel is niet beschikbaar", "empty_column.account_unavailable": "Profiel is niet beschikbaar",
"empty_column.blocks": "Jij hebt nog geen enkele gebruiker geblokkeerd.", "empty_column.blocks": "Jij hebt nog geen enkele gebruiker geblokkeerd.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"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": "Er zijn nog geen genegeerde servers.", "empty_column.domain_blocks": "Er zijn nog geen genegeerde servers.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Jij hebt nog geen gebruikers genegeerd.", "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",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Goedkeuren", "follow_request.authorize": "Goedkeuren",
"follow_request.reject": "Afkeuren", "follow_request.reject": "Afkeuren",
"getting_started.heading": "Aan de slag", "getting_started.heading": "Aan de slag",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "en {additional}", "hashtag.column_header.tag_mode.all": "en {additional}",
"hashtag.column_header.tag_mode.any": "of {additional}", "hashtag.column_header.tag_mode.any": "of {additional}",
"hashtag.column_header.tag_mode.none": "zonder {additional}", "hashtag.column_header.tag_mode.none": "zonder {additional}",
"home.column_settings.basic": "Algemeen", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "Reposts tonen", "home.column_settings.show_reblogs": "Reposts tonen",
"home.column_settings.show_replies": "Reacties tonen", "home.column_settings.show_replies": "Reacties tonen",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Jouw lijsten", "lists.subheading": "Jouw lijsten",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Laden…", "loading_indicator.label": "Laden…",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Media wel/niet tonen", "media_gallery.toggle_visible": "Media wel/niet tonen",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"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",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Verberg meldingen van deze persoon?", "mute_modal.hide_notifications": "Verberg meldingen van deze persoon?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Geblokkeerde gebruikers", "navigation_bar.blocks": "Geblokkeerde gebruikers",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Lokale tijdlijn", "navigation_bar.community_timeline": "Lokale tijdlijn",
"navigation_bar.compose": "Nieuw toot schrijven", "navigation_bar.compose": "Nieuw toot schrijven",
"navigation_bar.direct": "Directe berichten", "navigation_bar.direct": "Directe berichten",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Reposts:", "notifications.column_settings.reblog": "Reposts:",
"notifications.column_settings.show": "In kolom tonen", "notifications.column_settings.show": "In kolom tonen",
"notifications.column_settings.sound": "Geluid afspelen", "notifications.column_settings.sound": "Geluid afspelen",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "Alles", "notifications.filter.all": "Alles",
"notifications.filter.boosts": "Reposts", "notifications.filter.boosts": "Reposts",
"notifications.filter.favourites": "Favorieten", "notifications.filter.favourites": "Favorieten",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
@ -379,8 +440,12 @@
"search_results.statuses": "Posts", "search_results.statuses": "Posts",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {resultaat} other {resultaten}}", "search_results.total": "{count, number} {count, plural, one {resultaat} other {resultaten}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Moderatie-omgeving van @{name} openen", "status.admin_account": "Moderatie-omgeving van @{name} openen",
"status.admin_status": "Deze toot in de moderatie-omgeving openen", "status.admin_status": "Deze toot in de moderatie-omgeving openen",
"status.block": "Blokkeer @{name}", "status.block": "Blokkeer @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Niet langer reposten", "status.cancel_reblog_private": "Niet langer reposten",
"status.cannot_reblog": "Deze toot kan niet gerepost worden", "status.cannot_reblog": "Deze toot kan niet gerepost worden",
"status.copy": "Link naar toot kopiëren", "status.copy": "Link naar toot kopiëren",
@ -439,6 +510,7 @@
"status.show_more": "Meer tonen", "status.show_more": "Meer tonen",
"status.show_more_all": "Alles meer tonen", "status.show_more_all": "Alles meer tonen",
"status.show_thread": "Gesprek tonen", "status.show_thread": "Gesprek tonen",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Gesprek niet langer negeren", "status.unmute_conversation": "Gesprek niet langer negeren",
"status.unpin": "Van profielpagina losmaken", "status.unpin": "Van profielpagina losmaken",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Rapporter @{name}", "account.report": "Rapporter @{name}",
"account.requested": "Venter på samtykke. Klikk for å avbryte føljar-førespurnad", "account.requested": "Venter på samtykke. Klikk for å avbryte føljar-førespurnad",
"account.requested_small": "Awaiting approval",
"account.share": "Del @{name} sin profil", "account.share": "Del @{name} sin profil",
"account.show_reblogs": "Sjå framhevingar ifrå @{name}", "account.show_reblogs": "Sjå framhevingar ifrå @{name}",
"account.unblock": "Avblokker @{name}", "account.unblock": "Avblokker @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Noko gikk gale mens komponent var i ferd med å bli nedlasta.", "bundle_modal_error.message": "Noko gikk gale mens komponent var i ferd med å bli nedlasta.",
"bundle_modal_error.retry": "Prøv igjen", "bundle_modal_error.retry": "Prøv igjen",
"column.blocks": "Blokka brukare", "column.blocks": "Blokka brukare",
"column.bookmarks": "Bookmarks",
"column.community": "Lokal samtid", "column.community": "Lokal samtid",
"column.direct": "Direkte meldingar", "column.direct": "Direkte meldingar",
"column.domain_blocks": "Gøymte domener", "column.domain_blocks": "Gøymte domener",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Føljarførespurnad", "column.follow_requests": "Føljarførespurnad",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Heim", "column.home": "Heim",
"column.lists": "Lister", "column.lists": "Lister",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Målbindte brukare", "column.mutes": "Målbindte brukare",
"column.notifications": "Varslingar", "column.notifications": "Varslingar",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "Denne tuten vill ikkje bli lista under nokon knagg ettersom den ikkje er opplista. Berre offentlege tutar kan ble søkt på ved emneknagg.", "compose_form.hashtag_warning": "Denne tuten vill ikkje bli lista under nokon knagg ettersom den ikkje er opplista. Berre offentlege tutar kan ble søkt på ved emneknagg.",
"compose_form.lock_disclaimer": "Din brukar er ikkje {locked}. Alle kan følje deg for å sjå føljar-modus poster.", "compose_form.lock_disclaimer": "Din brukar er ikkje {locked}. Alle kan følje deg for å sjå føljar-modus poster.",
"compose_form.lock_disclaimer.lock": "låst", "compose_form.lock_disclaimer.lock": "låst",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "Kva har du på hjartet?", "compose_form.placeholder": "Kva har du på hjartet?",
"compose_form.poll.add_option": "Legg til eit punkt", "compose_form.poll.add_option": "Legg til eit punkt",
"compose_form.poll.duration": "Varigheit for spørring", "compose_form.poll.duration": "Varigheit for spørring",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "Ikkje nokon tutar her!", "empty_column.account_timeline": "Ikkje nokon tutar her!",
"empty_column.account_unavailable": "Profil ikkje tilgjengelig", "empty_column.account_unavailable": "Profil ikkje tilgjengelig",
"empty_column.blocks": "Du har ikkje blokkért nokon brukarar ennå.", "empty_column.blocks": "Du har ikkje blokkért nokon brukarar ennå.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "Den lokale samtiden er tom. Skriv noko offentleg å få ballen til å rulle!", "empty_column.community": "Den lokale samtiden er tom. Skriv noko offentleg å få ballen til å rulle!",
"empty_column.direct": "Du har ikkje nokon direkte meldingar ennå. Når du sendar eller får ein, så vill den ende opp her.", "empty_column.direct": "Du har ikkje nokon direkte meldingar ennå. Når du sendar eller får ein, så vill den ende opp her.",
"empty_column.domain_blocks": "Der er ikkje nokon gøymte domener enno.", "empty_column.domain_blocks": "Der er ikkje nokon gøymte domener enno.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Du har ikkje dempet nokon brukare enno.", "empty_column.mutes": "Du har ikkje dempet nokon brukare enno.",
"empty_column.notifications": "You don't have any notifications yet. Interact with others to start the conversation.", "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 servers to fill it up", "empty_column.public": "There is nothing here! Write something publicly, or manually follow users from other servers to fill it up",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Autoriser", "follow_request.authorize": "Autoriser",
"follow_request.reject": "Reject", "follow_request.reject": "Reject",
"getting_started.heading": "Komme i gong", "getting_started.heading": "Komme i gong",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "og {additional}", "hashtag.column_header.tag_mode.all": "og {additional}",
"hashtag.column_header.tag_mode.any": "eller {additional}", "hashtag.column_header.tag_mode.any": "eller {additional}",
"hashtag.column_header.tag_mode.none": "uten {additional}", "hashtag.column_header.tag_mode.none": "uten {additional}",
"home.column_settings.basic": "Basic", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "Vis fremhevingar", "home.column_settings.show_reblogs": "Vis fremhevingar",
"home.column_settings.show_replies": "Vis svar", "home.column_settings.show_replies": "Vis svar",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Dine lister", "lists.subheading": "Dine lister",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Laster...", "loading_indicator.label": "Laster...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Toggle visibility", "media_gallery.toggle_visible": "Toggle visibility",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Ikkje funne", "missing_indicator.label": "Ikkje funne",
"missing_indicator.sublabel": "Denne ressursen ble ikkje funne", "missing_indicator.sublabel": "Denne ressursen ble ikkje funne",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Hide notifications from this user?", "mute_modal.hide_notifications": "Hide notifications from this user?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Blocked users", "navigation_bar.blocks": "Blocked users",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Local timeline", "navigation_bar.community_timeline": "Local timeline",
"navigation_bar.compose": "Compose new post", "navigation_bar.compose": "Compose new post",
"navigation_bar.direct": "Direct messages", "navigation_bar.direct": "Direct messages",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Framhevinger:", "notifications.column_settings.reblog": "Framhevinger:",
"notifications.column_settings.show": "Show in column", "notifications.column_settings.show": "Show in column",
"notifications.column_settings.sound": "Play sound", "notifications.column_settings.sound": "Play sound",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "All", "notifications.filter.all": "All",
"notifications.filter.boosts": "Framhevinger", "notifications.filter.boosts": "Framhevinger",
"notifications.filter.favourites": "Favoritter", "notifications.filter.favourites": "Favoritter",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
@ -379,8 +440,12 @@
"search_results.statuses": "Posts", "search_results.statuses": "Posts",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {result} other {results}}", "search_results.total": "{count, number} {count, plural, one {result} other {results}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Open moderation interface for @{name}", "status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface", "status.admin_status": "Open this post in the moderation interface",
"status.block": "Block @{name}", "status.block": "Block @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Un-repost", "status.cancel_reblog_private": "Un-repost",
"status.cannot_reblog": "This post cannot be reposted", "status.cannot_reblog": "This post cannot be reposted",
"status.copy": "Copy link to post", "status.copy": "Copy link to post",
@ -439,6 +510,7 @@
"status.show_more": "Show more", "status.show_more": "Show more",
"status.show_more_all": "Show more for all", "status.show_more_all": "Show more for all",
"status.show_thread": "Show thread", "status.show_thread": "Show thread",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Unmute conversation", "status.unmute_conversation": "Unmute conversation",
"status.unpin": "Unpin from profile", "status.unpin": "Unpin from profile",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Rapportér @{name}", "account.report": "Rapportér @{name}",
"account.requested": "Venter på godkjennelse", "account.requested": "Venter på godkjennelse",
"account.requested_small": "Awaiting approval",
"account.share": "Del @{name}s profil", "account.share": "Del @{name}s profil",
"account.show_reblogs": "Vis reposts fra @{name}", "account.show_reblogs": "Vis reposts fra @{name}",
"account.unblock": "Avblokker @{name}", "account.unblock": "Avblokker @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Noe gikk galt da denne komponenten lastet.", "bundle_modal_error.message": "Noe gikk galt da denne komponenten lastet.",
"bundle_modal_error.retry": "Prøv igjen", "bundle_modal_error.retry": "Prøv igjen",
"column.blocks": "Blokkerte brukere", "column.blocks": "Blokkerte brukere",
"column.bookmarks": "Bookmarks",
"column.community": "Lokal tidslinje", "column.community": "Lokal tidslinje",
"column.direct": "Direct messages", "column.direct": "Direct messages",
"column.domain_blocks": "Hidden domains", "column.domain_blocks": "Hidden domains",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Følgeforespørsler", "column.follow_requests": "Følgeforespørsler",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Hjem", "column.home": "Hjem",
"column.lists": "Lister", "column.lists": "Lister",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Dempede brukere", "column.mutes": "Dempede brukere",
"column.notifications": "Varsler", "column.notifications": "Varsler",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "Denne tuten blir ikke listet under noen emneknagger da den er ulistet. Kun offentlige tuter kan søktes etter med emneknagg.", "compose_form.hashtag_warning": "Denne tuten blir ikke listet under noen emneknagger da den er ulistet. Kun offentlige tuter kan søktes etter med emneknagg.",
"compose_form.lock_disclaimer": "Din konto er ikke {locked}. Hvem som helst kan følge deg og se dine private poster.", "compose_form.lock_disclaimer": "Din konto er ikke {locked}. Hvem som helst kan følge deg og se dine private poster.",
"compose_form.lock_disclaimer.lock": "låst", "compose_form.lock_disclaimer.lock": "låst",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "Hva har du på hjertet?", "compose_form.placeholder": "Hva har du på hjertet?",
"compose_form.poll.add_option": "Add a choice", "compose_form.poll.add_option": "Add a choice",
"compose_form.poll.duration": "Poll duration", "compose_form.poll.duration": "Poll duration",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "No posts here!", "empty_column.account_timeline": "No posts here!",
"empty_column.account_unavailable": "Profile unavailable", "empty_column.account_unavailable": "Profile unavailable",
"empty_column.blocks": "You haven't blocked any users yet.", "empty_column.blocks": "You haven't blocked any users yet.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "Den lokale tidslinjen er tom. Skriv noe offentlig for å få snøballen til å rulle!", "empty_column.community": "Den lokale tidslinjen er tom. Skriv noe offentlig for å få snøballen til å rulle!",
"empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.", "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.domain_blocks": "There are no hidden domains yet.",
@ -165,8 +193,19 @@
"empty_column.mutes": "You haven't muted any users yet.", "empty_column.mutes": "You haven't muted any users yet.",
"empty_column.notifications": "Du har ingen varsler ennå. Kommuniser med andre for å begynne samtalen.", "empty_column.notifications": "Du har ingen varsler ennå. Kommuniser med andre for å begynne samtalen.",
"empty_column.public": "Det er ingenting her! Skriv noe offentlig, eller følg brukere manuelt fra andre instanser for å fylle den opp", "empty_column.public": "Det er ingenting her! Skriv noe offentlig, eller følg brukere manuelt fra andre instanser for å fylle den opp",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Autorisér", "follow_request.authorize": "Autorisér",
"follow_request.reject": "Avvis", "follow_request.reject": "Avvis",
"getting_started.heading": "Kom i gang", "getting_started.heading": "Kom i gang",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "and {additional}", "hashtag.column_header.tag_mode.all": "and {additional}",
"hashtag.column_header.tag_mode.any": "or {additional}", "hashtag.column_header.tag_mode.any": "or {additional}",
"hashtag.column_header.tag_mode.none": "without {additional}", "hashtag.column_header.tag_mode.none": "without {additional}",
"home.column_settings.basic": "Enkel", "home.column_settings.show_direct": "Show direct messages",
"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",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Dine lister", "lists.subheading": "Dine lister",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Laster...", "loading_indicator.label": "Laster...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Veksle synlighet", "media_gallery.toggle_visible": "Veksle synlighet",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Ikke funnet", "missing_indicator.label": "Ikke funnet",
"missing_indicator.sublabel": "Denne ressursen ble ikke funnet", "missing_indicator.sublabel": "Denne ressursen ble ikke funnet",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Skjul varslinger fra denne brukeren?", "mute_modal.hide_notifications": "Skjul varslinger fra denne brukeren?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Blokkerte brukere", "navigation_bar.blocks": "Blokkerte brukere",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Lokal tidslinje", "navigation_bar.community_timeline": "Lokal tidslinje",
"navigation_bar.compose": "Compose new post", "navigation_bar.compose": "Compose new post",
"navigation_bar.direct": "Direct messages", "navigation_bar.direct": "Direct messages",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Fremhevet:", "notifications.column_settings.reblog": "Fremhevet:",
"notifications.column_settings.show": "Vis i kolonne", "notifications.column_settings.show": "Vis i kolonne",
"notifications.column_settings.sound": "Spill lyd", "notifications.column_settings.sound": "Spill lyd",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "All", "notifications.filter.all": "All",
"notifications.filter.boosts": "Reposts", "notifications.filter.boosts": "Reposts",
"notifications.filter.favourites": "Favorites", "notifications.filter.favourites": "Favorites",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
@ -379,8 +440,12 @@
"search_results.statuses": "Posts", "search_results.statuses": "Posts",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {resultat} other {resultater}}", "search_results.total": "{count, number} {count, plural, one {resultat} other {resultater}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Open moderation interface for @{name}", "status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface", "status.admin_status": "Open this post in the moderation interface",
"status.block": "Block @{name}", "status.block": "Block @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Un-repost", "status.cancel_reblog_private": "Un-repost",
"status.cannot_reblog": "Denne posten kan ikke fremheves", "status.cannot_reblog": "Denne posten kan ikke fremheves",
"status.copy": "Copy link to post", "status.copy": "Copy link to post",
@ -439,6 +510,7 @@
"status.show_more": "Vis mer", "status.show_more": "Vis mer",
"status.show_more_all": "Show more for all", "status.show_more_all": "Show more for all",
"status.show_thread": "Show thread", "status.show_thread": "Show thread",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Ikke demp samtale", "status.unmute_conversation": "Ikke demp samtale",
"status.unpin": "Angre festing på profilen", "status.unpin": "Angre festing på profilen",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Senhalar @{name}", "account.report": "Senhalar @{name}",
"account.requested": "Invitacion mandada. Clicatz per anullar", "account.requested": "Invitacion mandada. Clicatz per anullar",
"account.requested_small": "Awaiting approval",
"account.share": "Partejar lo perfil a @{name}", "account.share": "Partejar lo perfil a @{name}",
"account.show_reblogs": "Mostrar los partatges de @{name}", "account.show_reblogs": "Mostrar los partatges de @{name}",
"account.unblock": "Desblocar @{name}", "account.unblock": "Desblocar @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Quicòm a fach mèuca pendent lo cargament daqueste compausant.", "bundle_modal_error.message": "Quicòm a fach mèuca pendent lo cargament daqueste compausant.",
"bundle_modal_error.retry": "Tornar ensajar", "bundle_modal_error.retry": "Tornar ensajar",
"column.blocks": "Personas blocadas", "column.blocks": "Personas blocadas",
"column.bookmarks": "Bookmarks",
"column.community": "Flux public local", "column.community": "Flux public local",
"column.direct": "Messatges dirèctes", "column.direct": "Messatges dirèctes",
"column.domain_blocks": "Domenis resconduts", "column.domain_blocks": "Domenis resconduts",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Demandas dabonament", "column.follow_requests": "Demandas dabonament",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Acuèlh", "column.home": "Acuèlh",
"column.lists": "Listas", "column.lists": "Listas",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Personas rescondudas", "column.mutes": "Personas rescondudas",
"column.notifications": "Notificacions", "column.notifications": "Notificacions",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "Aqueste tut serà pas ligat a cap detiqueta estant ques pas listat. Òm pòt pas cercar que los tuts publics per etiqueta.", "compose_form.hashtag_warning": "Aqueste tut serà pas ligat a cap detiqueta estant ques pas listat. Òm pòt pas cercar que los tuts publics per etiqueta.",
"compose_form.lock_disclaimer": "Vòstre compte es pas {locked}. Tot lo monde pòt vos sègre e veire los estatuts reservats als seguidors.", "compose_form.lock_disclaimer": "Vòstre compte es pas {locked}. Tot lo monde pòt vos sègre e veire los estatuts reservats als seguidors.",
"compose_form.lock_disclaimer.lock": "clavat", "compose_form.lock_disclaimer.lock": "clavat",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "A de qué pensatz?", "compose_form.placeholder": "A de qué pensatz?",
"compose_form.poll.add_option": "Ajustar una causida", "compose_form.poll.add_option": "Ajustar una causida",
"compose_form.poll.duration": "Durada del sondatge", "compose_form.poll.duration": "Durada del sondatge",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "Cap de tuts aquí!", "empty_column.account_timeline": "Cap de tuts aquí!",
"empty_column.account_unavailable": "Perfil pas disponible", "empty_column.account_unavailable": "Perfil pas disponible",
"empty_column.blocks": "Avètz pas blocat degun pel moment.", "empty_column.blocks": "Avètz pas blocat degun pel moment.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"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": "I a pas encara cap de domeni amagat.", "empty_column.domain_blocks": "I a pas encara cap de domeni amagat.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Encara avètz pas mes en silenci degun.", "empty_column.mutes": "Encara avètz pas mes en silenci degun.",
"empty_column.notifications": "Avètz pas encara de notificacions. Respondètz a qualquun per començar una conversacion.", "empty_column.notifications": "Avètz pas encara de notificacions. Respondètz a qualquun per començar una conversacion.",
"empty_column.public": "I a pas res aquí! Escrivètz quicòm de public, o seguètz de personas dautres servidors per garnir lo flux public", "empty_column.public": "I a pas res aquí! Escrivètz quicòm de public, o seguètz de personas dautres servidors per garnir lo flux public",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Acceptar", "follow_request.authorize": "Acceptar",
"follow_request.reject": "Regetar", "follow_request.reject": "Regetar",
"getting_started.heading": "Per començar", "getting_started.heading": "Per començar",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "e {additional}", "hashtag.column_header.tag_mode.all": "e {additional}",
"hashtag.column_header.tag_mode.any": "o {additional}", "hashtag.column_header.tag_mode.any": "o {additional}",
"hashtag.column_header.tag_mode.none": "sens {additional}", "hashtag.column_header.tag_mode.none": "sens {additional}",
"home.column_settings.basic": "Basic", "home.column_settings.show_direct": "Show direct messages",
"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",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Vòstras listas", "lists.subheading": "Vòstras listas",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Cargament…", "loading_indicator.label": "Cargament…",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Modificar la visibilitat", "media_gallery.toggle_visible": "Modificar la visibilitat",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Pas trobat", "missing_indicator.label": "Pas trobat",
"missing_indicator.sublabel": "Aquesta ressorsa es pas estada trobada", "missing_indicator.sublabel": "Aquesta ressorsa es pas estada trobada",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Rescondre las notificacions daquesta persona?", "mute_modal.hide_notifications": "Rescondre las notificacions daquesta persona?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Personas blocadas", "navigation_bar.blocks": "Personas blocadas",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Flux public local", "navigation_bar.community_timeline": "Flux public local",
"navigation_bar.compose": "Escriure un nòu tut", "navigation_bar.compose": "Escriure un nòu tut",
"navigation_bar.direct": "Messatges dirèctes", "navigation_bar.direct": "Messatges dirèctes",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Partatges:", "notifications.column_settings.reblog": "Partatges:",
"notifications.column_settings.show": "Mostrar dins la colomna", "notifications.column_settings.show": "Mostrar dins la colomna",
"notifications.column_settings.sound": "Emetre un son", "notifications.column_settings.sound": "Emetre un son",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "Totas", "notifications.filter.all": "Totas",
"notifications.filter.boosts": "Partages", "notifications.filter.boosts": "Partages",
"notifications.filter.favourites": "Favorits", "notifications.filter.favourites": "Favorits",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "fa {number}d", "relative_time.days": "fa {number}d",
@ -379,8 +440,12 @@
"search_results.statuses": "Tuts", "search_results.statuses": "Tuts",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {resultat} other {resultats}}", "search_results.total": "{count, number} {count, plural, one {resultat} other {resultats}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Dobrir linterfàcia de moderacion per @{name}", "status.admin_account": "Dobrir linterfàcia de moderacion per @{name}",
"status.admin_status": "Dobrir aqueste estatut dins linterfàcia de moderacion", "status.admin_status": "Dobrir aqueste estatut dins linterfàcia de moderacion",
"status.block": "Blocar @{name}", "status.block": "Blocar @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Quitar de partejar", "status.cancel_reblog_private": "Quitar de partejar",
"status.cannot_reblog": "Aqueste estatut pòt pas èsser partejat", "status.cannot_reblog": "Aqueste estatut pòt pas èsser partejat",
"status.copy": "Copiar lo ligam de lestatut", "status.copy": "Copiar lo ligam de lestatut",
@ -439,6 +510,7 @@
"status.show_more": "Desplegar", "status.show_more": "Desplegar",
"status.show_more_all": "Los desplegar totes", "status.show_more_all": "Los desplegar totes",
"status.show_thread": "Mostrar lo fil", "status.show_thread": "Mostrar lo fil",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Tornar mostrar la conversacion", "status.unmute_conversation": "Tornar mostrar la conversacion",
"status.unpin": "Tirar del perfil", "status.unpin": "Tirar del perfil",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Zgłoś @{name}", "account.report": "Zgłoś @{name}",
"account.requested": "Oczekująca prośba, kliknij aby anulować", "account.requested": "Oczekująca prośba, kliknij aby anulować",
"account.requested_small": "Awaiting approval",
"account.share": "Udostępnij profil @{name}", "account.share": "Udostępnij profil @{name}",
"account.show_reblogs": "Pokazuj podbicia od @{name}", "account.show_reblogs": "Pokazuj podbicia od @{name}",
"account.unblock": "Odblokuj @{name}", "account.unblock": "Odblokuj @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Coś poszło nie tak podczas ładowania tego składnika.", "bundle_modal_error.message": "Coś poszło nie tak podczas ładowania tego składnika.",
"bundle_modal_error.retry": "Spróbuj ponownie", "bundle_modal_error.retry": "Spróbuj ponownie",
"column.blocks": "Zablokowani użytkownicy", "column.blocks": "Zablokowani użytkownicy",
"column.bookmarks": "Bookmarks",
"column.community": "Lokalna oś czasu", "column.community": "Lokalna oś czasu",
"column.direct": "Wiadomości bezpośrednie", "column.direct": "Wiadomości bezpośrednie",
"column.domain_blocks": "Ukryte domeny", "column.domain_blocks": "Ukryte domeny",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Prośby o śledzenie", "column.follow_requests": "Prośby o śledzenie",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Strona główna", "column.home": "Strona główna",
"column.lists": "Listy", "column.lists": "Listy",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Wyciszeni użytkownicy", "column.mutes": "Wyciszeni użytkownicy",
"column.notifications": "Powiadomienia", "column.notifications": "Powiadomienia",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "Ten wpis nie będzie widoczny pod podanymi hashtagami, ponieważ jest oznaczony jako niewidoczny. Tylko publiczne wpisy mogą zostać znalezione z użyciem hashtagów.", "compose_form.hashtag_warning": "Ten wpis nie będzie widoczny pod podanymi hashtagami, ponieważ jest oznaczony jako niewidoczny. Tylko publiczne wpisy mogą zostać znalezione z użyciem hashtagów.",
"compose_form.lock_disclaimer": "Twoje konto nie jest {locked}. Każdy, kto Cię śledzi, może wyświetlać Twoje wpisy przeznaczone tylko dla śledzących.", "compose_form.lock_disclaimer": "Twoje konto nie jest {locked}. Każdy, kto Cię śledzi, może wyświetlać Twoje wpisy przeznaczone tylko dla śledzących.",
"compose_form.lock_disclaimer.lock": "zablokowane", "compose_form.lock_disclaimer.lock": "zablokowane",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "Co Ci chodzi po głowie?", "compose_form.placeholder": "Co Ci chodzi po głowie?",
"compose_form.poll.add_option": "Dodaj opcję", "compose_form.poll.add_option": "Dodaj opcję",
"compose_form.poll.duration": "Czas trwania głosowania", "compose_form.poll.duration": "Czas trwania głosowania",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "Brak wpisów tutaj!", "empty_column.account_timeline": "Brak wpisów tutaj!",
"empty_column.account_unavailable": "Profil niedostępny", "empty_column.account_unavailable": "Profil niedostępny",
"empty_column.blocks": "Nie zablokowałeś(-aś) jeszcze żadnego użytkownika.", "empty_column.blocks": "Nie zablokowałeś(-aś) jeszcze żadnego użytkownika.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "Lokalna oś czasu jest pusta. Napisz coś publicznie, aby zagaić!", "empty_column.community": "Lokalna oś czasu jest pusta. Napisz coś publicznie, aby zagaić!",
"empty_column.direct": "Nie masz żadnych wiadomości bezpośrednich. Kiedy dostaniesz lub wyślesz jakąś, pojawi się ona tutaj.", "empty_column.direct": "Nie masz żadnych wiadomości bezpośrednich. Kiedy dostaniesz lub wyślesz jakąś, pojawi się ona tutaj.",
"empty_column.domain_blocks": "Brak ukrytych domen.", "empty_column.domain_blocks": "Brak ukrytych domen.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Nie wyciszyłeś(-aś) jeszcze żadnego użytkownika.", "empty_column.mutes": "Nie wyciszyłeś(-aś) jeszcze żadnego użytkownika.",
"empty_column.notifications": "Nie masz żadnych powiadomień. Rozpocznij interakcje z innymi użytkownikami.", "empty_column.notifications": "Nie masz żadnych powiadomień. Rozpocznij interakcje z innymi użytkownikami.",
"empty_column.public": "Tu nic nie ma! Napisz coś publicznie, lub dodaj ludzi z innych serwerów, aby to wyświetlić", "empty_column.public": "Tu nic nie ma! Napisz coś publicznie, lub dodaj ludzi z innych serwerów, aby to wyświetlić",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Autoryzuj", "follow_request.authorize": "Autoryzuj",
"follow_request.reject": "Odrzuć", "follow_request.reject": "Odrzuć",
"getting_started.heading": "Rozpocznij", "getting_started.heading": "Rozpocznij",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "i {additional}", "hashtag.column_header.tag_mode.all": "i {additional}",
"hashtag.column_header.tag_mode.any": "lub {additional}", "hashtag.column_header.tag_mode.any": "lub {additional}",
"hashtag.column_header.tag_mode.none": "bez {additional}", "hashtag.column_header.tag_mode.none": "bez {additional}",
"home.column_settings.basic": "Podstawowe", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "Pokazuj podbicia", "home.column_settings.show_reblogs": "Pokazuj podbicia",
"home.column_settings.show_replies": "Pokazuj odpowiedzi", "home.column_settings.show_replies": "Pokazuj odpowiedzi",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Twoje listy", "lists.subheading": "Twoje listy",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Ładowanie…", "loading_indicator.label": "Ładowanie…",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Przełącz widoczność", "media_gallery.toggle_visible": "Przełącz widoczność",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Nie znaleziono", "missing_indicator.label": "Nie znaleziono",
"missing_indicator.sublabel": "Nie można odnaleźć tego zasobu", "missing_indicator.sublabel": "Nie można odnaleźć tego zasobu",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Chcesz ukryć powiadomienia od tego użytkownika?", "mute_modal.hide_notifications": "Chcesz ukryć powiadomienia od tego użytkownika?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Zablokowani użytkownicy", "navigation_bar.blocks": "Zablokowani użytkownicy",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Lokalna oś czasu", "navigation_bar.community_timeline": "Lokalna oś czasu",
"navigation_bar.compose": "Utwórz nowy wpis", "navigation_bar.compose": "Utwórz nowy wpis",
"navigation_bar.direct": "Wiadomości bezpośrednie", "navigation_bar.direct": "Wiadomości bezpośrednie",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Podbicia:", "notifications.column_settings.reblog": "Podbicia:",
"notifications.column_settings.show": "Pokaż w kolumnie", "notifications.column_settings.show": "Pokaż w kolumnie",
"notifications.column_settings.sound": "Odtwarzaj dźwięk", "notifications.column_settings.sound": "Odtwarzaj dźwięk",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "Wszystkie", "notifications.filter.all": "Wszystkie",
"notifications.filter.boosts": "Podbicia", "notifications.filter.boosts": "Podbicia",
"notifications.filter.favourites": "Ulubione", "notifications.filter.favourites": "Ulubione",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number} dni", "relative_time.days": "{number} dni",
@ -379,8 +440,12 @@
"search_results.statuses": "Wpisy", "search_results.statuses": "Wpisy",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {wynik} few {wyniki} many {wyników} more {wyników}}", "search_results.total": "{count, number} {count, plural, one {wynik} few {wyniki} many {wyników} more {wyników}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Otwórz interfejs moderacyjny dla @{name}", "status.admin_account": "Otwórz interfejs moderacyjny dla @{name}",
"status.admin_status": "Otwórz ten wpis w interfejsie moderacyjnym", "status.admin_status": "Otwórz ten wpis w interfejsie moderacyjnym",
"status.block": "Zablokuj @{name}", "status.block": "Zablokuj @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Cofnij podbicie", "status.cancel_reblog_private": "Cofnij podbicie",
"status.cannot_reblog": "Ten wpis nie może zostać podbity", "status.cannot_reblog": "Ten wpis nie może zostać podbity",
"status.copy": "Skopiuj odnośnik do wpisu", "status.copy": "Skopiuj odnośnik do wpisu",
@ -439,6 +510,7 @@
"status.show_more": "Rozwiń", "status.show_more": "Rozwiń",
"status.show_more_all": "Rozwiń wszystkie", "status.show_more_all": "Rozwiń wszystkie",
"status.show_thread": "Pokaż wątek", "status.show_thread": "Pokaż wątek",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Cofnij wyciszenie konwersacji", "status.unmute_conversation": "Cofnij wyciszenie konwersacji",
"status.unpin": "Odepnij z profilu", "status.unpin": "Odepnij z profilu",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Denunciar @{name}", "account.report": "Denunciar @{name}",
"account.requested": "Aguardando aprovação. Clique para cancelar a solicitação", "account.requested": "Aguardando aprovação. Clique para cancelar a solicitação",
"account.requested_small": "Awaiting approval",
"account.share": "Compartilhar perfil de @{name}", "account.share": "Compartilhar perfil de @{name}",
"account.show_reblogs": "Mostra compartilhamentos de @{name}", "account.show_reblogs": "Mostra compartilhamentos de @{name}",
"account.unblock": "Desbloquear @{name}", "account.unblock": "Desbloquear @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Algo de errado aconteceu enquanto este componente era carregado.", "bundle_modal_error.message": "Algo de errado aconteceu enquanto este componente era carregado.",
"bundle_modal_error.retry": "Tente novamente", "bundle_modal_error.retry": "Tente novamente",
"column.blocks": "Usuários bloqueados", "column.blocks": "Usuários bloqueados",
"column.bookmarks": "Bookmarks",
"column.community": "Local", "column.community": "Local",
"column.direct": "Mensagens diretas", "column.direct": "Mensagens diretas",
"column.domain_blocks": "Domínios escondidos", "column.domain_blocks": "Domínios escondidos",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Seguidores pendentes", "column.follow_requests": "Seguidores pendentes",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Página inicial", "column.home": "Página inicial",
"column.lists": "Listas", "column.lists": "Listas",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Usuários silenciados", "column.mutes": "Usuários silenciados",
"column.notifications": "Notificações", "column.notifications": "Notificações",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "Esse toot não será listado em nenhuma hashtag por ser não listado. Somente toots públicos podem ser pesquisados por hashtag.", "compose_form.hashtag_warning": "Esse toot não será listado em nenhuma hashtag por ser não listado. Somente toots públicos podem ser pesquisados por hashtag.",
"compose_form.lock_disclaimer": "A sua conta não está {locked}. Qualquer pessoa pode te seguir e visualizar postagens direcionadas a apenas seguidores.", "compose_form.lock_disclaimer": "A sua conta não está {locked}. Qualquer pessoa pode te seguir e visualizar postagens direcionadas a apenas seguidores.",
"compose_form.lock_disclaimer.lock": "trancada", "compose_form.lock_disclaimer.lock": "trancada",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "No que você está pensando?", "compose_form.placeholder": "No que você está pensando?",
"compose_form.poll.add_option": "Adicionar uma opção", "compose_form.poll.add_option": "Adicionar uma opção",
"compose_form.poll.duration": "Duração da enquete", "compose_form.poll.duration": "Duração da enquete",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "Não há toots aqui!", "empty_column.account_timeline": "Não há toots aqui!",
"empty_column.account_unavailable": "Perfil indisponível", "empty_column.account_unavailable": "Perfil indisponível",
"empty_column.blocks": "Você ainda não bloqueou nenhum usuário.", "empty_column.blocks": "Você ainda não bloqueou nenhum usuário.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "A timeline local está vazia. Escreva algo publicamente para começar!", "empty_column.community": "A timeline local está vazia. Escreva algo publicamente para começar!",
"empty_column.direct": "Você não tem nenhuma mensagem direta ainda. Quando você enviar ou receber uma, as mensagens aparecerão por aqui.", "empty_column.direct": "Você não tem nenhuma mensagem direta ainda. Quando você enviar ou receber uma, as mensagens aparecerão por aqui.",
"empty_column.domain_blocks": "Ainda não há nenhum domínio escondido.", "empty_column.domain_blocks": "Ainda não há nenhum domínio escondido.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Você ainda não silenciou nenhum usuário.", "empty_column.mutes": "Você ainda não silenciou nenhum usuário.",
"empty_column.notifications": "Você ainda não possui notificações. Interaja com outros usuários para começar a conversar.", "empty_column.notifications": "Você ainda não possui notificações. Interaja com outros usuários para começar a conversar.",
"empty_column.public": "Não há nada aqui! Escreva algo publicamente ou siga manualmente usuários de outras instâncias", "empty_column.public": "Não há nada aqui! Escreva algo publicamente ou siga manualmente usuários de outras instâncias",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Autorizar", "follow_request.authorize": "Autorizar",
"follow_request.reject": "Rejeitar", "follow_request.reject": "Rejeitar",
"getting_started.heading": "Primeiros passos", "getting_started.heading": "Primeiros passos",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "e {additional}", "hashtag.column_header.tag_mode.all": "e {additional}",
"hashtag.column_header.tag_mode.any": "ou {additional}", "hashtag.column_header.tag_mode.any": "ou {additional}",
"hashtag.column_header.tag_mode.none": "sem {additional}", "hashtag.column_header.tag_mode.none": "sem {additional}",
"home.column_settings.basic": "Básico", "home.column_settings.show_direct": "Show direct messages",
"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",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Suas listas", "lists.subheading": "Suas listas",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Carregando...", "loading_indicator.label": "Carregando...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Esconder/Mostrar", "media_gallery.toggle_visible": "Esconder/Mostrar",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Não encontrado", "missing_indicator.label": "Não encontrado",
"missing_indicator.sublabel": "Esse recurso não pôde ser encontrado", "missing_indicator.sublabel": "Esse recurso não pôde ser encontrado",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Esconder notificações deste usuário?", "mute_modal.hide_notifications": "Esconder notificações deste usuário?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Usuários bloqueados", "navigation_bar.blocks": "Usuários bloqueados",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Local", "navigation_bar.community_timeline": "Local",
"navigation_bar.compose": "Compor um novo toot", "navigation_bar.compose": "Compor um novo toot",
"navigation_bar.direct": "Mensagens diretas", "navigation_bar.direct": "Mensagens diretas",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Compartilhamento:", "notifications.column_settings.reblog": "Compartilhamento:",
"notifications.column_settings.show": "Mostrar nas colunas", "notifications.column_settings.show": "Mostrar nas colunas",
"notifications.column_settings.sound": "Reproduzir som", "notifications.column_settings.sound": "Reproduzir som",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "Tudo", "notifications.filter.all": "Tudo",
"notifications.filter.boosts": "Compartilhamentos", "notifications.filter.boosts": "Compartilhamentos",
"notifications.filter.favourites": "Favoritos", "notifications.filter.favourites": "Favoritos",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
@ -379,8 +440,12 @@
"search_results.statuses": "Posts", "search_results.statuses": "Posts",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}", "search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Abrir interface de moderação para @{name}", "status.admin_account": "Abrir interface de moderação para @{name}",
"status.admin_status": "Abrir esse status na interface de moderação", "status.admin_status": "Abrir esse status na interface de moderação",
"status.block": "Bloquear @{name}", "status.block": "Bloquear @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Desfazer compartilhamento", "status.cancel_reblog_private": "Desfazer compartilhamento",
"status.cannot_reblog": "Esta postagem não pode ser compartilhada", "status.cannot_reblog": "Esta postagem não pode ser compartilhada",
"status.copy": "Copiar o link para o status", "status.copy": "Copiar o link para o status",
@ -439,6 +510,7 @@
"status.show_more": "Mostrar mais", "status.show_more": "Mostrar mais",
"status.show_more_all": "Mostrar mais para todas as mensagens", "status.show_more_all": "Mostrar mais para todas as mensagens",
"status.show_thread": "Mostrar sequência", "status.show_thread": "Mostrar sequência",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Desativar silêncio desta conversa", "status.unmute_conversation": "Desativar silêncio desta conversa",
"status.unpin": "Desafixar do perfil", "status.unpin": "Desafixar do perfil",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Denunciar @{name}", "account.report": "Denunciar @{name}",
"account.requested": "A aguardar aprovação. Clique para cancelar o pedido de seguimento", "account.requested": "A aguardar aprovação. Clique para cancelar o pedido de seguimento",
"account.requested_small": "Awaiting approval",
"account.share": "Partilhar o perfil @{name}", "account.share": "Partilhar o perfil @{name}",
"account.show_reblogs": "Mostrar partilhas de @{name}", "account.show_reblogs": "Mostrar partilhas de @{name}",
"account.unblock": "Desbloquear @{name}", "account.unblock": "Desbloquear @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Algo de errado aconteceu enquanto este componente era carregado.", "bundle_modal_error.message": "Algo de errado aconteceu enquanto este componente era carregado.",
"bundle_modal_error.retry": "Tente de novo", "bundle_modal_error.retry": "Tente de novo",
"column.blocks": "Utilizadores Bloqueados", "column.blocks": "Utilizadores Bloqueados",
"column.bookmarks": "Bookmarks",
"column.community": "Cronologia local", "column.community": "Cronologia local",
"column.direct": "Mensagens directas", "column.direct": "Mensagens directas",
"column.domain_blocks": "Domínios escondidos", "column.domain_blocks": "Domínios escondidos",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Seguidores pendentes", "column.follow_requests": "Seguidores pendentes",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Início", "column.home": "Início",
"column.lists": "Listas", "column.lists": "Listas",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Utilizadores silenciados", "column.mutes": "Utilizadores silenciados",
"column.notifications": "Notificações", "column.notifications": "Notificações",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "Este toot não será listado em nenhuma hashtag por ser não listado. Apenas toots públics podem ser pesquisados por hashtag.", "compose_form.hashtag_warning": "Este toot não será listado em nenhuma hashtag por ser não listado. Apenas toots públics podem ser pesquisados por hashtag.",
"compose_form.lock_disclaimer": "A tua conta não está {locked}. Qualquer pessoa pode seguir-te e ver as publicações direcionadas apenas a seguidores.", "compose_form.lock_disclaimer": "A tua conta não está {locked}. Qualquer pessoa pode seguir-te e ver as publicações direcionadas apenas a seguidores.",
"compose_form.lock_disclaimer.lock": "bloqueado", "compose_form.lock_disclaimer.lock": "bloqueado",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "Em que estás a pensar?", "compose_form.placeholder": "Em que estás a pensar?",
"compose_form.poll.add_option": "Adicionar uma opção", "compose_form.poll.add_option": "Adicionar uma opção",
"compose_form.poll.duration": "Duração da votação", "compose_form.poll.duration": "Duração da votação",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "Sem toots por aqui!", "empty_column.account_timeline": "Sem toots por aqui!",
"empty_column.account_unavailable": "Perfil indisponível", "empty_column.account_unavailable": "Perfil indisponível",
"empty_column.blocks": "Ainda não bloqueaste qualquer utilizador.", "empty_column.blocks": "Ainda não bloqueaste qualquer utilizador.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "A timeline local está vazia. Escreve algo publicamente para começar!", "empty_column.community": "A timeline local está vazia. Escreve algo publicamente para começar!",
"empty_column.direct": "Ainda não tens qualquer mensagem directa. Quando enviares ou receberes alguma, ela irá aparecer aqui.", "empty_column.direct": "Ainda não tens qualquer mensagem directa. Quando enviares ou receberes alguma, ela irá aparecer aqui.",
"empty_column.domain_blocks": "Ainda não há qualquer domínio escondido.", "empty_column.domain_blocks": "Ainda não há qualquer domínio escondido.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Ainda não silenciaste qualquer utilizador.", "empty_column.mutes": "Ainda não silenciaste qualquer utilizador.",
"empty_column.notifications": "Não tens notificações. Interage com outros utilizadores para iniciar uma conversa.", "empty_column.notifications": "Não tens notificações. Interage com outros utilizadores para iniciar uma conversa.",
"empty_column.public": "Não há nada aqui! Escreve algo publicamente ou segue outros utilizadores para veres aqui os conteúdos públicos", "empty_column.public": "Não há nada aqui! Escreve algo publicamente ou segue outros utilizadores para veres aqui os conteúdos públicos",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Autorizar", "follow_request.authorize": "Autorizar",
"follow_request.reject": "Rejeitar", "follow_request.reject": "Rejeitar",
"getting_started.heading": "Primeiros passos", "getting_started.heading": "Primeiros passos",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "e {additional}", "hashtag.column_header.tag_mode.all": "e {additional}",
"hashtag.column_header.tag_mode.any": "ou {additional}", "hashtag.column_header.tag_mode.any": "ou {additional}",
"hashtag.column_header.tag_mode.none": "sem {additional}", "hashtag.column_header.tag_mode.none": "sem {additional}",
"home.column_settings.basic": "Básico", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "Mostrar boosts", "home.column_settings.show_reblogs": "Mostrar boosts",
"home.column_settings.show_replies": "Mostrar respostas", "home.column_settings.show_replies": "Mostrar respostas",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "As tuas listas", "lists.subheading": "As tuas listas",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "A carregar...", "loading_indicator.label": "A carregar...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Mostrar/ocultar", "media_gallery.toggle_visible": "Mostrar/ocultar",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Não encontrado", "missing_indicator.label": "Não encontrado",
"missing_indicator.sublabel": "Este recurso não foi encontrado", "missing_indicator.sublabel": "Este recurso não foi encontrado",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Esconder notificações deste utilizador?", "mute_modal.hide_notifications": "Esconder notificações deste utilizador?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Utilizadores bloqueados", "navigation_bar.blocks": "Utilizadores bloqueados",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Cronologia local", "navigation_bar.community_timeline": "Cronologia local",
"navigation_bar.compose": "Escrever novo toot", "navigation_bar.compose": "Escrever novo toot",
"navigation_bar.direct": "Mensagens directas", "navigation_bar.direct": "Mensagens directas",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Reposts:", "notifications.column_settings.reblog": "Reposts:",
"notifications.column_settings.show": "Mostrar na coluna", "notifications.column_settings.show": "Mostrar na coluna",
"notifications.column_settings.sound": "Reproduzir som", "notifications.column_settings.sound": "Reproduzir som",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "Todas", "notifications.filter.all": "Todas",
"notifications.filter.boosts": "Reposts", "notifications.filter.boosts": "Reposts",
"notifications.filter.favourites": "Favoritos", "notifications.filter.favourites": "Favoritos",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
@ -379,8 +440,12 @@
"search_results.statuses": "Posts", "search_results.statuses": "Posts",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}", "search_results.total": "{count, number} {count, plural, one {resultado} other {resultados}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Abrir a interface de moderação para @{name}", "status.admin_account": "Abrir a interface de moderação para @{name}",
"status.admin_status": "Abrir esta publicação na interface de moderação", "status.admin_status": "Abrir esta publicação na interface de moderação",
"status.block": "Bloquear @{name}", "status.block": "Bloquear @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Remover boost", "status.cancel_reblog_private": "Remover boost",
"status.cannot_reblog": "Não é possível fazer boost a esta publicação", "status.cannot_reblog": "Não é possível fazer boost a esta publicação",
"status.copy": "Copiar o link para a publicação", "status.copy": "Copiar o link para a publicação",
@ -439,6 +510,7 @@
"status.show_more": "Mostrar mais", "status.show_more": "Mostrar mais",
"status.show_more_all": "Mostrar mais para todas", "status.show_more_all": "Mostrar mais para todas",
"status.show_thread": "Mostrar conversa", "status.show_thread": "Mostrar conversa",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Deixar de silenciar esta conversa", "status.unmute_conversation": "Deixar de silenciar esta conversa",
"status.unpin": "Não fixar no perfil", "status.unpin": "Não fixar no perfil",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Raportează @{name}", "account.report": "Raportează @{name}",
"account.requested": "Se așteaptă aprobarea. Apasă pentru a anula cererea de urmărire", "account.requested": "Se așteaptă aprobarea. Apasă pentru a anula cererea de urmărire",
"account.requested_small": "Awaiting approval",
"account.share": "Distribuie profilul lui @{name}", "account.share": "Distribuie profilul lui @{name}",
"account.show_reblogs": "Arată redistribuirile de la @{name}", "account.show_reblogs": "Arată redistribuirile de la @{name}",
"account.unblock": "Deblochează @{name}", "account.unblock": "Deblochează @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Ceva nu a funcționat în timupul încărcării acestui component.", "bundle_modal_error.message": "Ceva nu a funcționat în timupul încărcării acestui component.",
"bundle_modal_error.retry": "Încearcă din nou", "bundle_modal_error.retry": "Încearcă din nou",
"column.blocks": "Utilizatori blocați", "column.blocks": "Utilizatori blocați",
"column.bookmarks": "Bookmarks",
"column.community": "Fluxul Local", "column.community": "Fluxul Local",
"column.direct": "Mesaje directe", "column.direct": "Mesaje directe",
"column.domain_blocks": "Domenii ascunse", "column.domain_blocks": "Domenii ascunse",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Cereri de urmărire", "column.follow_requests": "Cereri de urmărire",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Acasă", "column.home": "Acasă",
"column.lists": "Liste", "column.lists": "Liste",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Utilizatori opriți", "column.mutes": "Utilizatori opriți",
"column.notifications": "Notificări", "column.notifications": "Notificări",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "Această postare nu va fi listată sub nici un hastag. Doar postările publice pot fi găsite dupa un hastag.", "compose_form.hashtag_warning": "Această postare nu va fi listată sub nici un hastag. Doar postările publice pot fi găsite dupa un hastag.",
"compose_form.lock_disclaimer": "Contul tău nu este {locked}. Oricine te poate urmări fără aprobarea ta și vedea toate postările tale.", "compose_form.lock_disclaimer": "Contul tău nu este {locked}. Oricine te poate urmări fără aprobarea ta și vedea toate postările tale.",
"compose_form.lock_disclaimer.lock": "privat", "compose_form.lock_disclaimer.lock": "privat",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "La ce te gândești?", "compose_form.placeholder": "La ce te gândești?",
"compose_form.poll.add_option": "Add a choice", "compose_form.poll.add_option": "Add a choice",
"compose_form.poll.duration": "Poll duration", "compose_form.poll.duration": "Poll duration",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "Nici o postare aici!", "empty_column.account_timeline": "Nici o postare aici!",
"empty_column.account_unavailable": "Profile unavailable", "empty_column.account_unavailable": "Profile unavailable",
"empty_column.blocks": "Nu ai blocat nici un utilizator incă.", "empty_column.blocks": "Nu ai blocat nici un utilizator incă.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "Fluxul local este gol. Scrie ceva public pentru a împinge bila la vale!", "empty_column.community": "Fluxul local este gol. Scrie ceva public pentru a împinge bila la vale!",
"empty_column.direct": "Nu ai nici un mesaj direct incă. Când trimiți sau primești unul, va fi afișat aici.", "empty_column.direct": "Nu ai nici un mesaj direct incă. Când trimiți sau primești unul, va fi afișat aici.",
"empty_column.domain_blocks": "Nu sunt domenii ascunse incă.", "empty_column.domain_blocks": "Nu sunt domenii ascunse incă.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Nu ai oprit nici un utilizator incă.", "empty_column.mutes": "Nu ai oprit nici un utilizator incă.",
"empty_column.notifications": "Nu ai nici o notificare încă. Interacționează cu alții pentru a începe o conversație.", "empty_column.notifications": "Nu ai nici o notificare încă. Interacționează cu alții pentru a începe o conversație.",
"empty_column.public": "Nu este nimci aici încă! Scrie ceva public, sau urmărește alți utilizatori din alte instanțe pentru a porni fluxul", "empty_column.public": "Nu este nimci aici încă! Scrie ceva public, sau urmărește alți utilizatori din alte instanțe pentru a porni fluxul",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Autorizează", "follow_request.authorize": "Autorizează",
"follow_request.reject": "Respinge", "follow_request.reject": "Respinge",
"getting_started.heading": "Începe", "getting_started.heading": "Începe",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "și {additional}", "hashtag.column_header.tag_mode.all": "și {additional}",
"hashtag.column_header.tag_mode.any": "sau {additional}", "hashtag.column_header.tag_mode.any": "sau {additional}",
"hashtag.column_header.tag_mode.none": "fără {additional}", "hashtag.column_header.tag_mode.none": "fără {additional}",
"home.column_settings.basic": "De bază", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "Arată redistribuirile", "home.column_settings.show_reblogs": "Arată redistribuirile",
"home.column_settings.show_replies": "Arată răspunsurile", "home.column_settings.show_replies": "Arată răspunsurile",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Listele tale", "lists.subheading": "Listele tale",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Încărcare...", "loading_indicator.label": "Încărcare...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Comutați vizibilitatea", "media_gallery.toggle_visible": "Comutați vizibilitatea",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Nu a fost găsit", "missing_indicator.label": "Nu a fost găsit",
"missing_indicator.sublabel": "Această resursă nu a putut fi găsită", "missing_indicator.sublabel": "Această resursă nu a putut fi găsită",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Ascunzi notificările de la acest utilizator?", "mute_modal.hide_notifications": "Ascunzi notificările de la acest utilizator?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Utilizatori blocați", "navigation_bar.blocks": "Utilizatori blocați",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Flux local", "navigation_bar.community_timeline": "Flux local",
"navigation_bar.compose": "Compune o nouă postare", "navigation_bar.compose": "Compune o nouă postare",
"navigation_bar.direct": "Mesaje directe", "navigation_bar.direct": "Mesaje directe",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Redistribuite:", "notifications.column_settings.reblog": "Redistribuite:",
"notifications.column_settings.show": "Arată în coloană", "notifications.column_settings.show": "Arată în coloană",
"notifications.column_settings.sound": "Redă sunet", "notifications.column_settings.sound": "Redă sunet",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "Toate", "notifications.filter.all": "Toate",
"notifications.filter.boosts": "Redistribuiri", "notifications.filter.boosts": "Redistribuiri",
"notifications.filter.favourites": "Favorite", "notifications.filter.favourites": "Favorite",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}z", "relative_time.days": "{number}z",
@ -379,8 +440,12 @@
"search_results.statuses": "Postări", "search_results.statuses": "Postări",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {result} other {results}}", "search_results.total": "{count, number} {count, plural, one {result} other {results}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Open moderation interface for @{name}", "status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface", "status.admin_status": "Open this post in the moderation interface",
"status.block": "Blochează @{name}", "status.block": "Blochează @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Nedistribuit", "status.cancel_reblog_private": "Nedistribuit",
"status.cannot_reblog": "Această postare nu poate fi redistribuită", "status.cannot_reblog": "Această postare nu poate fi redistribuită",
"status.copy": "Copy link to post", "status.copy": "Copy link to post",
@ -439,6 +510,7 @@
"status.show_more": "Arată mai mult", "status.show_more": "Arată mai mult",
"status.show_more_all": "Arată mai mult pentru toți", "status.show_more_all": "Arată mai mult pentru toți",
"status.show_thread": "Arată topicul", "status.show_thread": "Arată topicul",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Repornește conversația", "status.unmute_conversation": "Repornește conversația",
"status.unpin": "Eliberează din profil", "status.unpin": "Eliberează din profil",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Пожаловаться", "account.report": "Пожаловаться",
"account.requested": "Ожидает подтверждения. Нажмите для отмены", "account.requested": "Ожидает подтверждения. Нажмите для отмены",
"account.requested_small": "Awaiting approval",
"account.share": "Поделиться профилем @{name}", "account.share": "Поделиться профилем @{name}",
"account.show_reblogs": "Показывать продвижения от @{name}", "account.show_reblogs": "Показывать продвижения от @{name}",
"account.unblock": "Разблокировать", "account.unblock": "Разблокировать",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Что-то пошло не так при загрузке этого компонента.", "bundle_modal_error.message": "Что-то пошло не так при загрузке этого компонента.",
"bundle_modal_error.retry": "Попробовать снова", "bundle_modal_error.retry": "Попробовать снова",
"column.blocks": "Список блокировки", "column.blocks": "Список блокировки",
"column.bookmarks": "Bookmarks",
"column.community": "Локальная лента", "column.community": "Локальная лента",
"column.direct": "Личные сообщения", "column.direct": "Личные сообщения",
"column.domain_blocks": "Скрытые домены", "column.domain_blocks": "Скрытые домены",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Запросы на подписку", "column.follow_requests": "Запросы на подписку",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Главная", "column.home": "Главная",
"column.lists": "Списки", "column.lists": "Списки",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Список скрытых пользователей", "column.mutes": "Список скрытых пользователей",
"column.notifications": "Уведомления", "column.notifications": "Уведомления",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"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.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "О чем вы думаете?", "compose_form.placeholder": "О чем вы думаете?",
"compose_form.poll.add_option": "Добавить", "compose_form.poll.add_option": "Добавить",
"compose_form.poll.duration": "Длительность опроса", "compose_form.poll.duration": "Длительность опроса",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "Здесь нет постов!", "empty_column.account_timeline": "Здесь нет постов!",
"empty_column.account_unavailable": "Профиль недоступен", "empty_column.account_unavailable": "Профиль недоступен",
"empty_column.blocks": "Вы ещё никого не заблокировали.", "empty_column.blocks": "Вы ещё никого не заблокировали.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "Локальная лента пуста. Напишите что-нибудь, чтобы разогреть народ!", "empty_column.community": "Локальная лента пуста. Напишите что-нибудь, чтобы разогреть народ!",
"empty_column.direct": "У вас пока нет личных сообщений. Как только вы отправите или получите одно, оно появится здесь.", "empty_column.direct": "У вас пока нет личных сообщений. Как только вы отправите или получите одно, оно появится здесь.",
"empty_column.domain_blocks": "Скрытых доменов пока нет.", "empty_column.domain_blocks": "Скрытых доменов пока нет.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Вы ещё никого не скрывали.", "empty_column.mutes": "Вы ещё никого не скрывали.",
"empty_column.notifications": "У вас пока нет уведомлений. Взаимодействуйте с другими, чтобы завести разговор.", "empty_column.notifications": "У вас пока нет уведомлений. Взаимодействуйте с другими, чтобы завести разговор.",
"empty_column.public": "Здесь ничего нет! Опубликуйте что-нибудь или подпишитесь на пользователей с других узлов, чтобы заполнить ленту.", "empty_column.public": "Здесь ничего нет! Опубликуйте что-нибудь или подпишитесь на пользователей с других узлов, чтобы заполнить ленту.",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Авторизовать", "follow_request.authorize": "Авторизовать",
"follow_request.reject": "Отказать", "follow_request.reject": "Отказать",
"getting_started.heading": "Добро пожаловать", "getting_started.heading": "Добро пожаловать",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "и {additional}", "hashtag.column_header.tag_mode.all": "и {additional}",
"hashtag.column_header.tag_mode.any": "или {additional}", "hashtag.column_header.tag_mode.any": "или {additional}",
"hashtag.column_header.tag_mode.none": "без {additional}", "hashtag.column_header.tag_mode.none": "без {additional}",
"home.column_settings.basic": "Основные", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "Показывать продвижения", "home.column_settings.show_reblogs": "Показывать продвижения",
"home.column_settings.show_replies": "Показывать ответы", "home.column_settings.show_replies": "Показывать ответы",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Ваши списки", "lists.subheading": "Ваши списки",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Загрузка...", "loading_indicator.label": "Загрузка...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Показать/скрыть", "media_gallery.toggle_visible": "Показать/скрыть",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Не найдено", "missing_indicator.label": "Не найдено",
"missing_indicator.sublabel": "Запрашиваемый ресурс не найден", "missing_indicator.sublabel": "Запрашиваемый ресурс не найден",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Убрать уведомления от этого пользователя?", "mute_modal.hide_notifications": "Убрать уведомления от этого пользователя?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Список блокировки", "navigation_bar.blocks": "Список блокировки",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Локальная лента", "navigation_bar.community_timeline": "Локальная лента",
"navigation_bar.compose": "Создать новый статус", "navigation_bar.compose": "Создать новый статус",
"navigation_bar.direct": "Личные сообщения", "navigation_bar.direct": "Личные сообщения",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Продвижения:", "notifications.column_settings.reblog": "Продвижения:",
"notifications.column_settings.show": "Показывать в колонке", "notifications.column_settings.show": "Показывать в колонке",
"notifications.column_settings.sound": "Проигрывать звук", "notifications.column_settings.sound": "Проигрывать звук",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "Все", "notifications.filter.all": "Все",
"notifications.filter.boosts": "Продвижения", "notifications.filter.boosts": "Продвижения",
"notifications.filter.favourites": "Отметки \"нравится\"", "notifications.filter.favourites": "Отметки \"нравится\"",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}д", "relative_time.days": "{number}д",
@ -379,8 +440,12 @@
"search_results.statuses": "Посты", "search_results.statuses": "Посты",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {результат} few {результата} many {результатов} other {результатов}}", "search_results.total": "{count, number} {count, plural, one {результат} few {результата} many {результатов} other {результатов}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Открыть интерфейс модератора для @{name}", "status.admin_account": "Открыть интерфейс модератора для @{name}",
"status.admin_status": "Открыть этот статус в интерфейсе модератора", "status.admin_status": "Открыть этот статус в интерфейсе модератора",
"status.block": "Заблокировать @{name}", "status.block": "Заблокировать @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Не продвигать", "status.cancel_reblog_private": "Не продвигать",
"status.cannot_reblog": "Этот статус не может быть продвинут", "status.cannot_reblog": "Этот статус не может быть продвинут",
"status.copy": "Копировать ссылку на запись", "status.copy": "Копировать ссылку на запись",
@ -439,6 +510,7 @@
"status.show_more": "Развернуть", "status.show_more": "Развернуть",
"status.show_more_all": "Развернуть для всех", "status.show_more_all": "Развернуть для всех",
"status.show_thread": "Показать обсуждение", "status.show_thread": "Показать обсуждение",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Снять глушение с обсуждения", "status.unmute_conversation": "Снять глушение с обсуждения",
"status.unpin": "Открепить от профиля", "status.unpin": "Открепить от профиля",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Nahlás @{name}", "account.report": "Nahlás @{name}",
"account.requested": "Čaká na schválenie. Klikni pre zrušenie žiadosti", "account.requested": "Čaká na schválenie. Klikni pre zrušenie žiadosti",
"account.requested_small": "Awaiting approval",
"account.share": "Zdieľaj @{name} profil", "account.share": "Zdieľaj @{name} profil",
"account.show_reblogs": "Ukáž vyzdvihnutia od @{name}", "account.show_reblogs": "Ukáž vyzdvihnutia od @{name}",
"account.unblock": "Odblokuj @{name}", "account.unblock": "Odblokuj @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Nastala chyba pri načítaní tohto komponentu.", "bundle_modal_error.message": "Nastala chyba pri načítaní tohto komponentu.",
"bundle_modal_error.retry": "Skúsiť znova", "bundle_modal_error.retry": "Skúsiť znova",
"column.blocks": "Blokovaní užívatelia", "column.blocks": "Blokovaní užívatelia",
"column.bookmarks": "Bookmarks",
"column.community": "Miestna časová os", "column.community": "Miestna časová os",
"column.direct": "Súkromné správy", "column.direct": "Súkromné správy",
"column.domain_blocks": "Skryté domény", "column.domain_blocks": "Skryté domény",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Žiadosti o sledovanie", "column.follow_requests": "Žiadosti o sledovanie",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Domov", "column.home": "Domov",
"column.lists": "Zoznamy", "column.lists": "Zoznamy",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Ignorovaní užívatelia", "column.mutes": "Ignorovaní užívatelia",
"column.notifications": "Oboznámenia", "column.notifications": "Oboznámenia",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "Tento toot nebude zobrazený pod žiadným haštagom lebo nieje listovaný. Iba verejné tooty môžu byť nájdené podľa haštagu.", "compose_form.hashtag_warning": "Tento toot nebude zobrazený pod žiadným haštagom lebo nieje listovaný. Iba verejné tooty môžu byť nájdené podľa haštagu.",
"compose_form.lock_disclaimer": "Tvoj účet nie je {locked}. Ktokoľvek ťa môže nasledovať a vidieť tvoje správy pre sledujúcich.", "compose_form.lock_disclaimer": "Tvoj účet nie je {locked}. Ktokoľvek ťa môže nasledovať a vidieť tvoje správy pre sledujúcich.",
"compose_form.lock_disclaimer.lock": "zamknutý", "compose_form.lock_disclaimer.lock": "zamknutý",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "Čo máš na mysli?", "compose_form.placeholder": "Čo máš na mysli?",
"compose_form.poll.add_option": "Pridaj voľbu", "compose_form.poll.add_option": "Pridaj voľbu",
"compose_form.poll.duration": "Trvanie ankety", "compose_form.poll.duration": "Trvanie ankety",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "Niesú tu žiadne príspevky!", "empty_column.account_timeline": "Niesú tu žiadne príspevky!",
"empty_column.account_unavailable": "Profil nedostupný", "empty_column.account_unavailable": "Profil nedostupný",
"empty_column.blocks": "Ešte si nikoho nezablokoval/a.", "empty_column.blocks": "Ešte si nikoho nezablokoval/a.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "Lokálna časová os je prázdna. Napíšte niečo, aby sa to tu začalo hýbať!", "empty_column.community": "Lokálna časová os je prázdna. Napíšte niečo, aby sa to tu začalo hýbať!",
"empty_column.direct": "Ešte nemáš žiadne súkromné správy. Keď nejakú pošleš, alebo dostaneš, ukáže sa tu.", "empty_column.direct": "Ešte nemáš žiadne súkromné správy. Keď nejakú pošleš, alebo dostaneš, ukáže sa tu.",
"empty_column.domain_blocks": "Žiadne domény ešte niesú skryté.", "empty_column.domain_blocks": "Žiadne domény ešte niesú skryté.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Ešte si nestĺmil žiadných užívateľov.", "empty_column.mutes": "Ešte si nestĺmil žiadných užívateľov.",
"empty_column.notifications": "Ešte nemáš žiadne oznámenia. Začni komunikovať s ostatnými, aby diskusia mohla začať.", "empty_column.notifications": "Ešte nemáš žiadne oznámenia. Začni komunikovať s ostatnými, aby diskusia mohla začať.",
"empty_column.public": "Ešte tu nič nie je. Napíš niečo verejne, alebo začni sledovať užívateľov z iných serverov, aby tu niečo pribudlo", "empty_column.public": "Ešte tu nič nie je. Napíš niečo verejne, alebo začni sledovať užívateľov z iných serverov, aby tu niečo pribudlo",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Povoľ prístup", "follow_request.authorize": "Povoľ prístup",
"follow_request.reject": "Odmietni", "follow_request.reject": "Odmietni",
"getting_started.heading": "Začni tu", "getting_started.heading": "Začni tu",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "a {additional}", "hashtag.column_header.tag_mode.all": "a {additional}",
"hashtag.column_header.tag_mode.any": "alebo {additional}", "hashtag.column_header.tag_mode.any": "alebo {additional}",
"hashtag.column_header.tag_mode.none": "bez {additional}", "hashtag.column_header.tag_mode.none": "bez {additional}",
"home.column_settings.basic": "Základné", "home.column_settings.show_direct": "Show direct messages",
"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",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Tvoje zoznamy", "lists.subheading": "Tvoje zoznamy",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Načítam...", "loading_indicator.label": "Načítam...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Zapni/Vypni viditeľnosť", "media_gallery.toggle_visible": "Zapni/Vypni viditeľnosť",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Nenájdené", "missing_indicator.label": "Nenájdené",
"missing_indicator.sublabel": "Tento zdroj sa ešte nepodarilo nájsť", "missing_indicator.sublabel": "Tento zdroj sa ešte nepodarilo nájsť",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Skry oznámenia od tohto používateľa?", "mute_modal.hide_notifications": "Skry oznámenia od tohto používateľa?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Blokovaní užívatelia", "navigation_bar.blocks": "Blokovaní užívatelia",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Miestna časová os", "navigation_bar.community_timeline": "Miestna časová os",
"navigation_bar.compose": "Napíš nový príspevok", "navigation_bar.compose": "Napíš nový príspevok",
"navigation_bar.direct": "Súkromné správy", "navigation_bar.direct": "Súkromné správy",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Vyzdvihnutia:", "notifications.column_settings.reblog": "Vyzdvihnutia:",
"notifications.column_settings.show": "Zobraz v stĺpci", "notifications.column_settings.show": "Zobraz v stĺpci",
"notifications.column_settings.sound": "Prehraj zvuk", "notifications.column_settings.sound": "Prehraj zvuk",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "Všetky", "notifications.filter.all": "Všetky",
"notifications.filter.boosts": "Vyzdvihnutia", "notifications.filter.boosts": "Vyzdvihnutia",
"notifications.filter.favourites": "Obľúbené", "notifications.filter.favourites": "Obľúbené",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}dní", "relative_time.days": "{number}dní",
@ -379,8 +440,12 @@
"search_results.statuses": "Príspevky", "search_results.statuses": "Príspevky",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {výsledok} many {výsledkov} other {výsledky}}", "search_results.total": "{count, number} {count, plural, one {výsledok} many {výsledkov} other {výsledky}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Otvor moderovacie rozhranie užívateľa @{name}", "status.admin_account": "Otvor moderovacie rozhranie užívateľa @{name}",
"status.admin_status": "Otvor tento príspevok v moderovacom rozhraní", "status.admin_status": "Otvor tento príspevok v moderovacom rozhraní",
"status.block": "Blokuj @{name}", "status.block": "Blokuj @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Nezdieľaj", "status.cancel_reblog_private": "Nezdieľaj",
"status.cannot_reblog": "Tento príspevok nemôže byť zdieľaný", "status.cannot_reblog": "Tento príspevok nemôže byť zdieľaný",
"status.copy": "Skopíruj odkaz na príspevok", "status.copy": "Skopíruj odkaz na príspevok",
@ -439,6 +510,7 @@
"status.show_more": "Ukáž viac", "status.show_more": "Ukáž viac",
"status.show_more_all": "Všetkým ukáž viac", "status.show_more_all": "Všetkým ukáž viac",
"status.show_thread": "Ukáž diskusné vlákno", "status.show_thread": "Ukáž diskusné vlákno",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Prestaň ignorovať konverzáciu", "status.unmute_conversation": "Prestaň ignorovať konverzáciu",
"status.unpin": "Odopni z profilu", "status.unpin": "Odopni z profilu",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Prijavi @{name}", "account.report": "Prijavi @{name}",
"account.requested": "Čakanje na odobritev. Kliknite, da prekličete prošnjo za sledenje", "account.requested": "Čakanje na odobritev. Kliknite, da prekličete prošnjo za sledenje",
"account.requested_small": "Awaiting approval",
"account.share": "Delite profil osebe @{name}", "account.share": "Delite profil osebe @{name}",
"account.show_reblogs": "Pokaži spodbude osebe @{name}", "account.show_reblogs": "Pokaži spodbude osebe @{name}",
"account.unblock": "Odblokiraj @{name}", "account.unblock": "Odblokiraj @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Med nalaganjem te komponente je prišlo do napake.", "bundle_modal_error.message": "Med nalaganjem te komponente je prišlo do napake.",
"bundle_modal_error.retry": "Poskusi ponovno", "bundle_modal_error.retry": "Poskusi ponovno",
"column.blocks": "Blokirani uporabniki", "column.blocks": "Blokirani uporabniki",
"column.bookmarks": "Bookmarks",
"column.community": "Lokalna časovnica", "column.community": "Lokalna časovnica",
"column.direct": "Neposredna sporočila", "column.direct": "Neposredna sporočila",
"column.domain_blocks": "Skrite domene", "column.domain_blocks": "Skrite domene",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Sledi prošnjam", "column.follow_requests": "Sledi prošnjam",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Domov", "column.home": "Domov",
"column.lists": "Seznami", "column.lists": "Seznami",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Utišani uporabniki", "column.mutes": "Utišani uporabniki",
"column.notifications": "Obvestila", "column.notifications": "Obvestila",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "Ta tut ne bo naveden pod nobenim ključnikom, ker ni javen. Samo javne tute lahko iščete s ključniki.", "compose_form.hashtag_warning": "Ta tut ne bo naveden pod nobenim ključnikom, ker ni javen. Samo javne tute lahko iščete s ključniki.",
"compose_form.lock_disclaimer": "Vaš račun ni {locked}. Vsakdo vam lahko sledi in si ogleda objave, ki so namenjene samo sledilcem.", "compose_form.lock_disclaimer": "Vaš račun ni {locked}. Vsakdo vam lahko sledi in si ogleda objave, ki so namenjene samo sledilcem.",
"compose_form.lock_disclaimer.lock": "zaklenjen", "compose_form.lock_disclaimer.lock": "zaklenjen",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "O čem razmišljaš?", "compose_form.placeholder": "O čem razmišljaš?",
"compose_form.poll.add_option": "Dodaj izbiro", "compose_form.poll.add_option": "Dodaj izbiro",
"compose_form.poll.duration": "Trajanje ankete", "compose_form.poll.duration": "Trajanje ankete",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "Tukaj ni tutov!", "empty_column.account_timeline": "Tukaj ni tutov!",
"empty_column.account_unavailable": "Profil ni na voljo", "empty_column.account_unavailable": "Profil ni na voljo",
"empty_column.blocks": "Niste še blokirali nobenega uporabnika.", "empty_column.blocks": "Niste še blokirali nobenega uporabnika.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "Lokalna časovnica je prazna. Napišite nekaj javnega, da se bo žoga zakotalila!", "empty_column.community": "Lokalna časovnica je prazna. Napišite nekaj javnega, da se bo žoga zakotalila!",
"empty_column.direct": "Nimate še nobenih neposrednih sporočil. Ko ga boste poslali ali prejeli, se bo prikazal tukaj.", "empty_column.direct": "Nimate še nobenih neposrednih sporočil. Ko ga boste poslali ali prejeli, se bo prikazal tukaj.",
"empty_column.domain_blocks": "Še vedno ni skritih domen.", "empty_column.domain_blocks": "Še vedno ni skritih domen.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Niste utišali še nobenega uporabnika.", "empty_column.mutes": "Niste utišali še nobenega uporabnika.",
"empty_column.notifications": "Nimate še nobenih obvestil. Povežite se z drugimi, da začnete pogovor.", "empty_column.notifications": "Nimate še nobenih obvestil. Povežite se z drugimi, da začnete pogovor.",
"empty_column.public": "Tukaj ni ničesar! Da ga napolnite, napišite nekaj javnega ali pa ročno sledite uporabnikom iz drugih strežnikov", "empty_column.public": "Tukaj ni ničesar! Da ga napolnite, napišite nekaj javnega ali pa ročno sledite uporabnikom iz drugih strežnikov",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Overi", "follow_request.authorize": "Overi",
"follow_request.reject": "Zavrni", "follow_request.reject": "Zavrni",
"getting_started.heading": "Kako začeti", "getting_started.heading": "Kako začeti",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "in {additional}", "hashtag.column_header.tag_mode.all": "in {additional}",
"hashtag.column_header.tag_mode.any": "ali {additional}", "hashtag.column_header.tag_mode.any": "ali {additional}",
"hashtag.column_header.tag_mode.none": "brez {additional}", "hashtag.column_header.tag_mode.none": "brez {additional}",
"home.column_settings.basic": "Osnovno", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "Pokaži spodbude", "home.column_settings.show_reblogs": "Pokaži spodbude",
"home.column_settings.show_replies": "Pokaži odgovore", "home.column_settings.show_replies": "Pokaži odgovore",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Vaši seznami", "lists.subheading": "Vaši seznami",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Nalaganje...", "loading_indicator.label": "Nalaganje...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Preklopi vidljivost", "media_gallery.toggle_visible": "Preklopi vidljivost",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Ni najdeno", "missing_indicator.label": "Ni najdeno",
"missing_indicator.sublabel": "Tega vira ni bilo mogoče najti", "missing_indicator.sublabel": "Tega vira ni bilo mogoče najti",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Skrij obvestila tega uporabnika?", "mute_modal.hide_notifications": "Skrij obvestila tega uporabnika?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Blokirani uporabniki", "navigation_bar.blocks": "Blokirani uporabniki",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Lokalna časovnica", "navigation_bar.community_timeline": "Lokalna časovnica",
"navigation_bar.compose": "Sestavi nov tut", "navigation_bar.compose": "Sestavi nov tut",
"navigation_bar.direct": "Neposredna sporočila", "navigation_bar.direct": "Neposredna sporočila",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Spodbude:", "notifications.column_settings.reblog": "Spodbude:",
"notifications.column_settings.show": "Prikaži v stolpcu", "notifications.column_settings.show": "Prikaži v stolpcu",
"notifications.column_settings.sound": "Predvajaj zvok", "notifications.column_settings.sound": "Predvajaj zvok",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "Vse", "notifications.filter.all": "Vse",
"notifications.filter.boosts": "Spodbude", "notifications.filter.boosts": "Spodbude",
"notifications.filter.favourites": "Priljubljeni", "notifications.filter.favourites": "Priljubljeni",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
@ -379,8 +440,12 @@
"search_results.statuses": "Tuti", "search_results.statuses": "Tuti",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {rezultat} other {rezultatov}}", "search_results.total": "{count, number} {count, plural, one {rezultat} other {rezultatov}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Odpri vmesnik za moderiranje za @{name}", "status.admin_account": "Odpri vmesnik za moderiranje za @{name}",
"status.admin_status": "Odpri status v vmesniku za moderiranje", "status.admin_status": "Odpri status v vmesniku za moderiranje",
"status.block": "Blokiraj @{name}", "status.block": "Blokiraj @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Prekini spodbudo", "status.cancel_reblog_private": "Prekini spodbudo",
"status.cannot_reblog": "Te objave ni mogoče spodbuditi", "status.cannot_reblog": "Te objave ni mogoče spodbuditi",
"status.copy": "Kopiraj povezavo do statusa", "status.copy": "Kopiraj povezavo do statusa",
@ -439,6 +510,7 @@
"status.show_more": "Prikaži več", "status.show_more": "Prikaži več",
"status.show_more_all": "Prikaži več za vse", "status.show_more_all": "Prikaži več za vse",
"status.show_thread": "Prikaži objavo", "status.show_thread": "Prikaži objavo",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Odtišaj pogovor", "status.unmute_conversation": "Odtišaj pogovor",
"status.unpin": "Odpni iz profila", "status.unpin": "Odpni iz profila",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Raportojeni @{name}", "account.report": "Raportojeni @{name}",
"account.requested": "Në pritje të miratimit. Klikoni që të anulohet kërkesa për ndjekje", "account.requested": "Në pritje të miratimit. Klikoni që të anulohet kërkesa për ndjekje",
"account.requested_small": "Awaiting approval",
"account.share": "Ndajeni profilin e @{name} me të tjerët", "account.share": "Ndajeni profilin e @{name} me të tjerët",
"account.show_reblogs": "Shfaq përforcime nga @{name}", "account.show_reblogs": "Shfaq përforcime nga @{name}",
"account.unblock": "Zhbllokoje @{name}", "account.unblock": "Zhbllokoje @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Diç shkoi ters teksa ngarkohej ky përbërës.", "bundle_modal_error.message": "Diç shkoi ters teksa ngarkohej ky përbërës.",
"bundle_modal_error.retry": "Riprovoni", "bundle_modal_error.retry": "Riprovoni",
"column.blocks": "Përdorues të bllokuar", "column.blocks": "Përdorues të bllokuar",
"column.bookmarks": "Bookmarks",
"column.community": "Rrjedhë kohore vendore", "column.community": "Rrjedhë kohore vendore",
"column.direct": "Mesazhe të drejtpërdrejta", "column.direct": "Mesazhe të drejtpërdrejta",
"column.domain_blocks": "Përkatësi të fshehura", "column.domain_blocks": "Përkatësi të fshehura",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Kërkesa për ndjekje", "column.follow_requests": "Kërkesa për ndjekje",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Kreu", "column.home": "Kreu",
"column.lists": "Lista", "column.lists": "Lista",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Përdorues të heshtuar", "column.mutes": "Përdorues të heshtuar",
"column.notifications": "Njoftime", "column.notifications": "Njoftime",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "Ky mesazh sdo të paraqitet nën ndonjë hashtag, ngaqë si është caktuar ndonjë. Vetëm mesazhet publike mund të kërkohen sipas hashtagësh.", "compose_form.hashtag_warning": "Ky mesazh sdo të paraqitet nën ndonjë hashtag, ngaqë si është caktuar ndonjë. Vetëm mesazhet publike mund të kërkohen sipas hashtagësh.",
"compose_form.lock_disclaimer": "Llogaria juaj sështë {locked}. Mund ta ndjekë cilido, për të parë postimet tuaja vetëm për ndjekësit.", "compose_form.lock_disclaimer": "Llogaria juaj sështë {locked}. Mund ta ndjekë cilido, për të parë postimet tuaja vetëm për ndjekësit.",
"compose_form.lock_disclaimer.lock": "e bllokuar", "compose_form.lock_disclaimer.lock": "e bllokuar",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": bluani në mendje?", "compose_form.placeholder": bluani në mendje?",
"compose_form.poll.add_option": "Add a choice", "compose_form.poll.add_option": "Add a choice",
"compose_form.poll.duration": "Poll duration", "compose_form.poll.duration": "Poll duration",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "Ska mesazhe këtu!", "empty_column.account_timeline": "Ska mesazhe këtu!",
"empty_column.account_unavailable": "Profile unavailable", "empty_column.account_unavailable": "Profile unavailable",
"empty_column.blocks": "Skeni bllokuar ende ndonjë përdorues.", "empty_column.blocks": "Skeni bllokuar ende ndonjë përdorues.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "Rrjedha kohore vendore është e zbrazët. Shkruani diçka publikisht që ti hyhet valles!", "empty_column.community": "Rrjedha kohore vendore është e zbrazët. Shkruani diçka publikisht që ti hyhet valles!",
"empty_column.direct": "Skeni ende ndonjë mesazh të drejtpërdrejt. Kur dërgoni ose merrni një të tillë, ai do të shfaqet këtu.", "empty_column.direct": "Skeni ende ndonjë mesazh të drejtpërdrejt. Kur dërgoni ose merrni një të tillë, ai do të shfaqet këtu.",
"empty_column.domain_blocks": "Ende ska përkatësi të fshehura.", "empty_column.domain_blocks": "Ende ska përkatësi të fshehura.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Skeni heshtuar ende ndonjë përdorues.", "empty_column.mutes": "Skeni heshtuar ende ndonjë përdorues.",
"empty_column.notifications": "Ende skeni ndonjë njoftim. Ndërveproni me të tjerët që të nisë biseda.", "empty_column.notifications": "Ende skeni ndonjë njoftim. Ndërveproni me të tjerët që të nisë biseda.",
"empty_column.public": "Ska gjë këtu! Shkruani diçka publikisht, ose ndiqni dorazi përdorues prej instancash të tjera, që ta mbushni këtë zonë", "empty_column.public": "Ska gjë këtu! Shkruani diçka publikisht, ose ndiqni dorazi përdorues prej instancash të tjera, që ta mbushni këtë zonë",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Autorizoje", "follow_request.authorize": "Autorizoje",
"follow_request.reject": "Hidhe tej", "follow_request.reject": "Hidhe tej",
"getting_started.heading": "Si tia fillohet", "getting_started.heading": "Si tia fillohet",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "dhe {additional}", "hashtag.column_header.tag_mode.all": "dhe {additional}",
"hashtag.column_header.tag_mode.any": "ose {additional}", "hashtag.column_header.tag_mode.any": "ose {additional}",
"hashtag.column_header.tag_mode.none": "pa {additional}", "hashtag.column_header.tag_mode.none": "pa {additional}",
"home.column_settings.basic": "Bazë", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "Shfaq përforcime", "home.column_settings.show_reblogs": "Shfaq përforcime",
"home.column_settings.show_replies": "Shfaq përgjigje", "home.column_settings.show_replies": "Shfaq përgjigje",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Listat tuaja", "lists.subheading": "Listat tuaja",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Po ngarkohet…", "loading_indicator.label": "Po ngarkohet…",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Ndërroni dukshmërinë", "media_gallery.toggle_visible": "Ndërroni dukshmërinë",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Su gjet", "missing_indicator.label": "Su gjet",
"missing_indicator.sublabel": "Ky burim su gjet dot", "missing_indicator.sublabel": "Ky burim su gjet dot",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Të fshihen njoftimet prej këtij përdoruesi?", "mute_modal.hide_notifications": "Të fshihen njoftimet prej këtij përdoruesi?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Përdorues të bllokuar", "navigation_bar.blocks": "Përdorues të bllokuar",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Rrjedhë kohore vendore", "navigation_bar.community_timeline": "Rrjedhë kohore vendore",
"navigation_bar.compose": "Hartoni mesazh të ri", "navigation_bar.compose": "Hartoni mesazh të ri",
"navigation_bar.direct": "Mesazhe të drejtpërdrejta", "navigation_bar.direct": "Mesazhe të drejtpërdrejta",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Përforcime:", "notifications.column_settings.reblog": "Përforcime:",
"notifications.column_settings.show": "Shfaq në shtylla", "notifications.column_settings.show": "Shfaq në shtylla",
"notifications.column_settings.sound": "Luaj një tingull", "notifications.column_settings.sound": "Luaj një tingull",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "Krejt", "notifications.filter.all": "Krejt",
"notifications.filter.boosts": "Përforcime", "notifications.filter.boosts": "Përforcime",
"notifications.filter.favourites": "Të parapëlqyer", "notifications.filter.favourites": "Të parapëlqyer",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
@ -379,8 +440,12 @@
"search_results.statuses": "Mesazhe", "search_results.statuses": "Mesazhe",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {rezultat} other {rezultate}}", "search_results.total": "{count, number} {count, plural, one {rezultat} other {rezultate}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Hap ndërfaqe moderimi për @{name}", "status.admin_account": "Hap ndërfaqe moderimi për @{name}",
"status.admin_status": "Hape këtë gjendje te ndërfaqja e moderimit", "status.admin_status": "Hape këtë gjendje te ndërfaqja e moderimit",
"status.block": "Blloko @{name}", "status.block": "Blloko @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Shpërforcojeni", "status.cancel_reblog_private": "Shpërforcojeni",
"status.cannot_reblog": "Ky postim smund të përforcohet", "status.cannot_reblog": "Ky postim smund të përforcohet",
"status.copy": "Kopjoje lidhjen te gjendje", "status.copy": "Kopjoje lidhjen te gjendje",
@ -439,6 +510,7 @@
"status.show_more": "Shfaq më tepër", "status.show_more": "Shfaq më tepër",
"status.show_more_all": "Shfaq më tepër për të tërë", "status.show_more_all": "Shfaq më tepër për të tërë",
"status.show_thread": "Shfaq rrjedhën", "status.show_thread": "Shfaq rrjedhën",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Ktheji zërin bisedës", "status.unmute_conversation": "Ktheji zërin bisedës",
"status.unpin": "Shfiksoje nga profili", "status.unpin": "Shfiksoje nga profili",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Prijavi @{name}", "account.report": "Prijavi @{name}",
"account.requested": "Čekam odobrenje. Kliknite da poništite zahtev za praćenje", "account.requested": "Čekam odobrenje. Kliknite da poništite zahtev za praćenje",
"account.requested_small": "Awaiting approval",
"account.share": "Podeli profil korisnika @{name}", "account.share": "Podeli profil korisnika @{name}",
"account.show_reblogs": "Prikaži podrške od korisnika @{name}", "account.show_reblogs": "Prikaži podrške od korisnika @{name}",
"account.unblock": "Odblokiraj korisnika @{name}", "account.unblock": "Odblokiraj korisnika @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Nešto nije bilo u redu pri učitavanju ove komponente.", "bundle_modal_error.message": "Nešto nije bilo u redu pri učitavanju ove komponente.",
"bundle_modal_error.retry": "Pokušajte ponovo", "bundle_modal_error.retry": "Pokušajte ponovo",
"column.blocks": "Blokirani korisnici", "column.blocks": "Blokirani korisnici",
"column.bookmarks": "Bookmarks",
"column.community": "Lokalna lajna", "column.community": "Lokalna lajna",
"column.direct": "Direct messages", "column.direct": "Direct messages",
"column.domain_blocks": "Hidden domains", "column.domain_blocks": "Hidden domains",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Zahtevi za praćenje", "column.follow_requests": "Zahtevi za praćenje",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Početna", "column.home": "Početna",
"column.lists": "Liste", "column.lists": "Liste",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Ućutkani korisnici", "column.mutes": "Ućutkani korisnici",
"column.notifications": "Obaveštenja", "column.notifications": "Obaveštenja",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "This post won't be listed under any hashtag as it is unlisted. Only public posts can be searched by hashtag.", "compose_form.hashtag_warning": "This post won't be listed under any hashtag as it is unlisted. Only public posts can be searched by hashtag.",
"compose_form.lock_disclaimer": "Vaš nalog nije {locked}. Svako može da Vas zaprati i da vidi objave namenjene samo Vašim pratiocima.", "compose_form.lock_disclaimer": "Vaš nalog nije {locked}. Svako može da Vas zaprati i da vidi objave namenjene samo Vašim pratiocima.",
"compose_form.lock_disclaimer.lock": "zaključan", "compose_form.lock_disclaimer.lock": "zaključan",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "Šta Vam je na umu?", "compose_form.placeholder": "Šta Vam je na umu?",
"compose_form.poll.add_option": "Add a choice", "compose_form.poll.add_option": "Add a choice",
"compose_form.poll.duration": "Poll duration", "compose_form.poll.duration": "Poll duration",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "No posts here!", "empty_column.account_timeline": "No posts here!",
"empty_column.account_unavailable": "Profile unavailable", "empty_column.account_unavailable": "Profile unavailable",
"empty_column.blocks": "You haven't blocked any users yet.", "empty_column.blocks": "You haven't blocked any users yet.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "Lokalna lajna je prazna. Napišite nešto javno da lajna produva!", "empty_column.community": "Lokalna lajna je prazna. Napišite nešto javno da lajna produva!",
"empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.", "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.domain_blocks": "There are no hidden domains yet.",
@ -165,8 +193,19 @@
"empty_column.mutes": "You haven't muted any users yet.", "empty_column.mutes": "You haven't muted any users yet.",
"empty_column.notifications": "Trenutno nemate obaveštenja. Družite se malo da započnete razgovore.", "empty_column.notifications": "Trenutno nemate obaveštenja. Družite se malo da započnete razgovore.",
"empty_column.public": "Ovde nema ničega! Napišite nešto javno, ili nađite korisnike sa drugih instanci koje ćete zapratiti da popunite ovu prazninu", "empty_column.public": "Ovde nema ničega! Napišite nešto javno, ili nađite korisnike sa drugih instanci koje ćete zapratiti da popunite ovu prazninu",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Odobri", "follow_request.authorize": "Odobri",
"follow_request.reject": "Odbij", "follow_request.reject": "Odbij",
"getting_started.heading": "Da počnete", "getting_started.heading": "Da počnete",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "and {additional}", "hashtag.column_header.tag_mode.all": "and {additional}",
"hashtag.column_header.tag_mode.any": "or {additional}", "hashtag.column_header.tag_mode.any": "or {additional}",
"hashtag.column_header.tag_mode.none": "without {additional}", "hashtag.column_header.tag_mode.none": "without {additional}",
"home.column_settings.basic": "Osnovno", "home.column_settings.show_direct": "Show direct messages",
"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",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Vaše liste", "lists.subheading": "Vaše liste",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Učitavam...", "loading_indicator.label": "Učitavam...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Uključi/isključi vidljivost", "media_gallery.toggle_visible": "Uključi/isključi vidljivost",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Nije pronađeno", "missing_indicator.label": "Nije pronađeno",
"missing_indicator.sublabel": "This resource could not be found", "missing_indicator.sublabel": "This resource could not be found",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Sakrij obaveštenja od ovog korisnika?", "mute_modal.hide_notifications": "Sakrij obaveštenja od ovog korisnika?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Blokirani korisnici", "navigation_bar.blocks": "Blokirani korisnici",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Lokalna lajna", "navigation_bar.community_timeline": "Lokalna lajna",
"navigation_bar.compose": "Compose new post", "navigation_bar.compose": "Compose new post",
"navigation_bar.direct": "Direct messages", "navigation_bar.direct": "Direct messages",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Podrški:", "notifications.column_settings.reblog": "Podrški:",
"notifications.column_settings.show": "Prikaži u koloni", "notifications.column_settings.show": "Prikaži u koloni",
"notifications.column_settings.sound": "Puštaj zvuk", "notifications.column_settings.sound": "Puštaj zvuk",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "All", "notifications.filter.all": "All",
"notifications.filter.boosts": "Reposts", "notifications.filter.boosts": "Reposts",
"notifications.filter.favourites": "Favorites", "notifications.filter.favourites": "Favorites",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
@ -379,8 +440,12 @@
"search_results.statuses": "Posts", "search_results.statuses": "Posts",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {rezultat} few {rezultata} other {rezultata}}", "search_results.total": "{count, number} {count, plural, one {rezultat} few {rezultata} other {rezultata}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Open moderation interface for @{name}", "status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface", "status.admin_status": "Open this post in the moderation interface",
"status.block": "Block @{name}", "status.block": "Block @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Un-repost", "status.cancel_reblog_private": "Un-repost",
"status.cannot_reblog": "Ovaj status ne može da se podrži", "status.cannot_reblog": "Ovaj status ne može da se podrži",
"status.copy": "Copy link to post", "status.copy": "Copy link to post",
@ -439,6 +510,7 @@
"status.show_more": "Prikaži više", "status.show_more": "Prikaži više",
"status.show_more_all": "Show more for all", "status.show_more_all": "Show more for all",
"status.show_thread": "Show thread", "status.show_thread": "Show thread",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Uključi prepisku", "status.unmute_conversation": "Uključi prepisku",
"status.unpin": "Otkači sa profila", "status.unpin": "Otkači sa profila",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Пријави @{name}", "account.report": "Пријави @{name}",
"account.requested": "Чекам одобрење. Кликните да поништите захтев за праћење", "account.requested": "Чекам одобрење. Кликните да поништите захтев за праћење",
"account.requested_small": "Awaiting approval",
"account.share": "Подели профил корисника @{name}", "account.share": "Подели профил корисника @{name}",
"account.show_reblogs": "Прикажи подршке од корисника @{name}", "account.show_reblogs": "Прикажи подршке од корисника @{name}",
"account.unblock": "Одблокирај корисника @{name}", "account.unblock": "Одблокирај корисника @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Нешто није било у реду при учитавању ове компоненте.", "bundle_modal_error.message": "Нешто није било у реду при учитавању ове компоненте.",
"bundle_modal_error.retry": "Покушајте поново", "bundle_modal_error.retry": "Покушајте поново",
"column.blocks": "Блокирани корисници", "column.blocks": "Блокирани корисници",
"column.bookmarks": "Bookmarks",
"column.community": "Локална временска линија", "column.community": "Локална временска линија",
"column.direct": "Директне поруке", "column.direct": "Директне поруке",
"column.domain_blocks": "Скривени домени", "column.domain_blocks": "Скривени домени",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Захтеви за праћење", "column.follow_requests": "Захтеви за праћење",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Почетна", "column.home": "Почетна",
"column.lists": "Листе", "column.lists": "Листе",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Ућуткани корисници", "column.mutes": "Ућуткани корисници",
"column.notifications": "Обавештења", "column.notifications": "Обавештења",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"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.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "Шта Вам је на уму?", "compose_form.placeholder": "Шта Вам је на уму?",
"compose_form.poll.add_option": "Add a choice", "compose_form.poll.add_option": "Add a choice",
"compose_form.poll.duration": "Poll duration", "compose_form.poll.duration": "Poll duration",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "No posts here!", "empty_column.account_timeline": "No posts here!",
"empty_column.account_unavailable": "Profile unavailable", "empty_column.account_unavailable": "Profile unavailable",
"empty_column.blocks": "Још увек немате блокираних корисника.", "empty_column.blocks": "Још увек немате блокираних корисника.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "Локална временска линија је празна. Напишите нешто јавно да започнете!", "empty_column.community": "Локална временска линија је празна. Напишите нешто јавно да започнете!",
"empty_column.direct": "Још увек немате директних порука. Када пошаљете или примите једну, појавиће се овде.", "empty_column.direct": "Још увек немате директних порука. Када пошаљете или примите једну, појавиће се овде.",
"empty_column.domain_blocks": "Још увек нема сакривених домена.", "empty_column.domain_blocks": "Још увек нема сакривених домена.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Још увек немате ућутканих корисника.", "empty_column.mutes": "Још увек немате ућутканих корисника.",
"empty_column.notifications": "Тренутно немате обавештења. Дружите се мало да започнете разговор.", "empty_column.notifications": "Тренутно немате обавештења. Дружите се мало да започнете разговор.",
"empty_column.public": "Овде нема ничега! Напишите нешто јавно, или нађите кориснике са других инстанци које ћете запратити да попуните ову празнину", "empty_column.public": "Овде нема ничега! Напишите нешто јавно, или нађите кориснике са других инстанци које ћете запратити да попуните ову празнину",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Одобри", "follow_request.authorize": "Одобри",
"follow_request.reject": "Одбиј", "follow_request.reject": "Одбиј",
"getting_started.heading": "Да почнете", "getting_started.heading": "Да почнете",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "and {additional}", "hashtag.column_header.tag_mode.all": "and {additional}",
"hashtag.column_header.tag_mode.any": "or {additional}", "hashtag.column_header.tag_mode.any": "or {additional}",
"hashtag.column_header.tag_mode.none": "without {additional}", "hashtag.column_header.tag_mode.none": "without {additional}",
"home.column_settings.basic": "Основно", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "Прикажи и подржавања", "home.column_settings.show_reblogs": "Прикажи и подржавања",
"home.column_settings.show_replies": "Прикажи одговоре", "home.column_settings.show_replies": "Прикажи одговоре",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Ваше листе", "lists.subheading": "Ваше листе",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Учитавам...", "loading_indicator.label": "Учитавам...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Укључи/искључи видљивост", "media_gallery.toggle_visible": "Укључи/искључи видљивост",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Није пронађено", "missing_indicator.label": "Није пронађено",
"missing_indicator.sublabel": "Овај ресурс није пронађен", "missing_indicator.sublabel": "Овај ресурс није пронађен",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Сакриј обавештења од овог корисника?", "mute_modal.hide_notifications": "Сакриј обавештења од овог корисника?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Блокирани корисници", "navigation_bar.blocks": "Блокирани корисници",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Локална временска линија", "navigation_bar.community_timeline": "Локална временска линија",
"navigation_bar.compose": "Саставите нову трубу", "navigation_bar.compose": "Саставите нову трубу",
"navigation_bar.direct": "Директне поруке", "navigation_bar.direct": "Директне поруке",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Подршки:", "notifications.column_settings.reblog": "Подршки:",
"notifications.column_settings.show": "Прикажи у колони", "notifications.column_settings.show": "Прикажи у колони",
"notifications.column_settings.sound": "Пуштај звук", "notifications.column_settings.sound": "Пуштај звук",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "All", "notifications.filter.all": "All",
"notifications.filter.boosts": "Reposts", "notifications.filter.boosts": "Reposts",
"notifications.filter.favourites": "Favorites", "notifications.filter.favourites": "Favorites",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
@ -379,8 +440,12 @@
"search_results.statuses": "Трубе", "search_results.statuses": "Трубе",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {резултат} few {резултата} other {резултата}}", "search_results.total": "{count, number} {count, plural, one {резултат} few {резултата} other {резултата}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Open moderation interface for @{name}", "status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface", "status.admin_status": "Open this post in the moderation interface",
"status.block": "Блокирај @{name}", "status.block": "Блокирај @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Уклони подршку", "status.cancel_reblog_private": "Уклони подршку",
"status.cannot_reblog": "Овај статус не може да се подржи", "status.cannot_reblog": "Овај статус не може да се подржи",
"status.copy": "Copy link to post", "status.copy": "Copy link to post",
@ -439,6 +510,7 @@
"status.show_more": "Прикажи више", "status.show_more": "Прикажи више",
"status.show_more_all": "Прикажи више за све", "status.show_more_all": "Прикажи више за све",
"status.show_thread": "Show thread", "status.show_thread": "Show thread",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Укључи преписку", "status.unmute_conversation": "Укључи преписку",
"status.unpin": "Откачи са профила", "status.unpin": "Откачи са профила",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Rapportera @{name}", "account.report": "Rapportera @{name}",
"account.requested": "Inväntar godkännande. Klicka för att avbryta följförfrågan", "account.requested": "Inväntar godkännande. Klicka för att avbryta följförfrågan",
"account.requested_small": "Awaiting approval",
"account.share": "Dela @{name}s profil", "account.share": "Dela @{name}s profil",
"account.show_reblogs": "Visa knuffar från @{name}", "account.show_reblogs": "Visa knuffar från @{name}",
"account.unblock": "Avblockera @{name}", "account.unblock": "Avblockera @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Något gick fel när denna komponent laddades.", "bundle_modal_error.message": "Något gick fel när denna komponent laddades.",
"bundle_modal_error.retry": "Försök igen", "bundle_modal_error.retry": "Försök igen",
"column.blocks": "Blockerade användare", "column.blocks": "Blockerade användare",
"column.bookmarks": "Bookmarks",
"column.community": "Lokal tidslinje", "column.community": "Lokal tidslinje",
"column.direct": "Direktmeddelanden", "column.direct": "Direktmeddelanden",
"column.domain_blocks": "Dolda domäner", "column.domain_blocks": "Dolda domäner",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Följförfrågningar", "column.follow_requests": "Följförfrågningar",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Hem", "column.home": "Hem",
"column.lists": "Listor", "column.lists": "Listor",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Tystade användare", "column.mutes": "Tystade användare",
"column.notifications": "Meddelanden", "column.notifications": "Meddelanden",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "Denna toot kommer inte att listas under någon hashtag eftersom den är onoterad. Endast offentliga toots kan sökas med hashtag.", "compose_form.hashtag_warning": "Denna toot kommer inte att listas under någon hashtag eftersom den är onoterad. Endast offentliga toots kan sökas med hashtag.",
"compose_form.lock_disclaimer": "Ditt konto är inte {locked}. Vem som helst kan följa dig och även se dina inlägg som bara är för följare.", "compose_form.lock_disclaimer": "Ditt konto är inte {locked}. Vem som helst kan följa dig och även se dina inlägg som bara är för följare.",
"compose_form.lock_disclaimer.lock": "låst", "compose_form.lock_disclaimer.lock": "låst",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "Vad funderar du på?", "compose_form.placeholder": "Vad funderar du på?",
"compose_form.poll.add_option": "Nytt alternativ", "compose_form.poll.add_option": "Nytt alternativ",
"compose_form.poll.duration": "Varaktighet för omröstning", "compose_form.poll.duration": "Varaktighet för omröstning",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "Inga inlägg här!", "empty_column.account_timeline": "Inga inlägg här!",
"empty_column.account_unavailable": "Profilen är inte tillgänglig", "empty_column.account_unavailable": "Profilen är inte tillgänglig",
"empty_column.blocks": "Du har ännu inte blockerat några användare.", "empty_column.blocks": "Du har ännu inte blockerat några användare.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "Den lokala tidslinjen är tom. Skriv något offentligt för att sätta bollen i rullning!", "empty_column.community": "Den lokala tidslinjen är tom. Skriv något offentligt för att sätta bollen i rullning!",
"empty_column.direct": "Du har inga direktmeddelanden än. När du skickar eller tar emot ett kommer det att dyka upp här.", "empty_column.direct": "Du har inga direktmeddelanden än. När du skickar eller tar emot ett kommer det att dyka upp här.",
"empty_column.domain_blocks": "Det finns ännu inga dolda domäner.", "empty_column.domain_blocks": "Det finns ännu inga dolda domäner.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Du har ännu inte tystat några användare.", "empty_column.mutes": "Du har ännu inte tystat några användare.",
"empty_column.notifications": "Du har inga meddelanden än. Interagera med andra för att starta konversationen.", "empty_column.notifications": "Du har inga meddelanden än. Interagera med andra för att starta konversationen.",
"empty_column.public": "Det finns inget här! Skriv något offentligt, eller följ manuellt användarna från andra instanser för att fylla på det", "empty_column.public": "Det finns inget här! Skriv något offentligt, eller följ manuellt användarna från andra instanser för att fylla på det",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Godkänn", "follow_request.authorize": "Godkänn",
"follow_request.reject": "Avvisa", "follow_request.reject": "Avvisa",
"getting_started.heading": "Kom igång", "getting_started.heading": "Kom igång",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "och {additional}", "hashtag.column_header.tag_mode.all": "och {additional}",
"hashtag.column_header.tag_mode.any": "eller {additional}", "hashtag.column_header.tag_mode.any": "eller {additional}",
"hashtag.column_header.tag_mode.none": "utan {additional}", "hashtag.column_header.tag_mode.none": "utan {additional}",
"home.column_settings.basic": "Grundläggande", "home.column_settings.show_direct": "Show direct messages",
"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",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Dina listor", "lists.subheading": "Dina listor",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Laddar...", "loading_indicator.label": "Laddar...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Växla synlighet", "media_gallery.toggle_visible": "Växla synlighet",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Hittades inte", "missing_indicator.label": "Hittades inte",
"missing_indicator.sublabel": "Den här resursen kunde inte hittas", "missing_indicator.sublabel": "Den här resursen kunde inte hittas",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Dölj notifikationer från denna användare?", "mute_modal.hide_notifications": "Dölj notifikationer från denna användare?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Blockerade användare", "navigation_bar.blocks": "Blockerade användare",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Lokal tidslinje", "navigation_bar.community_timeline": "Lokal tidslinje",
"navigation_bar.compose": "Författa ny toot", "navigation_bar.compose": "Författa ny toot",
"navigation_bar.direct": "Direktmeddelanden", "navigation_bar.direct": "Direktmeddelanden",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Knuffar:", "notifications.column_settings.reblog": "Knuffar:",
"notifications.column_settings.show": "Visa i kolumnen", "notifications.column_settings.show": "Visa i kolumnen",
"notifications.column_settings.sound": "Spela upp ljud", "notifications.column_settings.sound": "Spela upp ljud",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "Alla", "notifications.filter.all": "Alla",
"notifications.filter.boosts": "Knuffar", "notifications.filter.boosts": "Knuffar",
"notifications.filter.favourites": "Favoriter", "notifications.filter.favourites": "Favoriter",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
@ -379,8 +440,12 @@
"search_results.statuses": "Posts", "search_results.statuses": "Posts",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, ett {result} andra {results}}", "search_results.total": "{count, number} {count, plural, ett {result} andra {results}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Öppet modereringsgränssnitt för @{name}", "status.admin_account": "Öppet modereringsgränssnitt för @{name}",
"status.admin_status": "Öppna denna status i modereringsgränssnittet", "status.admin_status": "Öppna denna status i modereringsgränssnittet",
"status.block": "Blockera @{name}", "status.block": "Blockera @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Ta bort knuff", "status.cancel_reblog_private": "Ta bort knuff",
"status.cannot_reblog": "Detta inlägg kan inte knuffas", "status.cannot_reblog": "Detta inlägg kan inte knuffas",
"status.copy": "Kopiera länk till status", "status.copy": "Kopiera länk till status",
@ -439,6 +510,7 @@
"status.show_more": "Visa mer", "status.show_more": "Visa mer",
"status.show_more_all": "Visa mer för alla", "status.show_more_all": "Visa mer för alla",
"status.show_thread": "Visa tråd", "status.show_thread": "Visa tråd",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Öppna konversation", "status.unmute_conversation": "Öppna konversation",
"status.unpin": "Ångra fäst i profil", "status.unpin": "Ångra fäst i profil",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Report @{name}", "account.report": "Report @{name}",
"account.requested": "ஒப்புதலுக்காக காத்திருக்கிறது. கோரிக்கையை ரத்துசெய்ய கிளிக் செய்க", "account.requested": "ஒப்புதலுக்காக காத்திருக்கிறது. கோரிக்கையை ரத்துசெய்ய கிளிக் செய்க",
"account.requested_small": "Awaiting approval",
"account.share": "பங்கிடு @{name}'s மனித முகத்தின்", "account.share": "பங்கிடு @{name}'s மனித முகத்தின்",
"account.show_reblogs": "காட்டு boosts இருந்து @{name}", "account.show_reblogs": "காட்டு boosts இருந்து @{name}",
"account.unblock": "விடுவி @{name}", "account.unblock": "விடுவி @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "இந்த கூறுகளை ஏற்றும்போது ஏதோ தவறு ஏற்பட்டது.", "bundle_modal_error.message": "இந்த கூறுகளை ஏற்றும்போது ஏதோ தவறு ஏற்பட்டது.",
"bundle_modal_error.retry": "மீண்டும் முயற்சி செய்", "bundle_modal_error.retry": "மீண்டும் முயற்சி செய்",
"column.blocks": "தடுக்கப்பட்ட பயனர்கள்", "column.blocks": "தடுக்கப்பட்ட பயனர்கள்",
"column.bookmarks": "Bookmarks",
"column.community": "உள்ளூர் காலக்கெடு", "column.community": "உள்ளூர் காலக்கெடு",
"column.direct": "நேரடி செய்திகள்", "column.direct": "நேரடி செய்திகள்",
"column.domain_blocks": "மறைந்த களங்கள்", "column.domain_blocks": "மறைந்த களங்கள்",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "கோரிக்கைகளை பின்பற்றவும்", "column.follow_requests": "கோரிக்கைகளை பின்பற்றவும்",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Home", "column.home": "Home",
"column.lists": "குதிரை வீர்ர்கள்", "column.lists": "குதிரை வீர்ர்கள்",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "முடக்கப்பட்ட பயனர்கள்", "column.mutes": "முடக்கப்பட்ட பயனர்கள்",
"column.notifications": "Notifications", "column.notifications": "Notifications",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "இந்த toot பட்டியலிடப்படாதது போல எந்த ஹேஸ்டேக்கின் கீழ் பட்டியலிடப்படாது. ஹேஸ்டேக் மூலம் பொது டோட்டல்கள் மட்டுமே தேட முடியும்.", "compose_form.hashtag_warning": "இந்த toot பட்டியலிடப்படாதது போல எந்த ஹேஸ்டேக்கின் கீழ் பட்டியலிடப்படாது. ஹேஸ்டேக் மூலம் பொது டோட்டல்கள் மட்டுமே தேட முடியும்.",
"compose_form.lock_disclaimer": "உங்கள் கணக்கு அல்ல {locked}. உங்களுடைய பின்தொடர்பவர் மட்டும் இடுகைகளை யாராவது காணலாம்.", "compose_form.lock_disclaimer": "உங்கள் கணக்கு அல்ல {locked}. உங்களுடைய பின்தொடர்பவர் மட்டும் இடுகைகளை யாராவது காணலாம்.",
"compose_form.lock_disclaimer.lock": "தாழிடு", "compose_form.lock_disclaimer.lock": "தாழிடு",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "What is on your mind?", "compose_form.placeholder": "What is on your mind?",
"compose_form.poll.add_option": "ஒரு விருப்பத்தைச் சேர்க்கவும்", "compose_form.poll.add_option": "ஒரு விருப்பத்தைச் சேர்க்கவும்",
"compose_form.poll.duration": "வாக்கெடுப்பு காலம்", "compose_form.poll.duration": "வாக்கெடுப்பு காலம்",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "இல்லை toots இங்கே!", "empty_column.account_timeline": "இல்லை toots இங்கே!",
"empty_column.account_unavailable": "சுயவிவரம் கிடைக்கவில்லை", "empty_column.account_unavailable": "சுயவிவரம் கிடைக்கவில்லை",
"empty_column.blocks": "இதுவரை எந்த பயனர்களும் தடுக்கவில்லை.", "empty_column.blocks": "இதுவரை எந்த பயனர்களும் தடுக்கவில்லை.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "உள்ளூர் காலக்கெடு காலியாக உள்ளது. பந்தை உருட்டிக்கொள்வதற்கு பகிரங்கமாக ஒன்றை எழுதுங்கள்!", "empty_column.community": "உள்ளூர் காலக்கெடு காலியாக உள்ளது. பந்தை உருட்டிக்கொள்வதற்கு பகிரங்கமாக ஒன்றை எழுதுங்கள்!",
"empty_column.direct": "உங்களிடம் நேரடியான செய்திகள் எதுவும் இல்லை. நீங்கள் ஒன்றை அனுப்பி அல்லது பெறும் போது, அது இங்கே காண்பிக்கும்.", "empty_column.direct": "உங்களிடம் நேரடியான செய்திகள் எதுவும் இல்லை. நீங்கள் ஒன்றை அனுப்பி அல்லது பெறும் போது, அது இங்கே காண்பிக்கும்.",
"empty_column.domain_blocks": "இன்னும் மறைந்த களங்கள் இல்லை.", "empty_column.domain_blocks": "இன்னும் மறைந்த களங்கள் இல்லை.",
@ -165,8 +193,19 @@
"empty_column.mutes": "நீங்கள் இதுவரை எந்த பயனர்களையும் முடக்கியிருக்கவில்லை.", "empty_column.mutes": "நீங்கள் இதுவரை எந்த பயனர்களையும் முடக்கியிருக்கவில்லை.",
"empty_column.notifications": "உங்களிடம் எந்த அறிவிப்புகளும் இல்லை. உரையாடலைத் தொடங்க பிறருடன் தொடர்புகொள்ளவும்.", "empty_column.notifications": "உங்களிடம் எந்த அறிவிப்புகளும் இல்லை. உரையாடலைத் தொடங்க பிறருடன் தொடர்புகொள்ளவும்.",
"empty_column.public": "இங்கே எதுவும் இல்லை! பகிரங்கமாக ஒன்றை எழுதவும் அல்லது மற்ற நிகழ்வுகளிலிருந்து பயனர்களை அதை நிரப்புவதற்கு கைமுறையாக பின்பற்றவும்", "empty_column.public": "இங்கே எதுவும் இல்லை! பகிரங்கமாக ஒன்றை எழுதவும் அல்லது மற்ற நிகழ்வுகளிலிருந்து பயனர்களை அதை நிரப்புவதற்கு கைமுறையாக பின்பற்றவும்",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "அதிகாரமளி", "follow_request.authorize": "அதிகாரமளி",
"follow_request.reject": "விலக்கு", "follow_request.reject": "விலக்கு",
"getting_started.heading": "தொடங்குதல்", "getting_started.heading": "தொடங்குதல்",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "மற்றும் {additional}", "hashtag.column_header.tag_mode.all": "மற்றும் {additional}",
"hashtag.column_header.tag_mode.any": "அல்லது {additional}", "hashtag.column_header.tag_mode.any": "அல்லது {additional}",
"hashtag.column_header.tag_mode.none": "இல்லாமல் {additional}", "hashtag.column_header.tag_mode.none": "இல்லாமல் {additional}",
"home.column_settings.basic": "அடிப்படையான", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "காட்டு boosts", "home.column_settings.show_reblogs": "காட்டு boosts",
"home.column_settings.show_replies": "பதில்களைக் காண்பி", "home.column_settings.show_replies": "பதில்களைக் காண்பி",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "உங்கள் பட்டியல்கள்", "lists.subheading": "உங்கள் பட்டியல்கள்",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "ஏற்றுதல்...", "loading_indicator.label": "ஏற்றுதல்...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "நிலைமாற்று தெரியும்", "media_gallery.toggle_visible": "நிலைமாற்று தெரியும்",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "கிடைக்கவில்லை", "missing_indicator.label": "கிடைக்கவில்லை",
"missing_indicator.sublabel": "இந்த ஆதாரத்தை காண முடியவில்லை", "missing_indicator.sublabel": "இந்த ஆதாரத்தை காண முடியவில்லை",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "இந்த பயனரின் அறிவிப்புகளை மறைக்கவா?", "mute_modal.hide_notifications": "இந்த பயனரின் அறிவிப்புகளை மறைக்கவா?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "தடுக்கப்பட்ட பயனர்கள்", "navigation_bar.blocks": "தடுக்கப்பட்ட பயனர்கள்",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "உள்ளூர் காலக்கெடு", "navigation_bar.community_timeline": "உள்ளூர் காலக்கெடு",
"navigation_bar.compose": "புதியவற்றை எழுதுக toot", "navigation_bar.compose": "புதியவற்றை எழுதுக toot",
"navigation_bar.direct": "நேரடி செய்திகள்", "navigation_bar.direct": "நேரடி செய்திகள்",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "மதிப்பை உயர்த்து:", "notifications.column_settings.reblog": "மதிப்பை உயர்த்து:",
"notifications.column_settings.show": "பத்தியில் காண்பி", "notifications.column_settings.show": "பத்தியில் காண்பி",
"notifications.column_settings.sound": "ஒலி விளையாட", "notifications.column_settings.sound": "ஒலி விளையாட",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "எல்லா", "notifications.filter.all": "எல்லா",
"notifications.filter.boosts": "மதிப்பை உயர்த்து", "notifications.filter.boosts": "மதிப்பை உயர்த்து",
"notifications.filter.favourites": "விருப்பத்துக்குகந்த", "notifications.filter.favourites": "விருப்பத்துக்குகந்த",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
@ -379,8 +440,12 @@
"search_results.statuses": "Posts", "search_results.statuses": "Posts",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {result} மற்ற {results}}", "search_results.total": "{count, number} {count, plural, one {result} மற்ற {results}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "மிதமான இடைமுகத்தை திறக்க @{name}", "status.admin_account": "மிதமான இடைமுகத்தை திறக்க @{name}",
"status.admin_status": "மிதமான இடைமுகத்தில் இந்த நிலையை திறக்கவும்", "status.admin_status": "மிதமான இடைமுகத்தில் இந்த நிலையை திறக்கவும்",
"status.block": "Block @{name}", "status.block": "Block @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "இல்லை பூஸ்ட்", "status.cancel_reblog_private": "இல்லை பூஸ்ட்",
"status.cannot_reblog": "இந்த இடுகை அதிகரிக்க முடியாது", "status.cannot_reblog": "இந்த இடுகை அதிகரிக்க முடியாது",
"status.copy": "நிலைக்கு இணைப்பை நகலெடு", "status.copy": "நிலைக்கு இணைப்பை நகலெடு",
@ -439,6 +510,7 @@
"status.show_more": "மேலும் காட்ட", "status.show_more": "மேலும் காட்ட",
"status.show_more_all": "அனைவருக்கும் மேலும் காட்டு", "status.show_more_all": "அனைவருக்கும் மேலும் காட்டு",
"status.show_thread": "நூல் காட்டு", "status.show_thread": "நூல் காட்டு",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "ஊமையாக உரையாடல் இல்லை", "status.unmute_conversation": "ஊமையாக உரையாடல் இல்லை",
"status.unpin": "சுயவிவரத்திலிருந்து நீக்கவும்", "status.unpin": "சுயவிவரத்திலிருந்து நீக்கவும்",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "@{name}పై ఫిర్యాదుచేయు", "account.report": "@{name}పై ఫిర్యాదుచేయు",
"account.requested": "ఆమోదం కోసం వేచి ఉంది. అభ్యర్థనను రద్దు చేయడానికి క్లిక్ చేయండి", "account.requested": "ఆమోదం కోసం వేచి ఉంది. అభ్యర్థనను రద్దు చేయడానికి క్లిక్ చేయండి",
"account.requested_small": "Awaiting approval",
"account.share": "@{name} యొక్క ప్రొఫైల్ను పంచుకోండి", "account.share": "@{name} యొక్క ప్రొఫైల్ను పంచుకోండి",
"account.show_reblogs": "@{name}నుంచి బూస్ట్ లను చూపించు", "account.show_reblogs": "@{name}నుంచి బూస్ట్ లను చూపించు",
"account.unblock": "@{name}పై బ్లాక్ ను తొలగించు", "account.unblock": "@{name}పై బ్లాక్ ను తొలగించు",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "ఈ భాగం లోడ్ అవుతున్నప్పుడు ఏదో తప్పు జరిగింది.", "bundle_modal_error.message": "ఈ భాగం లోడ్ అవుతున్నప్పుడు ఏదో తప్పు జరిగింది.",
"bundle_modal_error.retry": "మళ్ళీ ప్రయత్నించండి", "bundle_modal_error.retry": "మళ్ళీ ప్రయత్నించండి",
"column.blocks": "బ్లాక్ చేయబడిన వినియోగదారులు", "column.blocks": "బ్లాక్ చేయబడిన వినియోగదారులు",
"column.bookmarks": "Bookmarks",
"column.community": "స్థానిక కాలక్రమం", "column.community": "స్థానిక కాలక్రమం",
"column.direct": "ప్రత్యక్ష సందేశాలు", "column.direct": "ప్రత్యక్ష సందేశాలు",
"column.domain_blocks": "దాచిన డొమైన్లు", "column.domain_blocks": "దాచిన డొమైన్లు",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "అనుసరించడానికి అభ్యర్ధనలు", "column.follow_requests": "అనుసరించడానికి అభ్యర్ధనలు",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "హోమ్", "column.home": "హోమ్",
"column.lists": "జాబితాలు", "column.lists": "జాబితాలు",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "మ్యూట్ చేయబడిన వినియోగదారులు", "column.mutes": "మ్యూట్ చేయబడిన వినియోగదారులు",
"column.notifications": "ప్రకటనలు", "column.notifications": "ప్రకటనలు",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"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.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "మీ మనస్సులో ఏముంది?", "compose_form.placeholder": "మీ మనస్సులో ఏముంది?",
"compose_form.poll.add_option": "ఒక ఎంపికను చేర్చండి", "compose_form.poll.add_option": "ఒక ఎంపికను చేర్చండి",
"compose_form.poll.duration": "ఎన్నిక వ్యవధి", "compose_form.poll.duration": "ఎన్నిక వ్యవధి",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "ఇక్కడ ఏ టూట్లూ లేవు!No toots here!", "empty_column.account_timeline": "ఇక్కడ ఏ టూట్లూ లేవు!No toots here!",
"empty_column.account_unavailable": "Profile unavailable", "empty_column.account_unavailable": "Profile unavailable",
"empty_column.blocks": "మీరు ఇంకా ఏ వినియోగదారులనూ బ్లాక్ చేయలేదు.", "empty_column.blocks": "మీరు ఇంకా ఏ వినియోగదారులనూ బ్లాక్ చేయలేదు.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "స్థానిక కాలక్రమం ఖాళీగా ఉంది. మొదలుపెట్టడానికి బహిరంగంగా ఏదో ఒకటి వ్రాయండి!", "empty_column.community": "స్థానిక కాలక్రమం ఖాళీగా ఉంది. మొదలుపెట్టడానికి బహిరంగంగా ఏదో ఒకటి వ్రాయండి!",
"empty_column.direct": "మీకు ఇంకా ఏ ప్రత్యక్ష సందేశాలు లేవు. మీరు ఒకదాన్ని పంపినప్పుడు లేదా స్వీకరించినప్పుడు, అది ఇక్కడ చూపబడుతుంది.", "empty_column.direct": "మీకు ఇంకా ఏ ప్రత్యక్ష సందేశాలు లేవు. మీరు ఒకదాన్ని పంపినప్పుడు లేదా స్వీకరించినప్పుడు, అది ఇక్కడ చూపబడుతుంది.",
"empty_column.domain_blocks": "దాచబడిన డొమైన్లు ఇంకా ఏమీ లేవు.", "empty_column.domain_blocks": "దాచబడిన డొమైన్లు ఇంకా ఏమీ లేవు.",
@ -165,8 +193,19 @@
"empty_column.mutes": "మీరు ఇంకా ఏ వినియోగదారులనూ మ్యూట్ చేయలేదు.", "empty_column.mutes": "మీరు ఇంకా ఏ వినియోగదారులనూ మ్యూట్ చేయలేదు.",
"empty_column.notifications": "మీకు ఇంకా ఏ నోటిఫికేషన్లు లేవు. సంభాషణను ప్రారంభించడానికి ఇతరులతో ప్రతిస్పందించండి.", "empty_column.notifications": "మీకు ఇంకా ఏ నోటిఫికేషన్లు లేవు. సంభాషణను ప్రారంభించడానికి ఇతరులతో ప్రతిస్పందించండి.",
"empty_column.public": "ఇక్కడ ఏమీ లేదు! దీన్ని నింపడానికి బహిరంగంగా ఏదైనా వ్రాయండి, లేదా ఇతర సేవికల నుండి వినియోగదారులను అనుసరించండి", "empty_column.public": "ఇక్కడ ఏమీ లేదు! దీన్ని నింపడానికి బహిరంగంగా ఏదైనా వ్రాయండి, లేదా ఇతర సేవికల నుండి వినియోగదారులను అనుసరించండి",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "అనుమతించు", "follow_request.authorize": "అనుమతించు",
"follow_request.reject": "తిరస్కరించు", "follow_request.reject": "తిరస్కరించు",
"getting_started.heading": "మొదలుపెడదాం", "getting_started.heading": "మొదలుపెడదాం",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "మరియు {additional}", "hashtag.column_header.tag_mode.all": "మరియు {additional}",
"hashtag.column_header.tag_mode.any": "లేదా {additional}", "hashtag.column_header.tag_mode.any": "లేదా {additional}",
"hashtag.column_header.tag_mode.none": "{additional} లేకుండా", "hashtag.column_header.tag_mode.none": "{additional} లేకుండా",
"home.column_settings.basic": "ప్రాథమిక", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "బూస్ట్ లను చూపించు", "home.column_settings.show_reblogs": "బూస్ట్ లను చూపించు",
"home.column_settings.show_replies": "ప్రత్యుత్తరాలను చూపించు", "home.column_settings.show_replies": "ప్రత్యుత్తరాలను చూపించు",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "మీ జాబితాలు", "lists.subheading": "మీ జాబితాలు",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "లోడ్ అవుతోంది...", "loading_indicator.label": "లోడ్ అవుతోంది...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "దృశ్యమానతను టోగుల్ చేయండి", "media_gallery.toggle_visible": "దృశ్యమానతను టోగుల్ చేయండి",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "దొరకలేదు", "missing_indicator.label": "దొరకలేదు",
"missing_indicator.sublabel": "ఈ వనరు కనుగొనబడలేదు", "missing_indicator.sublabel": "ఈ వనరు కనుగొనబడలేదు",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "ఈ వినియోగదారు నుండి నోటిఫికేషన్లను దాచాలా?", "mute_modal.hide_notifications": "ఈ వినియోగదారు నుండి నోటిఫికేషన్లను దాచాలా?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "బ్లాక్ చేయబడిన వినియోగదారులు", "navigation_bar.blocks": "బ్లాక్ చేయబడిన వినియోగదారులు",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "స్థానిక కాలక్రమం", "navigation_bar.community_timeline": "స్థానిక కాలక్రమం",
"navigation_bar.compose": "కొత్త టూట్ను రాయండి", "navigation_bar.compose": "కొత్త టూట్ను రాయండి",
"navigation_bar.direct": "ప్రత్యక్ష సందేశాలు", "navigation_bar.direct": "ప్రత్యక్ష సందేశాలు",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "బూస్ట్ లు:", "notifications.column_settings.reblog": "బూస్ట్ లు:",
"notifications.column_settings.show": "నిలువు వరుసలో చూపు", "notifications.column_settings.show": "నిలువు వరుసలో చూపు",
"notifications.column_settings.sound": "ధ్వనిని ప్లే చేయి", "notifications.column_settings.sound": "ధ్వనిని ప్లే చేయి",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "అన్నీ", "notifications.filter.all": "అన్నీ",
"notifications.filter.boosts": "బూస్ట్లు", "notifications.filter.boosts": "బూస్ట్లు",
"notifications.filter.favourites": "ఇష్టాలు", "notifications.filter.favourites": "ఇష్టాలు",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}d", "relative_time.days": "{number}d",
@ -379,8 +440,12 @@
"search_results.statuses": "టూట్లు", "search_results.statuses": "టూట్లు",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {result} other {results}}", "search_results.total": "{count, number} {count, plural, one {result} other {results}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "@{name} కొరకు సమన్వయ వినిమయసీమను తెరువు", "status.admin_account": "@{name} కొరకు సమన్వయ వినిమయసీమను తెరువు",
"status.admin_status": "సమన్వయ వినిమయసీమలో ఈ స్టేటస్ ను తెరవండి", "status.admin_status": "సమన్వయ వినిమయసీమలో ఈ స్టేటస్ ను తెరవండి",
"status.block": "@{name} ను బ్లాక్ చేయి", "status.block": "@{name} ను బ్లాక్ చేయి",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "బూస్ట్ను తొలగించు", "status.cancel_reblog_private": "బూస్ట్ను తొలగించు",
"status.cannot_reblog": "ఈ పోస్ట్ను బూస్ట్ చేయడం సాధ్యం కాదు", "status.cannot_reblog": "ఈ పోస్ట్ను బూస్ట్ చేయడం సాధ్యం కాదు",
"status.copy": "లంకెను స్టేటస్కు కాపీ చేయి", "status.copy": "లంకెను స్టేటస్కు కాపీ చేయి",
@ -439,6 +510,7 @@
"status.show_more": "ఇంకా చూపించు", "status.show_more": "ఇంకా చూపించు",
"status.show_more_all": "అన్నిటికీ ఇంకా చూపించు", "status.show_more_all": "అన్నిటికీ ఇంకా చూపించు",
"status.show_thread": "గొలుసును చూపించు", "status.show_thread": "గొలుసును చూపించు",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "సంభాషణను అన్మ్యూట్ చేయి", "status.unmute_conversation": "సంభాషణను అన్మ్యూట్ చేయి",
"status.unpin": "ప్రొఫైల్ నుండి పీకివేయు", "status.unpin": "ప్రొఫైల్ నుండి పీకివేయు",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "รายงาน @{name}", "account.report": "รายงาน @{name}",
"account.requested": "กำลังรอการอนุมัติ คลิกเพื่อยกเลิกคำขอติดตาม", "account.requested": "กำลังรอการอนุมัติ คลิกเพื่อยกเลิกคำขอติดตาม",
"account.requested_small": "Awaiting approval",
"account.share": "แบ่งปันโปรไฟล์ของ @{name}", "account.share": "แบ่งปันโปรไฟล์ของ @{name}",
"account.show_reblogs": "แสดงการดันจาก @{name}", "account.show_reblogs": "แสดงการดันจาก @{name}",
"account.unblock": "เลิกปิดกั้น @{name}", "account.unblock": "เลิกปิดกั้น @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "มีบางอย่างผิดพลาดขณะโหลดส่วนประกอบนี้", "bundle_modal_error.message": "มีบางอย่างผิดพลาดขณะโหลดส่วนประกอบนี้",
"bundle_modal_error.retry": "ลองอีกครั้ง", "bundle_modal_error.retry": "ลองอีกครั้ง",
"column.blocks": "ผู้ใช้ที่ปิดกั้นอยู่", "column.blocks": "ผู้ใช้ที่ปิดกั้นอยู่",
"column.bookmarks": "Bookmarks",
"column.community": "เส้นเวลาในเว็บ", "column.community": "เส้นเวลาในเว็บ",
"column.direct": "ข้อความโดยตรง", "column.direct": "ข้อความโดยตรง",
"column.domain_blocks": "โดเมนที่ซ่อนอยู่", "column.domain_blocks": "โดเมนที่ซ่อนอยู่",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "คำขอติดตาม", "column.follow_requests": "คำขอติดตาม",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "หน้าแรก", "column.home": "หน้าแรก",
"column.lists": "รายการ", "column.lists": "รายการ",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "ผู้ใช้ที่ปิดเสียงอยู่", "column.mutes": "ผู้ใช้ที่ปิดเสียงอยู่",
"column.notifications": "การแจ้งเตือน", "column.notifications": "การแจ้งเตือน",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"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.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "คุณกำลังคิดอะไรอยู่?", "compose_form.placeholder": "คุณกำลังคิดอะไรอยู่?",
"compose_form.poll.add_option": "เพิ่มทางเลือก", "compose_form.poll.add_option": "เพิ่มทางเลือก",
"compose_form.poll.duration": "ระยะเวลาโพล", "compose_form.poll.duration": "ระยะเวลาโพล",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "ไม่มีโพสต์ที่นี่!", "empty_column.account_timeline": "ไม่มีโพสต์ที่นี่!",
"empty_column.account_unavailable": "ไม่มีโปรไฟล์", "empty_column.account_unavailable": "ไม่มีโปรไฟล์",
"empty_column.blocks": "คุณยังไม่ได้ปิดกั้นผู้ใช้ใด ๆ", "empty_column.blocks": "คุณยังไม่ได้ปิดกั้นผู้ใช้ใด ๆ",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "เส้นเวลาในเว็บว่างเปล่า เขียนบางอย่างเป็นสาธารณะเพื่อเริ่มต้น!", "empty_column.community": "เส้นเวลาในเว็บว่างเปล่า เขียนบางอย่างเป็นสาธารณะเพื่อเริ่มต้น!",
"empty_column.direct": "คุณยังไม่มีข้อความโดยตรงใด ๆ เมื่อคุณส่งหรือรับข้อความ ข้อความจะปรากฏที่นี่", "empty_column.direct": "คุณยังไม่มีข้อความโดยตรงใด ๆ เมื่อคุณส่งหรือรับข้อความ ข้อความจะปรากฏที่นี่",
"empty_column.domain_blocks": "ยังไม่มีโดเมนที่ซ่อนอยู่", "empty_column.domain_blocks": "ยังไม่มีโดเมนที่ซ่อนอยู่",
@ -165,8 +193,19 @@
"empty_column.mutes": "คุณยังไม่ได้ปิดเสียงผู้ใช้ใด ๆ", "empty_column.mutes": "คุณยังไม่ได้ปิดเสียงผู้ใช้ใด ๆ",
"empty_column.notifications": "คุณยังไม่มีการแจ้งเตือนใด ๆ โต้ตอบกับผู้อื่นเพื่อเริ่มการสนทนา", "empty_column.notifications": "คุณยังไม่มีการแจ้งเตือนใด ๆ โต้ตอบกับผู้อื่นเพื่อเริ่มการสนทนา",
"empty_column.public": "ไม่มีสิ่งใดที่นี่! เขียนบางอย่างเป็นสาธารณะ หรือติดตามผู้ใช้จากเซิร์ฟเวอร์อื่น ๆ ด้วยตนเองเพื่อเติมให้เต็ม", "empty_column.public": "ไม่มีสิ่งใดที่นี่! เขียนบางอย่างเป็นสาธารณะ หรือติดตามผู้ใช้จากเซิร์ฟเวอร์อื่น ๆ ด้วยตนเองเพื่อเติมให้เต็ม",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "อนุญาต", "follow_request.authorize": "อนุญาต",
"follow_request.reject": "ปฏิเสธ", "follow_request.reject": "ปฏิเสธ",
"getting_started.heading": "เริ่มต้นใช้งาน", "getting_started.heading": "เริ่มต้นใช้งาน",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "และ {additional}", "hashtag.column_header.tag_mode.all": "และ {additional}",
"hashtag.column_header.tag_mode.any": "หรือ {additional}", "hashtag.column_header.tag_mode.any": "หรือ {additional}",
"hashtag.column_header.tag_mode.none": "โดยไม่มี {additional}", "hashtag.column_header.tag_mode.none": "โดยไม่มี {additional}",
"home.column_settings.basic": "พื้นฐาน", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "แสดงการดัน", "home.column_settings.show_reblogs": "แสดงการดัน",
"home.column_settings.show_replies": "แสดงการตอบกลับ", "home.column_settings.show_replies": "แสดงการตอบกลับ",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "รายการของคุณ", "lists.subheading": "รายการของคุณ",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "กำลังโหลด...", "loading_indicator.label": "กำลังโหลด...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "เปิด/ปิดการมองเห็น", "media_gallery.toggle_visible": "เปิด/ปิดการมองเห็น",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "ไม่พบ", "missing_indicator.label": "ไม่พบ",
"missing_indicator.sublabel": "ไม่พบทรัพยากรนี้", "missing_indicator.sublabel": "ไม่พบทรัพยากรนี้",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "ซ่อนการแจ้งเตือนจากผู้ใช้นี้?", "mute_modal.hide_notifications": "ซ่อนการแจ้งเตือนจากผู้ใช้นี้?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "ผู้ใช้ที่ปิดกั้นอยู่", "navigation_bar.blocks": "ผู้ใช้ที่ปิดกั้นอยู่",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "เส้นเวลาในเว็บ", "navigation_bar.community_timeline": "เส้นเวลาในเว็บ",
"navigation_bar.compose": "เขียนโพสต์ใหม่", "navigation_bar.compose": "เขียนโพสต์ใหม่",
"navigation_bar.direct": "ข้อความโดยตรง", "navigation_bar.direct": "ข้อความโดยตรง",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "การดัน:", "notifications.column_settings.reblog": "การดัน:",
"notifications.column_settings.show": "แสดงในคอลัมน์", "notifications.column_settings.show": "แสดงในคอลัมน์",
"notifications.column_settings.sound": "เล่นเสียง", "notifications.column_settings.sound": "เล่นเสียง",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "ทั้งหมด", "notifications.filter.all": "ทั้งหมด",
"notifications.filter.boosts": "การดัน", "notifications.filter.boosts": "การดัน",
"notifications.filter.favourites": "รายการโปรด", "notifications.filter.favourites": "รายการโปรด",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number} วัน", "relative_time.days": "{number} วัน",
@ -379,8 +440,12 @@
"search_results.statuses": "โพสต์", "search_results.statuses": "โพสต์",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, other {ผลลัพธ์}}", "search_results.total": "{count, number} {count, plural, other {ผลลัพธ์}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "เปิดส่วนติดต่อการควบคุมสำหรับ @{name}", "status.admin_account": "เปิดส่วนติดต่อการควบคุมสำหรับ @{name}",
"status.admin_status": "เปิดสถานะนี้ในส่วนติดต่อการควบคุม", "status.admin_status": "เปิดสถานะนี้ในส่วนติดต่อการควบคุม",
"status.block": "ปิดกั้น @{name}", "status.block": "ปิดกั้น @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "เลิกดัน", "status.cancel_reblog_private": "เลิกดัน",
"status.cannot_reblog": "ไม่สามารถดันโพสต์นี้", "status.cannot_reblog": "ไม่สามารถดันโพสต์นี้",
"status.copy": "คัดลอกลิงก์ไปยังสถานะ", "status.copy": "คัดลอกลิงก์ไปยังสถานะ",
@ -439,6 +510,7 @@
"status.show_more": "แสดงเพิ่มเติม", "status.show_more": "แสดงเพิ่มเติม",
"status.show_more_all": "แสดงเพิ่มเติมทั้งหมด", "status.show_more_all": "แสดงเพิ่มเติมทั้งหมด",
"status.show_thread": "แสดงกระทู้", "status.show_thread": "แสดงกระทู้",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "เลิกปิดเสียงการสนทนา", "status.unmute_conversation": "เลิกปิดเสียงการสนทนา",
"status.unpin": "ถอนหมุดจากโปรไฟล์", "status.unpin": "ถอนหมุดจากโปรไฟล์",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "@{name} adlı kişiyi bildir", "account.report": "@{name} adlı kişiyi bildir",
"account.requested": "Onay Bekleniyor. Takip isteğini iptal etmek için tıklayın", "account.requested": "Onay Bekleniyor. Takip isteğini iptal etmek için tıklayın",
"account.requested_small": "Awaiting approval",
"account.share": "@{name} kullanıcısının profilini paylaş", "account.share": "@{name} kullanıcısının profilini paylaş",
"account.show_reblogs": "@{name} kullanıcısının yinelemelerini göster", "account.show_reblogs": "@{name} kullanıcısının yinelemelerini göster",
"account.unblock": "@{name} adlı kişinin engelini kaldır", "account.unblock": "@{name} adlı kişinin engelini kaldır",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Bu bileşen yüklenirken bir şeyler ters gitti.", "bundle_modal_error.message": "Bu bileşen yüklenirken bir şeyler ters gitti.",
"bundle_modal_error.retry": "Tekrar deneyin", "bundle_modal_error.retry": "Tekrar deneyin",
"column.blocks": "Engellenen kullanıcılar", "column.blocks": "Engellenen kullanıcılar",
"column.bookmarks": "Bookmarks",
"column.community": "Yerel zaman tüneli", "column.community": "Yerel zaman tüneli",
"column.direct": "Doğrudan mesajlar", "column.direct": "Doğrudan mesajlar",
"column.domain_blocks": "Gizli alan adları", "column.domain_blocks": "Gizli alan adları",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Takip istekleri", "column.follow_requests": "Takip istekleri",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Anasayfa", "column.home": "Anasayfa",
"column.lists": "Listeler", "column.lists": "Listeler",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Susturulmuş kullanıcılar", "column.mutes": "Susturulmuş kullanıcılar",
"column.notifications": "Bildirimler", "column.notifications": "Bildirimler",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"compose_form.hashtag_warning": "Bu paylaşım liste dışı olduğu için hiç bir hashtag'de yer almayacak. Sadece herkese açık gönderiler hashtaglerde bulunabilir.", "compose_form.hashtag_warning": "Bu paylaşım liste dışı olduğu için hiç bir hashtag'de yer almayacak. Sadece herkese açık gönderiler hashtaglerde bulunabilir.",
"compose_form.lock_disclaimer": "Hesabınız {locked} değil. Sadece takipçilerle paylaştığınız gönderileri görebilmek için sizi herhangi bir kullanıcı takip edebilir.", "compose_form.lock_disclaimer": "Hesabınız {locked} değil. Sadece takipçilerle paylaştığınız gönderileri görebilmek için sizi herhangi bir kullanıcı takip edebilir.",
"compose_form.lock_disclaimer.lock": "kilitli", "compose_form.lock_disclaimer.lock": "kilitli",
"compose_form.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "Aklınızdan ne geçiyor?", "compose_form.placeholder": "Aklınızdan ne geçiyor?",
"compose_form.poll.add_option": "Bir seçenek ekleyin", "compose_form.poll.add_option": "Bir seçenek ekleyin",
"compose_form.poll.duration": "Anket süresi", "compose_form.poll.duration": "Anket süresi",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "Burada hiç gönderi yok!", "empty_column.account_timeline": "Burada hiç gönderi yok!",
"empty_column.account_unavailable": "Profil kullanılamıyor", "empty_column.account_unavailable": "Profil kullanılamıyor",
"empty_column.blocks": "Henüz bir kullanıcıyı engellemediniz.", "empty_column.blocks": "Henüz bir kullanıcıyı engellemediniz.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "Yerel zaman çizelgesi boş. Daha fazla eğlence için herkese açık bir gönderi paylaşın!", "empty_column.community": "Yerel zaman çizelgesi boş. Daha fazla eğlence için herkese açık bir gönderi paylaşın!",
"empty_column.direct": "Henüz doğrudan mesajınız yok. Bir tane gönderdiğinizde veya aldığınızda burada görünecektir.", "empty_column.direct": "Henüz doğrudan mesajınız yok. Bir tane gönderdiğinizde veya aldığınızda burada görünecektir.",
"empty_column.domain_blocks": "Henüz hiçbir gizli alan adı yok.", "empty_column.domain_blocks": "Henüz hiçbir gizli alan adı yok.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Henüz hiçbir kullanıcıyı sessize almadınız.", "empty_column.mutes": "Henüz hiçbir kullanıcıyı sessize almadınız.",
"empty_column.notifications": "Henüz hiçbir bildiriminiz yok. Diğer insanlarla sobhet edebilmek için etkileşime geçebilirsiniz.", "empty_column.notifications": "Henüz hiçbir bildiriminiz yok. Diğer insanlarla sobhet edebilmek için etkileşime geçebilirsiniz.",
"empty_column.public": "Burada hiçbir şey yok! Herkese açık bir şeyler yazın veya burayı doldurmak için diğer sunuculardaki kullanıcıları takip edin", "empty_column.public": "Burada hiçbir şey yok! Herkese açık bir şeyler yazın veya burayı doldurmak için diğer sunuculardaki kullanıcıları takip edin",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Yetkilendir", "follow_request.authorize": "Yetkilendir",
"follow_request.reject": "Reddet", "follow_request.reject": "Reddet",
"getting_started.heading": "Başlangıç", "getting_started.heading": "Başlangıç",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "ve {additional}", "hashtag.column_header.tag_mode.all": "ve {additional}",
"hashtag.column_header.tag_mode.any": "ya da {additional}", "hashtag.column_header.tag_mode.any": "ya da {additional}",
"hashtag.column_header.tag_mode.none": "{additional} olmadan", "hashtag.column_header.tag_mode.none": "{additional} olmadan",
"home.column_settings.basic": "Temel", "home.column_settings.show_direct": "Show direct messages",
"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",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Listeleriniz", "lists.subheading": "Listeleriniz",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Yükleniyor...", "loading_indicator.label": "Yükleniyor...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Görünürlüğü değiştir", "media_gallery.toggle_visible": "Görünürlüğü değiştir",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Bulunamadı", "missing_indicator.label": "Bulunamadı",
"missing_indicator.sublabel": "Bu kaynak bulunamadı", "missing_indicator.sublabel": "Bu kaynak bulunamadı",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Bu kullanıcıdan bildirimler gizlensin mı?", "mute_modal.hide_notifications": "Bu kullanıcıdan bildirimler gizlensin mı?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Engellenen kullanıcılar", "navigation_bar.blocks": "Engellenen kullanıcılar",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Yerel zaman tüneli", "navigation_bar.community_timeline": "Yerel zaman tüneli",
"navigation_bar.compose": "Yeni bir gönderi yazın", "navigation_bar.compose": "Yeni bir gönderi yazın",
"navigation_bar.direct": "Direkt Mesajlar", "navigation_bar.direct": "Direkt Mesajlar",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Boostlar:", "notifications.column_settings.reblog": "Boostlar:",
"notifications.column_settings.show": "Bildirimlerde göster", "notifications.column_settings.show": "Bildirimlerde göster",
"notifications.column_settings.sound": "Ses çal", "notifications.column_settings.sound": "Ses çal",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "Tümü", "notifications.filter.all": "Tümü",
"notifications.filter.boosts": "Boostlar", "notifications.filter.boosts": "Boostlar",
"notifications.filter.favourites": "Favoriler", "notifications.filter.favourites": "Favoriler",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}g", "relative_time.days": "{number}g",
@ -379,8 +440,12 @@
"search_results.statuses": "Gönderiler", "search_results.statuses": "Gönderiler",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {sonuç} other {sonuçlar}}", "search_results.total": "{count, number} {count, plural, one {sonuç} other {sonuçlar}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "@{name} için denetim arayüzünü açın", "status.admin_account": "@{name} için denetim arayüzünü açın",
"status.admin_status": "Denetim arayüzünde bu durumu açın", "status.admin_status": "Denetim arayüzünde bu durumu açın",
"status.block": "Engelle : @{name}", "status.block": "Engelle : @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Boost'u geri al", "status.cancel_reblog_private": "Boost'u geri al",
"status.cannot_reblog": "Bu gönderi boost edilemez", "status.cannot_reblog": "Bu gönderi boost edilemez",
"status.copy": "Bağlantı durumunu kopyala", "status.copy": "Bağlantı durumunu kopyala",
@ -439,6 +510,7 @@
"status.show_more": "Daha fazla göster", "status.show_more": "Daha fazla göster",
"status.show_more_all": "Hepsi için daha fazla göster", "status.show_more_all": "Hepsi için daha fazla göster",
"status.show_thread": "Başlığı göster", "status.show_thread": "Başlığı göster",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Sohbeti aç", "status.unmute_conversation": "Sohbeti aç",
"status.unpin": "Profilden sabitlemeyi kaldır", "status.unpin": "Profilden sabitlemeyi kaldır",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "Поскаржитися на @{name}", "account.report": "Поскаржитися на @{name}",
"account.requested": "Очікує підтвердження. Натисніть щоб відмінити запит", "account.requested": "Очікує підтвердження. Натисніть щоб відмінити запит",
"account.requested_small": "Awaiting approval",
"account.share": "Поширити профіль @{name}", "account.share": "Поширити профіль @{name}",
"account.show_reblogs": "Показати передмухи від @{name}", "account.show_reblogs": "Показати передмухи від @{name}",
"account.unblock": "Розблокувати @{name}", "account.unblock": "Розблокувати @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "Щось пішло не так під час завантаження компоненту.", "bundle_modal_error.message": "Щось пішло не так під час завантаження компоненту.",
"bundle_modal_error.retry": "Спробувати ще раз", "bundle_modal_error.retry": "Спробувати ще раз",
"column.blocks": "Заблоковані користувачі", "column.blocks": "Заблоковані користувачі",
"column.bookmarks": "Bookmarks",
"column.community": "Локальна стрічка", "column.community": "Локальна стрічка",
"column.direct": "Прямі повідомлення", "column.direct": "Прямі повідомлення",
"column.domain_blocks": "Приховані домени", "column.domain_blocks": "Приховані домени",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "Запити на підписку", "column.follow_requests": "Запити на підписку",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "Головна", "column.home": "Головна",
"column.lists": "Списки", "column.lists": "Списки",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "Заглушені користувачі", "column.mutes": "Заглушені користувачі",
"column.notifications": "Сповіщення", "column.notifications": "Сповіщення",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"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.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "Що у Вас на думці?", "compose_form.placeholder": "Що у Вас на думці?",
"compose_form.poll.add_option": "Додати варіант", "compose_form.poll.add_option": "Додати варіант",
"compose_form.poll.duration": "Тривалість опитування", "compose_form.poll.duration": "Тривалість опитування",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "Тут дмухалок немає!", "empty_column.account_timeline": "Тут дмухалок немає!",
"empty_column.account_unavailable": "Профіль недоступний", "empty_column.account_unavailable": "Профіль недоступний",
"empty_column.blocks": "Ви ще не заблокували жодного користувача.", "empty_column.blocks": "Ви ще не заблокували жодного користувача.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "Локальна стрічка пуста. Напишіть щось, щоб розігріти народ!", "empty_column.community": "Локальна стрічка пуста. Напишіть щось, щоб розігріти народ!",
"empty_column.direct": "У вас ще немає прямих повідомлень. Коли ви відправите чи отримаєте якесь, воно з'явиться тут.", "empty_column.direct": "У вас ще немає прямих повідомлень. Коли ви відправите чи отримаєте якесь, воно з'явиться тут.",
"empty_column.domain_blocks": "Тут поки немає прихованих доменів.", "empty_column.domain_blocks": "Тут поки немає прихованих доменів.",
@ -165,8 +193,19 @@
"empty_column.mutes": "Ви ще не заглушили жодного користувача.", "empty_column.mutes": "Ви ще не заглушили жодного користувача.",
"empty_column.notifications": "У вас ще немає сповіщень. Переписуйтесь з іншими користувачами, щоб почати розмову.", "empty_column.notifications": "У вас ще немає сповіщень. Переписуйтесь з іншими користувачами, щоб почати розмову.",
"empty_column.public": "Тут поки нічого немає! Опублікуйте щось, або вручну підпишіться на користувачів інших інстанцій, щоб заповнити стрічку", "empty_column.public": "Тут поки нічого немає! Опублікуйте щось, або вручну підпишіться на користувачів інших інстанцій, щоб заповнити стрічку",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "Авторизувати", "follow_request.authorize": "Авторизувати",
"follow_request.reject": "Відмовити", "follow_request.reject": "Відмовити",
"getting_started.heading": "Ласкаво просимо", "getting_started.heading": "Ласкаво просимо",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "та {additional}", "hashtag.column_header.tag_mode.all": "та {additional}",
"hashtag.column_header.tag_mode.any": "або {additional}", "hashtag.column_header.tag_mode.any": "або {additional}",
"hashtag.column_header.tag_mode.none": "без {additional}", "hashtag.column_header.tag_mode.none": "без {additional}",
"home.column_settings.basic": "Основні", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "Показувати передмухи", "home.column_settings.show_reblogs": "Показувати передмухи",
"home.column_settings.show_replies": "Показувати відповіді", "home.column_settings.show_replies": "Показувати відповіді",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "Ваші списки", "lists.subheading": "Ваші списки",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "Завантаження...", "loading_indicator.label": "Завантаження...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "Показати/приховати", "media_gallery.toggle_visible": "Показати/приховати",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "Не знайдено", "missing_indicator.label": "Не знайдено",
"missing_indicator.sublabel": "Ресурс не знайдений", "missing_indicator.sublabel": "Ресурс не знайдений",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "Приховати сповіщення від користувача?", "mute_modal.hide_notifications": "Приховати сповіщення від користувача?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "Заблоковані користувачі", "navigation_bar.blocks": "Заблоковані користувачі",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "Локальна стрічка", "navigation_bar.community_timeline": "Локальна стрічка",
"navigation_bar.compose": "Написати новий дмух", "navigation_bar.compose": "Написати новий дмух",
"navigation_bar.direct": "Прямі повідомлення", "navigation_bar.direct": "Прямі повідомлення",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "Передмухи:", "notifications.column_settings.reblog": "Передмухи:",
"notifications.column_settings.show": "Показати в колонці", "notifications.column_settings.show": "Показати в колонці",
"notifications.column_settings.sound": "Відтворювати звуки", "notifications.column_settings.sound": "Відтворювати звуки",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "Усі", "notifications.filter.all": "Усі",
"notifications.filter.boosts": "Передмухи", "notifications.filter.boosts": "Передмухи",
"notifications.filter.favourites": "Улюблені", "notifications.filter.favourites": "Улюблені",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}д", "relative_time.days": "{number}д",
@ -379,8 +440,12 @@
"search_results.statuses": "Дмухів", "search_results.statuses": "Дмухів",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} {count, plural, one {результат} few {результати} many {результатів} other {результатів}}", "search_results.total": "{count, number} {count, plural, one {результат} few {результати} many {результатів} other {результатів}}",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Відкрити інтерфейс модерації для @{name}", "status.admin_account": "Відкрити інтерфейс модерації для @{name}",
"status.admin_status": "Відкрити цей статус в інтерфейсі модерації", "status.admin_status": "Відкрити цей статус в інтерфейсі модерації",
"status.block": "Заблокувати @{name}", "status.block": "Заблокувати @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "Відмінити передмухання", "status.cancel_reblog_private": "Відмінити передмухання",
"status.cannot_reblog": "Цей допис не може бути передмухнутий", "status.cannot_reblog": "Цей допис не може бути передмухнутий",
"status.copy": "Копіювати посилання до статусу", "status.copy": "Копіювати посилання до статусу",
@ -439,6 +510,7 @@
"status.show_more": "Розгорнути", "status.show_more": "Розгорнути",
"status.show_more_all": "Show more for all", "status.show_more_all": "Show more for all",
"status.show_thread": "Показати ланцюжок", "status.show_thread": "Показати ланцюжок",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "Зняти глушення з діалогу", "status.unmute_conversation": "Зняти глушення з діалогу",
"status.unpin": "Відкріпити від профілю", "status.unpin": "Відкріпити від профілю",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "举报 @{name}", "account.report": "举报 @{name}",
"account.requested": "正在等待对方同意。点击以取消发送关注请求", "account.requested": "正在等待对方同意。点击以取消发送关注请求",
"account.requested_small": "Awaiting approval",
"account.share": "分享 @{name} 的个人资料", "account.share": "分享 @{name} 的个人资料",
"account.show_reblogs": "显示来自 @{name} 的转嘟", "account.show_reblogs": "显示来自 @{name} 的转嘟",
"account.unblock": "解除屏蔽 @{name}", "account.unblock": "解除屏蔽 @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "载入这个组件时发生了错误。", "bundle_modal_error.message": "载入这个组件时发生了错误。",
"bundle_modal_error.retry": "重试", "bundle_modal_error.retry": "重试",
"column.blocks": "已屏蔽的用户", "column.blocks": "已屏蔽的用户",
"column.bookmarks": "Bookmarks",
"column.community": "本站时间轴", "column.community": "本站时间轴",
"column.direct": "私信", "column.direct": "私信",
"column.domain_blocks": "已屏蔽的网站", "column.domain_blocks": "已屏蔽的网站",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "关注请求", "column.follow_requests": "关注请求",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "主页", "column.home": "主页",
"column.lists": "列表", "column.lists": "列表",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "已隐藏的用户", "column.mutes": "已隐藏的用户",
"column.notifications": "通知", "column.notifications": "通知",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"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.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "在想啥?", "compose_form.placeholder": "在想啥?",
"compose_form.poll.add_option": "添加一个选项", "compose_form.poll.add_option": "添加一个选项",
"compose_form.poll.duration": "投票持续时间", "compose_form.poll.duration": "投票持续时间",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "这里没有嘟文!", "empty_column.account_timeline": "这里没有嘟文!",
"empty_column.account_unavailable": "个人资料不可用", "empty_column.account_unavailable": "个人资料不可用",
"empty_column.blocks": "你目前没有屏蔽任何用户。", "empty_column.blocks": "你目前没有屏蔽任何用户。",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "本站时间轴暂时没有内容,快写点什么让它动起来吧!", "empty_column.community": "本站时间轴暂时没有内容,快写点什么让它动起来吧!",
"empty_column.direct": "你还没有使用过私信。当你发出或者收到私信时,它会在这里显示。", "empty_column.direct": "你还没有使用过私信。当你发出或者收到私信时,它会在这里显示。",
"empty_column.domain_blocks": "目前没有被隐藏的站点。", "empty_column.domain_blocks": "目前没有被隐藏的站点。",
@ -165,8 +193,19 @@
"empty_column.mutes": "你没有隐藏任何用户。", "empty_column.mutes": "你没有隐藏任何用户。",
"empty_column.notifications": "你还没有收到过任何通知,快和其他用户互动吧。", "empty_column.notifications": "你还没有收到过任何通知,快和其他用户互动吧。",
"empty_column.public": "这里什么都没有!写一些公开的嘟文,或者关注其他服务器的用户后,这里就会有嘟文出现了", "empty_column.public": "这里什么都没有!写一些公开的嘟文,或者关注其他服务器的用户后,这里就会有嘟文出现了",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "同意", "follow_request.authorize": "同意",
"follow_request.reject": "拒绝", "follow_request.reject": "拒绝",
"getting_started.heading": "开始使用", "getting_started.heading": "开始使用",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "以及 {additional}", "hashtag.column_header.tag_mode.all": "以及 {additional}",
"hashtag.column_header.tag_mode.any": "或是 {additional}", "hashtag.column_header.tag_mode.any": "或是 {additional}",
"hashtag.column_header.tag_mode.none": "而不用 {additional}", "hashtag.column_header.tag_mode.none": "而不用 {additional}",
"home.column_settings.basic": "基本设置", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "显示转嘟", "home.column_settings.show_reblogs": "显示转嘟",
"home.column_settings.show_replies": "显示回复", "home.column_settings.show_replies": "显示回复",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "你的列表", "lists.subheading": "你的列表",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "加载中……", "loading_indicator.label": "加载中……",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "切换显示/隐藏", "media_gallery.toggle_visible": "切换显示/隐藏",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "找不到内容", "missing_indicator.label": "找不到内容",
"missing_indicator.sublabel": "无法找到此资源", "missing_indicator.sublabel": "无法找到此资源",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "同时隐藏来自这个用户的通知?", "mute_modal.hide_notifications": "同时隐藏来自这个用户的通知?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "已屏蔽的用户", "navigation_bar.blocks": "已屏蔽的用户",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "本站时间轴", "navigation_bar.community_timeline": "本站时间轴",
"navigation_bar.compose": "撰写新嘟文", "navigation_bar.compose": "撰写新嘟文",
"navigation_bar.direct": "私信", "navigation_bar.direct": "私信",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "当有人转嘟了你的嘟文时:", "notifications.column_settings.reblog": "当有人转嘟了你的嘟文时:",
"notifications.column_settings.show": "在通知栏显示", "notifications.column_settings.show": "在通知栏显示",
"notifications.column_settings.sound": "播放音效", "notifications.column_settings.sound": "播放音效",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "全部", "notifications.filter.all": "全部",
"notifications.filter.boosts": "转嘟", "notifications.filter.boosts": "转嘟",
"notifications.filter.favourites": "收藏", "notifications.filter.favourites": "收藏",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}天", "relative_time.days": "{number}天",
@ -379,8 +440,12 @@
"search_results.statuses": "嘟文", "search_results.statuses": "嘟文",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "共 {count, number} 个结果", "search_results.total": "共 {count, number} 个结果",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "打开 @{name} 的管理界面", "status.admin_account": "打开 @{name} 的管理界面",
"status.admin_status": "打开这条嘟文的管理界面", "status.admin_status": "打开这条嘟文的管理界面",
"status.block": "屏蔽 @{name}", "status.block": "屏蔽 @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "取消转嘟", "status.cancel_reblog_private": "取消转嘟",
"status.cannot_reblog": "这条嘟文不允许被转嘟", "status.cannot_reblog": "这条嘟文不允许被转嘟",
"status.copy": "复制嘟文链接", "status.copy": "复制嘟文链接",
@ -439,6 +510,7 @@
"status.show_more": "显示内容", "status.show_more": "显示内容",
"status.show_more_all": "显示所有内容", "status.show_more_all": "显示所有内容",
"status.show_thread": "显示全部对话", "status.show_thread": "显示全部对话",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "不再隐藏此对话", "status.unmute_conversation": "不再隐藏此对话",
"status.unpin": "在个人资料页面取消置顶", "status.unpin": "在个人资料页面取消置顶",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "舉報 @{name}", "account.report": "舉報 @{name}",
"account.requested": "等候審批", "account.requested": "等候審批",
"account.requested_small": "Awaiting approval",
"account.share": "分享 @{name} 的個人資料", "account.share": "分享 @{name} 的個人資料",
"account.show_reblogs": "顯示 @{name} 的推文", "account.show_reblogs": "顯示 @{name} 的推文",
"account.unblock": "解除對 @{name} 的封鎖", "account.unblock": "解除對 @{name} 的封鎖",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "加載本組件出錯。", "bundle_modal_error.message": "加載本組件出錯。",
"bundle_modal_error.retry": "重試", "bundle_modal_error.retry": "重試",
"column.blocks": "封鎖用戶", "column.blocks": "封鎖用戶",
"column.bookmarks": "Bookmarks",
"column.community": "本站時間軸", "column.community": "本站時間軸",
"column.direct": "個人訊息", "column.direct": "個人訊息",
"column.domain_blocks": "隱藏的服務站", "column.domain_blocks": "隱藏的服務站",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "關注請求", "column.follow_requests": "關注請求",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "主頁", "column.home": "主頁",
"column.lists": "列表", "column.lists": "列表",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "靜音名單", "column.mutes": "靜音名單",
"column.notifications": "通知", "column.notifications": "通知",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"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.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "你在想甚麼?", "compose_form.placeholder": "你在想甚麼?",
"compose_form.poll.add_option": "Add a choice", "compose_form.poll.add_option": "Add a choice",
"compose_form.poll.duration": "Poll duration", "compose_form.poll.duration": "Poll duration",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "No posts here!", "empty_column.account_timeline": "No posts here!",
"empty_column.account_unavailable": "Profile unavailable", "empty_column.account_unavailable": "Profile unavailable",
"empty_column.blocks": "You haven't blocked any users yet.", "empty_column.blocks": "You haven't blocked any users yet.",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"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": "There are no hidden domains yet.",
@ -165,8 +193,19 @@
"empty_column.mutes": "You haven't muted any users yet.", "empty_column.mutes": "You haven't muted any users yet.",
"empty_column.notifications": "你沒有任何通知紀錄,快向其他用戶搭訕吧。", "empty_column.notifications": "你沒有任何通知紀錄,快向其他用戶搭訕吧。",
"empty_column.public": "跨站時間軸暫時沒有內容!快寫一些公共的文章,或者關注另一些服務站的用戶吧!你和本站、友站的交流,將決定這裏出現的內容。", "empty_column.public": "跨站時間軸暫時沒有內容!快寫一些公共的文章,或者關注另一些服務站的用戶吧!你和本站、友站的交流,將決定這裏出現的內容。",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "批准", "follow_request.authorize": "批准",
"follow_request.reject": "拒絕", "follow_request.reject": "拒絕",
"getting_started.heading": "開始使用", "getting_started.heading": "開始使用",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "and {additional}", "hashtag.column_header.tag_mode.all": "and {additional}",
"hashtag.column_header.tag_mode.any": "or {additional}", "hashtag.column_header.tag_mode.any": "or {additional}",
"hashtag.column_header.tag_mode.none": "without {additional}", "hashtag.column_header.tag_mode.none": "without {additional}",
"home.column_settings.basic": "基本", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "顯示被轉推的文章", "home.column_settings.show_reblogs": "顯示被轉推的文章",
"home.column_settings.show_replies": "顯示回應文章", "home.column_settings.show_replies": "顯示回應文章",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "列表", "lists.subheading": "列表",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "載入中...", "loading_indicator.label": "載入中...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "打開或關上", "media_gallery.toggle_visible": "打開或關上",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "找不到內容", "missing_indicator.label": "找不到內容",
"missing_indicator.sublabel": "無法找到內容", "missing_indicator.sublabel": "無法找到內容",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "隱藏來自這用戶的通知嗎?", "mute_modal.hide_notifications": "隱藏來自這用戶的通知嗎?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "被你封鎖的用戶", "navigation_bar.blocks": "被你封鎖的用戶",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "本站時間軸", "navigation_bar.community_timeline": "本站時間軸",
"navigation_bar.compose": "Compose new post", "navigation_bar.compose": "Compose new post",
"navigation_bar.direct": "個人訊息", "navigation_bar.direct": "個人訊息",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "轉推你的文章:", "notifications.column_settings.reblog": "轉推你的文章:",
"notifications.column_settings.show": "在通知欄顯示", "notifications.column_settings.show": "在通知欄顯示",
"notifications.column_settings.sound": "播放音效", "notifications.column_settings.sound": "播放音效",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "All", "notifications.filter.all": "All",
"notifications.filter.boosts": "Reposts", "notifications.filter.boosts": "Reposts",
"notifications.filter.favourites": "Favorites", "notifications.filter.favourites": "Favorites",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number}日", "relative_time.days": "{number}日",
@ -379,8 +440,12 @@
"search_results.statuses": "文章", "search_results.statuses": "文章",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} 項結果", "search_results.total": "{count, number} 項結果",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "Open moderation interface for @{name}", "status.admin_account": "Open moderation interface for @{name}",
"status.admin_status": "Open this post in the moderation interface", "status.admin_status": "Open this post in the moderation interface",
"status.block": "封鎖 @{name}", "status.block": "封鎖 @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "取消轉推", "status.cancel_reblog_private": "取消轉推",
"status.cannot_reblog": "這篇文章無法被轉推", "status.cannot_reblog": "這篇文章無法被轉推",
"status.copy": "Copy link to post", "status.copy": "Copy link to post",
@ -439,6 +510,7 @@
"status.show_more": "顯示更多", "status.show_more": "顯示更多",
"status.show_more_all": "顯示更多這類文章", "status.show_more_all": "顯示更多這類文章",
"status.show_thread": "Show thread", "status.show_thread": "Show thread",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "解禁對話", "status.unmute_conversation": "解禁對話",
"status.unpin": "解除置頂", "status.unpin": "解除置頂",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -32,6 +32,7 @@
"account.register": "Sign up", "account.register": "Sign up",
"account.report": "檢舉 @{name}", "account.report": "檢舉 @{name}",
"account.requested": "正在等待核准。按一下取消關注請求", "account.requested": "正在等待核准。按一下取消關注請求",
"account.requested_small": "Awaiting approval",
"account.share": "分享 @{name} 的個人資料", "account.share": "分享 @{name} 的個人資料",
"account.show_reblogs": "顯示來自 @{name} 的嘟文", "account.show_reblogs": "顯示來自 @{name} 的嘟文",
"account.unblock": "取消封鎖 @{name}", "account.unblock": "取消封鎖 @{name}",
@ -58,15 +59,38 @@
"bundle_modal_error.message": "載入此元件時發生錯誤。", "bundle_modal_error.message": "載入此元件時發生錯誤。",
"bundle_modal_error.retry": "重試", "bundle_modal_error.retry": "重試",
"column.blocks": "封鎖的使用者", "column.blocks": "封鎖的使用者",
"column.bookmarks": "Bookmarks",
"column.community": "本機時間軸", "column.community": "本機時間軸",
"column.direct": "私訊", "column.direct": "私訊",
"column.domain_blocks": "隱藏的網域", "column.domain_blocks": "隱藏的網域",
"column.edit_profile": "Edit profile", "column.edit_profile": "Edit profile",
"column.filters": "Muted words", "column.filters": "Muted words",
"column.filters.add_new": "Add New Filter",
"column.filters.conversations": "Conversations",
"column.filters.create_error": "Error adding filter",
"column.filters.delete": "Delete",
"column.filters.delete_error": "Error deleting filter",
"column.filters.drop_header": "Drop instead of hide",
"column.filters.drop_hint": "Filtered posts will disappear irreversibly, even if filter is later removed",
"column.filters.expires": "Expire after",
"column.filters.expires_hint": "Expiration dates are not currently supported",
"column.filters.home_timeline": "Home timeline",
"column.filters.keyword": "Keyword or phrase",
"column.filters.notifications": "Notifications",
"column.filters.public_timeline": "Public timeline",
"column.filters.subheading_add_new": "Add New Filter",
"column.filters.subheading_filters": "Current Filters",
"column.filters.whole_word_header": "Whole word",
"column.filters.whole_word_hint": "When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word",
"column.follow_requests": "關注請求", "column.follow_requests": "關注請求",
"column.groups": "Groups", "column.groups": "Groups",
"column.home": "主頁", "column.home": "主頁",
"column.lists": "名單", "column.lists": "名單",
"column.mfa": "Multi-Factor Authentication",
"column.mfa_cancel": "Cancel",
"column.mfa_confirm_button": "Confirm",
"column.mfa_disable_button": "Disable",
"column.mfa_setup": "Proceed to Setup",
"column.mutes": "被靜音的使用者", "column.mutes": "被靜音的使用者",
"column.notifications": "通知", "column.notifications": "通知",
"column.preferences": "Preferences", "column.preferences": "Preferences",
@ -82,6 +106,8 @@
"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.markdown.marked": "Post markdown enabled",
"compose_form.markdown.unmarked": "Post markdown disabled",
"compose_form.placeholder": "您正在想些什麼?", "compose_form.placeholder": "您正在想些什麼?",
"compose_form.poll.add_option": "新增選擇", "compose_form.poll.add_option": "新增選擇",
"compose_form.poll.duration": "投票期限", "compose_form.poll.duration": "投票期限",
@ -124,6 +150,7 @@
"edit_profile.fields.meta_fields.content_placeholder": "Content", "edit_profile.fields.meta_fields.content_placeholder": "Content",
"edit_profile.fields.meta_fields.label_placeholder": "Label", "edit_profile.fields.meta_fields.label_placeholder": "Label",
"edit_profile.fields.meta_fields_label": "Profile metadata", "edit_profile.fields.meta_fields_label": "Profile metadata",
"edit_profile.fields.verified_display_name": "Verified users may not update their display name",
"edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px", "edit_profile.hints.avatar": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 400x400px",
"edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored", "edit_profile.hints.bot": "This account mainly performs automated actions and might not be monitored",
"edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px", "edit_profile.hints.header": "PNG, GIF or JPG. At most 2 MB. Will be downscaled to 1500x500px",
@ -149,6 +176,7 @@
"empty_column.account_timeline": "這裡還沒有嘟文!", "empty_column.account_timeline": "這裡還沒有嘟文!",
"empty_column.account_unavailable": "無法取得個人資料", "empty_column.account_unavailable": "無法取得個人資料",
"empty_column.blocks": "你還沒有封鎖任何使用者。", "empty_column.blocks": "你還沒有封鎖任何使用者。",
"empty_column.bookmarks": "You don't have any bookmarks yet. When you add one, it will show up here.",
"empty_column.community": "本地時間軸是空的。快公開嘟些文搶頭香啊!", "empty_column.community": "本地時間軸是空的。快公開嘟些文搶頭香啊!",
"empty_column.direct": "您還沒有任何私訊。當您私訊別人或收到私訊時,它將於此顯示。", "empty_column.direct": "您還沒有任何私訊。當您私訊別人或收到私訊時,它將於此顯示。",
"empty_column.domain_blocks": "尚未隱藏任何網域。", "empty_column.domain_blocks": "尚未隱藏任何網域。",
@ -165,8 +193,19 @@
"empty_column.mutes": "你尚未靜音任何使用者。", "empty_column.mutes": "你尚未靜音任何使用者。",
"empty_column.notifications": "您尚未收到任何通知,和別人互動開啟對話吧。", "empty_column.notifications": "您尚未收到任何通知,和別人互動開啟對話吧。",
"empty_column.public": "這裡什麼都沒有!嘗試寫些公開的嘟文,或著自己關注其他伺服器的使用者後就會有嘟文出現了", "empty_column.public": "這裡什麼都沒有!嘗試寫些公開的嘟文,或著自己關注其他伺服器的使用者後就會有嘟文出現了",
"explanation_box.collapse": "Collapse explanation box",
"explanation_box.expand": "Expand explanation box",
"fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.", "fediverse_tab.explanation_box.explanation": "{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka \"servers\"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.",
"fediverse_tab.explanation_box.title": "What is the Fediverse?", "fediverse_tab.explanation_box.title": "What is the Fediverse?",
"filters.context_header": "Filter contexts",
"filters.context_hint": "One or multiple contexts where the filter should apply",
"filters.filters_list_context_label": "Filter contexts:",
"filters.filters_list_delete": "Delete",
"filters.filters_list_details_label": "Filter settings:",
"filters.filters_list_drop": "Drop",
"filters.filters_list_hide": "Hide",
"filters.filters_list_phrase_label": "Keyword or phrase:",
"filters.filters_list_whole-word": "Whole word",
"follow_request.authorize": "授權", "follow_request.authorize": "授權",
"follow_request.reject": "拒絕", "follow_request.reject": "拒絕",
"getting_started.heading": "開始使用", "getting_started.heading": "開始使用",
@ -192,7 +231,7 @@
"hashtag.column_header.tag_mode.all": "以及{additional}", "hashtag.column_header.tag_mode.all": "以及{additional}",
"hashtag.column_header.tag_mode.any": "或是{additional}", "hashtag.column_header.tag_mode.any": "或是{additional}",
"hashtag.column_header.tag_mode.none": "而無需{additional}", "hashtag.column_header.tag_mode.none": "而無需{additional}",
"home.column_settings.basic": "基本", "home.column_settings.show_direct": "Show direct messages",
"home.column_settings.show_reblogs": "顯示轉嘟", "home.column_settings.show_reblogs": "顯示轉嘟",
"home.column_settings.show_replies": "顯示回覆", "home.column_settings.show_replies": "顯示回覆",
"home_column.lists": "Lists", "home_column.lists": "Lists",
@ -249,11 +288,28 @@
"lists.subheading": "您的名單", "lists.subheading": "您的名單",
"lists.view_all": "View all lists", "lists.view_all": "View all lists",
"loading_indicator.label": "讀取中...", "loading_indicator.label": "讀取中...",
"login.fields.otp_code_hint": "Enter the two-factor code generated by your phone app or use one of your recovery codes",
"login.fields.otp_code_label": "Two-factor code:",
"login.fields.password_placeholder": "Password", "login.fields.password_placeholder": "Password",
"login.fields.username_placeholder": "Username", "login.fields.username_placeholder": "Username",
"login.log_in": "Log in", "login.log_in": "Log in",
"login.otp_log_in": "OTP Login",
"login.otp_log_in.fail": "Invalid code, please try again.",
"login.reset_password_hint": "Trouble logging in?", "login.reset_password_hint": "Trouble logging in?",
"media_gallery.toggle_visible": "切換可見性", "media_gallery.toggle_visible": "切換可見性",
"mfa.mfa_disable_enter_password": "Enter your current password to disable two-factor auth:",
"mfa.mfa_setup_enter_password": "Enter your current password to confirm your identity:",
"mfa.mfa_setup_scan_description": "Using your two-factor app, scan this QR code or enter text key:",
"mfa.mfa_setup_scan_key": "Key:",
"mfa.mfa_setup_scan_title": "Scan",
"mfa.mfa_setup_verify_description": "To enable two-factor authentication, enter the code from your two-factor app:",
"mfa.mfa_setup_verify_title": "Verify",
"mfa.otp_enabled_description": "You have enabled two-factor authentication via OTP.",
"mfa.otp_enabled_title": "OTP Enabled",
"mfa.setup_hint": "Follow these steps to set up multi-factor authentication on your account with OTP",
"mfa.setup_otp_title": "OTP Disabled",
"mfa.setup_recoverycodes": "Recovery codes",
"mfa.setup_warning": "Write these codes down or save them somewhere secure - otherwise you won't see them again. If you lose access to your 2FA app and recovery codes you'll be locked out of your account.",
"missing_indicator.label": "找不到", "missing_indicator.label": "找不到",
"missing_indicator.sublabel": "找不到此資源", "missing_indicator.sublabel": "找不到此資源",
"morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.", "morefollows.followers_label": "…and {count} more {count, plural, one {follower} other {followers}} on remote sites.",
@ -261,6 +317,7 @@
"mute_modal.hide_notifications": "隱藏來自這位使用者的通知?", "mute_modal.hide_notifications": "隱藏來自這位使用者的通知?",
"navigation_bar.admin_settings": "Admin settings", "navigation_bar.admin_settings": "Admin settings",
"navigation_bar.blocks": "封鎖使用者", "navigation_bar.blocks": "封鎖使用者",
"navigation_bar.bookmarks": "Bookmarks",
"navigation_bar.community_timeline": "本機時間軸", "navigation_bar.community_timeline": "本機時間軸",
"navigation_bar.compose": "撰寫新嘟文", "navigation_bar.compose": "撰寫新嘟文",
"navigation_bar.direct": "私訊", "navigation_bar.direct": "私訊",
@ -301,6 +358,8 @@
"notifications.column_settings.reblog": "轉嘟:", "notifications.column_settings.reblog": "轉嘟:",
"notifications.column_settings.show": "在欄位中顯示", "notifications.column_settings.show": "在欄位中顯示",
"notifications.column_settings.sound": "播放音效", "notifications.column_settings.sound": "播放音效",
"notifications.column_settings.sounds": "Sounds",
"notifications.column_settings.sounds.all_sounds": "Play sound for all notifications",
"notifications.filter.all": "全部", "notifications.filter.all": "全部",
"notifications.filter.boosts": "轉嘟", "notifications.filter.boosts": "轉嘟",
"notifications.filter.favourites": "最愛", "notifications.filter.favourites": "最愛",
@ -352,6 +411,8 @@
"registration.fields.password_placeholder": "Password", "registration.fields.password_placeholder": "Password",
"registration.fields.username_placeholder": "Username", "registration.fields.username_placeholder": "Username",
"registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.", "registration.lead": "With an account on {instance} you'll be able to follow people on any server in the fediverse.",
"registration.reason": "Why do you want to join?",
"registration.reason_hint": "This will help us review your application",
"registration.sign_up": "Sign up", "registration.sign_up": "Sign up",
"registration.tos": "Terms of Service", "registration.tos": "Terms of Service",
"relative_time.days": "{number} 天", "relative_time.days": "{number} 天",
@ -379,8 +440,12 @@
"search_results.statuses": "嘟文", "search_results.statuses": "嘟文",
"search_results.top": "Top", "search_results.top": "Top",
"search_results.total": "{count, number} 項結果", "search_results.total": "{count, number} 項結果",
"security.codes.fail": "Failed to fetch backup codes",
"security.confirm.fail": "Incorrect code or password. Try again.",
"security.delete_account.fail": "Account deletion failed.", "security.delete_account.fail": "Account deletion failed.",
"security.delete_account.success": "Account successfully deleted.", "security.delete_account.success": "Account successfully deleted.",
"security.disable.fail": "Incorrect password. Try again.",
"security.disable_mfa": "Disable",
"security.fields.email.label": "Email address", "security.fields.email.label": "Email address",
"security.fields.new_password.label": "New password", "security.fields.new_password.label": "New password",
"security.fields.old_password.label": "Current password", "security.fields.old_password.label": "Current password",
@ -390,6 +455,11 @@
"security.headers.tokens": "Sessions", "security.headers.tokens": "Sessions",
"security.headers.update_email": "Change Email", "security.headers.update_email": "Change Email",
"security.headers.update_password": "Change Password", "security.headers.update_password": "Change Password",
"security.mfa": "Set up 2-Factor Auth",
"security.mfa_enabled": "You have multi-factor authentication set up with OTP.",
"security.mfa_header": "Authorization Methods",
"security.mfa_setup_hint": "Configure multi-factor authentication with OTP",
"security.qr.fail": "Failed to fetch setup key",
"security.submit": "Save changes", "security.submit": "Save changes",
"security.submit.delete": "Delete Account", "security.submit.delete": "Delete Account",
"security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.", "security.text.delete": "To delete your account, enter your password then click Delete Account. This is a permanent action that cannot be undone. Your account will be destroyed from this server, and a deletion request will be sent to other servers. It's not guaranteed that all servers will purge your account.",
@ -403,6 +473,7 @@
"status.admin_account": "開啟 @{name} 的管理介面", "status.admin_account": "開啟 @{name} 的管理介面",
"status.admin_status": "在管理介面開啟此嘟文", "status.admin_status": "在管理介面開啟此嘟文",
"status.block": "封鎖 @{name}", "status.block": "封鎖 @{name}",
"status.bookmark": "Bookmark",
"status.cancel_reblog_private": "取消轉嘟", "status.cancel_reblog_private": "取消轉嘟",
"status.cannot_reblog": "這篇嘟文無法被轉嘟", "status.cannot_reblog": "這篇嘟文無法被轉嘟",
"status.copy": "將連結複製到嘟文中", "status.copy": "將連結複製到嘟文中",
@ -439,6 +510,7 @@
"status.show_more": "顯示更多", "status.show_more": "顯示更多",
"status.show_more_all": "顯示更多這類嘟文", "status.show_more_all": "顯示更多這類嘟文",
"status.show_thread": "顯示討論串", "status.show_thread": "顯示討論串",
"status.unbookmark": "Remove bookmark",
"status.unmute_conversation": "解除此對話的靜音", "status.unmute_conversation": "解除此對話的靜音",
"status.unpin": "解除置頂", "status.unpin": "解除置頂",
"status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}", "status_list.queue_label": "Click to see {count} new {count, plural, one {post} other {posts}}",

View File

@ -9,6 +9,7 @@ import WhoToFollowPanel from '../features/ui/components/who_to_follow_panel';
import LinkFooter from '../features/ui/components/link_footer'; import LinkFooter from '../features/ui/components/link_footer';
import SignUpPanel from '../features/ui/components/sign_up_panel'; import SignUpPanel from '../features/ui/components/sign_up_panel';
import ProfileInfoPanel from '../features/ui/components/profile_info_panel'; import ProfileInfoPanel from '../features/ui/components/profile_info_panel';
import ProfileMediaPanel from '../features/ui/components/profile_media_panel';
import { acctFull } from 'soapbox/utils/accounts'; import { acctFull } from 'soapbox/utils/accounts';
import { getFeatures } from 'soapbox/utils/features'; import { getFeatures } from 'soapbox/utils/features';
import { makeGetAccount } from '../selectors'; import { makeGetAccount } from '../selectors';
@ -81,6 +82,7 @@ class ProfilePage extends ImmutablePureComponent {
<div className='columns-area__panels__pane__inner'> <div className='columns-area__panels__pane__inner'>
<SignUpPanel /> <SignUpPanel />
{features.suggestions && <WhoToFollowPanel />} {features.suggestions && <WhoToFollowPanel />}
{account && <ProfileMediaPanel account={account} />}
<LinkFooter /> <LinkFooter />
</div> </div>
</div> </div>

View File

@ -34,7 +34,11 @@ export default function settings(state = initialState, action) {
case ME_FETCH_SUCCESS: case ME_FETCH_SUCCESS:
case ME_PATCH_SUCCESS: case ME_PATCH_SUCCESS:
const me = fromJS(action.me); const me = fromJS(action.me);
const fePrefs = me.getIn(['pleroma', 'settings_store', FE_NAME]); let fePrefs = me.getIn(['pleroma', 'settings_store', FE_NAME], ImmutableMap());
// Spinster migration hotfix
if (fePrefs.get('locale') === '') {
fePrefs = fePrefs.delete('locale');
}
return state.merge(fePrefs); return state.merge(fePrefs);
case NOTIFICATIONS_FILTER_SET: case NOTIFICATIONS_FILTER_SET:
case SETTING_CHANGE: case SETTING_CHANGE:

View File

@ -0,0 +1,70 @@
import { shouldFilter } from '../timelines';
import { fromJS } from 'immutable';
describe('shouldFilter', () => {
it('returns false under normal circumstances', () => {
const columnSettings = fromJS({});
const status = fromJS({});
expect(shouldFilter(status, columnSettings)).toBe(false);
});
it('reblog: returns true when `shows.reblog == false`', () => {
const columnSettings = fromJS({ shows: { reblog: false } });
const status = fromJS({ reblog: {} });
expect(shouldFilter(status, columnSettings)).toBe(true);
});
it('reblog: returns false when `shows.reblog == true`', () => {
const columnSettings = fromJS({ shows: { reblog: true } });
const status = fromJS({ reblog: {} });
expect(shouldFilter(status, columnSettings)).toBe(false);
});
it('reply: returns true when `shows.reply == false`', () => {
const columnSettings = fromJS({ shows: { reply: false } });
const status = fromJS({ in_reply_to_id: '1234' });
expect(shouldFilter(status, columnSettings)).toBe(true);
});
it('reply: returns false when `shows.reply == true`', () => {
const columnSettings = fromJS({ shows: { reply: true } });
const status = fromJS({ in_reply_to_id: '1234' });
expect(shouldFilter(status, columnSettings)).toBe(false);
});
it('direct: returns true when `shows.direct == false`', () => {
const columnSettings = fromJS({ shows: { direct: false } });
const status = fromJS({ visibility: 'direct' });
expect(shouldFilter(status, columnSettings)).toBe(true);
});
it('direct: returns false when `shows.direct == true`', () => {
const columnSettings = fromJS({ shows: { direct: true } });
const status = fromJS({ visibility: 'direct' });
expect(shouldFilter(status, columnSettings)).toBe(false);
});
it('direct: returns false for a public post when `shows.direct == false`', () => {
const columnSettings = fromJS({ shows: { direct: false } });
const status = fromJS({ visibility: 'public' });
expect(shouldFilter(status, columnSettings)).toBe(false);
});
it('multiple settings', () => {
const columnSettings = fromJS({ shows: { reblog: false, reply: false, direct: false } });
const status = fromJS({ reblog: null, in_reply_to_id: null, visibility: 'direct' });
expect(shouldFilter(status, columnSettings)).toBe(true);
});
it('multiple settings', () => {
const columnSettings = fromJS({ shows: { reblog: false, reply: true, direct: false } });
const status = fromJS({ reblog: null, in_reply_to_id: '1234', visibility: 'public' });
expect(shouldFilter(status, columnSettings)).toBe(false);
});
it('multiple settings', () => {
const columnSettings = fromJS({ shows: { reblog: true, reply: false, direct: true } });
const status = fromJS({ reblog: {}, in_reply_to_id: '1234', visibility: 'direct' });
expect(shouldFilter(status, columnSettings)).toBe(true);
});
});

View File

@ -0,0 +1,13 @@
import { Map as ImmutableMap } from 'immutable';
export const shouldFilter = (status, columnSettings) => {
const shows = ImmutableMap({
reblog: status.get('reblog') !== null,
reply: status.get('in_reply_to_id') !== null,
direct: status.get('visibility') === 'direct',
});
return shows.some((value, key) => {
return columnSettings.getIn(['shows', key]) === false && value;
});
};

View File

@ -65,6 +65,7 @@
@import 'components/theme-toggle'; @import 'components/theme-toggle';
@import 'components/trends'; @import 'components/trends';
@import 'components/wtf-panel'; @import 'components/wtf-panel';
@import 'components/profile-media-panel';
@import 'components/profile-info-panel'; @import 'components/profile-info-panel';
@import 'components/setting-toggle'; @import 'components/setting-toggle';
@import 'components/spoiler-button'; @import 'components/spoiler-button';

View File

@ -207,6 +207,10 @@
padding: 10px 10px 0; padding: 10px 10px 0;
&--nonuser {padding: 10px 10px 15px;} &--nonuser {padding: 10px 10px 15px;}
} }
.account-mobile-container.deactivated {
margin-top: 50px;
}
} }
} // end .account__header } // end .account__header

View File

@ -678,6 +678,7 @@
align-items: center; align-items: center;
justify-content: center; justify-content: center;
min-height: 160px; min-height: 160px;
border-radius: 0 0 10px 10px;
@supports(display: grid) { // hack to fix Chrome <57 @supports(display: grid) { // hack to fix Chrome <57
contain: strict; contain: strict;

View File

@ -289,6 +289,16 @@
height: 140px; height: 140px;
width: 100%; width: 100%;
overflow: hidden; overflow: hidden;
&.video {
background-image: url('../images/video-placeholder.png');
background-size: cover;
}
&.audio {
background-image: url('../images/audio-placeholder.png');
background-size: cover;
}
} }
} // end .compose-form .compose-form__modifiers } // end .compose-form .compose-form__modifiers

View File

@ -28,6 +28,14 @@
display: inline; display: inline;
} }
ul li::after {
content: ' · ';
}
ul li:last-child::after {
content: '';
}
p { p {
color: hsla(var(--primary-text-color_hsl), 0.8); color: hsla(var(--primary-text-color_hsl), 0.8);
font-size: 13px; font-size: 13px;

View File

@ -5,6 +5,7 @@
border-radius: 4px; border-radius: 4px;
position: relative; position: relative;
width: 100%; width: 100%;
height: auto;
background-color: var(--brand-color--faint); background-color: var(--brand-color--faint);
} }
@ -41,7 +42,7 @@
width: 100%; width: 100%;
img { img {
object-fit: contain; object-fit: cover;
} }
} }
@ -63,6 +64,18 @@
} }
} }
.status__wrapper, .detailed-status__wrapper {
.media-gallery__item-thumbnail {
&,
.still-image {
img {
object-fit: contain;
}
}
}
}
.media-gallery__preview { .media-gallery__preview {
width: 100%; width: 100%;
height: 100%; height: 100%;

View File

@ -128,3 +128,21 @@
} }
} }
} }
.profile-info-panel.deactivated {
.profile-info-panel__name-content {
text-transform: uppercase;
}
.profile-info-panel__name-content::before {
content: '[';
}
.profile-info-panel__name-content::after {
content: ']';
}
.profile-info-panel-content__deactivated {
color: var(--primary-text-color--faint);
}
}

View File

@ -0,0 +1,48 @@
.media-panel {
@include standard-panel-shadow;
display: flex;
width: 100%;
border-radius: 10px;
flex-direction: column;
height: auto;
box-sizing: border-box;
background: var(--foreground-color);
&:first-child {
margin-top: 0;
}
&:not(:last-of-type) {
margin-bottom: 10px;
}
.media-panel-header {
display: flex;
align-items: baseline;
margin-bottom: 10px;
padding: 15px 15px 0;
&__icon {
margin-right: 10px;
}
&__label {
flex: 1 1;
color: var(--primary-text-color);
font-size: 16px;
font-weight: bold;
line-height: 19px;
}
}
&__content {
width: 100%;
padding: 8px 0;
}
&__list {
padding: 0 5px;
display: flex;
flex-wrap: wrap;
}
}

View File

@ -14,26 +14,26 @@
} }
ul, ul,
ol, ol {
blockquote { margin-left: 20px;
margin-bottom: 20px;
margin-left: 15px;
} }
ul { ul {
list-style: disc inside none; list-style: disc outside none;
}
ol {
list-style: decimal outside none;
} }
li p { li p {
display: inline-block; display: inline-block;
} }
ol { blockquote {
list-style: decimal inside none; padding: 5px 0 5px 15px;
} border-left: 3px solid hsla(var(--primary-text-color_hsl), 0.4);
color: var(--primary-text-color--faint);
blockquote p {
font-style: italic;
} }
code { code {
@ -60,6 +60,15 @@
} }
} }
.status__content > ul,
.status__content > ol {
margin-bottom: 20px;
}
.status__content > blockquote {
margin-bottom: 20px;
}
.status__content--with-action { .status__content--with-action {
cursor: pointer; cursor: pointer;
} }

View File

@ -12,10 +12,26 @@ button.column-header__button.active {
} }
.detailed-status__wrapper .detailed-status__action-bar { .detailed-status__wrapper .detailed-status__action-bar {
border-radius: 0; border-radius: 0 0 10px 10px;
} }
.slist .item-list .column-link { .slist .item-list .column-link {
background-color: transparent; background-color: transparent;
border-top: 1px solid var(--brand-color--med); border-top: 1px solid var(--brand-color--med);
} }
.focusable {
&:focus {
border-radius: 0 0 10px 10px;
}
}
.load-more:hover {
border-radius: 0 0 10px 10px;
}
// this still looks like shit but at least it's better than it overflowing
.empty-column-indicator {
border-radius: 0 0 10px 10px;
}