mirror of
https://github.com/mastodon/mastodon.git
synced 2025-11-29 10:53:39 +00:00
Merge branch 'main' into nt--remove-otp-requirement-for-enabling-webauthn
This commit is contained in:
commit
8902ba1fd5
2
Gemfile
2
Gemfile
|
|
@ -88,7 +88,7 @@ gem 'sidekiq-scheduler', '~> 6.0'
|
||||||
gem 'sidekiq-unique-jobs', '> 8'
|
gem 'sidekiq-unique-jobs', '> 8'
|
||||||
gem 'simple_form', '~> 5.2'
|
gem 'simple_form', '~> 5.2'
|
||||||
gem 'simple-navigation', '~> 4.4'
|
gem 'simple-navigation', '~> 4.4'
|
||||||
gem 'stoplight'
|
gem 'stoplight', github: 'ClearlyClaire/stoplight', ref: 'f13e0c0d5e6d34af8d3cfc888871caa84237db42'
|
||||||
gem 'strong_migrations'
|
gem 'strong_migrations'
|
||||||
gem 'tty-prompt', '~> 0.23', require: false
|
gem 'tty-prompt', '~> 0.23', require: false
|
||||||
gem 'twitter-text', '~> 3.1.0'
|
gem 'twitter-text', '~> 3.1.0'
|
||||||
|
|
|
||||||
12
Gemfile.lock
12
Gemfile.lock
|
|
@ -1,3 +1,11 @@
|
||||||
|
GIT
|
||||||
|
remote: https://github.com/ClearlyClaire/stoplight.git
|
||||||
|
revision: f13e0c0d5e6d34af8d3cfc888871caa84237db42
|
||||||
|
ref: f13e0c0d5e6d34af8d3cfc888871caa84237db42
|
||||||
|
specs:
|
||||||
|
stoplight (5.3.1)
|
||||||
|
zeitwerk
|
||||||
|
|
||||||
GIT
|
GIT
|
||||||
remote: https://github.com/mastodon/webpush.git
|
remote: https://github.com/mastodon/webpush.git
|
||||||
revision: 9631ac63045cfabddacc69fc06e919b4c13eb913
|
revision: 9631ac63045cfabddacc69fc06e919b4c13eb913
|
||||||
|
|
@ -853,8 +861,6 @@ GEM
|
||||||
stackprof (0.2.27)
|
stackprof (0.2.27)
|
||||||
starry (0.2.0)
|
starry (0.2.0)
|
||||||
base64
|
base64
|
||||||
stoplight (5.3.1)
|
|
||||||
zeitwerk
|
|
||||||
stringio (3.1.7)
|
stringio (3.1.7)
|
||||||
strong_migrations (2.5.0)
|
strong_migrations (2.5.0)
|
||||||
activerecord (>= 7.1)
|
activerecord (>= 7.1)
|
||||||
|
|
@ -1086,7 +1092,7 @@ DEPENDENCIES
|
||||||
simplecov (~> 0.22)
|
simplecov (~> 0.22)
|
||||||
simplecov-lcov (~> 0.8)
|
simplecov-lcov (~> 0.8)
|
||||||
stackprof
|
stackprof
|
||||||
stoplight
|
stoplight!
|
||||||
strong_migrations
|
strong_migrations
|
||||||
test-prof
|
test-prof
|
||||||
thor (~> 1.2)
|
thor (~> 1.2)
|
||||||
|
|
|
||||||
|
|
@ -97,12 +97,17 @@ export const ensureComposeIsVisible = (getState) => {
|
||||||
};
|
};
|
||||||
|
|
||||||
export function setComposeToStatus(status, text, spoiler_text) {
|
export function setComposeToStatus(status, text, spoiler_text) {
|
||||||
return{
|
return (dispatch, getState) => {
|
||||||
type: COMPOSE_SET_STATUS,
|
const maxOptions = getState().server.getIn(['server', 'configuration', 'polls', 'max_options']);
|
||||||
status,
|
|
||||||
text,
|
dispatch({
|
||||||
spoiler_text,
|
type: COMPOSE_SET_STATUS,
|
||||||
};
|
status,
|
||||||
|
text,
|
||||||
|
spoiler_text,
|
||||||
|
maxOptions,
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export function changeCompose(text) {
|
export function changeCompose(text) {
|
||||||
|
|
@ -216,6 +221,7 @@ export function submitCompose(successCallback) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const visibility = getState().getIn(['compose', 'privacy']);
|
||||||
api().request({
|
api().request({
|
||||||
url: statusId === null ? '/api/v1/statuses' : `/api/v1/statuses/${statusId}`,
|
url: statusId === null ? '/api/v1/statuses' : `/api/v1/statuses/${statusId}`,
|
||||||
method: statusId === null ? 'post' : 'put',
|
method: statusId === null ? 'post' : 'put',
|
||||||
|
|
@ -226,11 +232,11 @@ export function submitCompose(successCallback) {
|
||||||
media_attributes,
|
media_attributes,
|
||||||
sensitive: getState().getIn(['compose', 'sensitive']),
|
sensitive: getState().getIn(['compose', 'sensitive']),
|
||||||
spoiler_text: getState().getIn(['compose', 'spoiler']) ? getState().getIn(['compose', 'spoiler_text'], '') : '',
|
spoiler_text: getState().getIn(['compose', 'spoiler']) ? getState().getIn(['compose', 'spoiler_text'], '') : '',
|
||||||
visibility: getState().getIn(['compose', 'privacy']),
|
visibility: visibility,
|
||||||
poll: getState().getIn(['compose', 'poll'], null),
|
poll: getState().getIn(['compose', 'poll'], null),
|
||||||
language: getState().getIn(['compose', 'language']),
|
language: getState().getIn(['compose', 'language']),
|
||||||
quoted_status_id: getState().getIn(['compose', 'quoted_status_id']),
|
quoted_status_id: getState().getIn(['compose', 'quoted_status_id']),
|
||||||
quote_approval_policy: getState().getIn(['compose', 'quote_policy']),
|
quote_approval_policy: visibility === 'private' || visibility === 'direct' ? 'nobody' : getState().getIn(['compose', 'quote_policy']),
|
||||||
},
|
},
|
||||||
headers: {
|
headers: {
|
||||||
'Idempotency-Key': getState().getIn(['compose', 'idempotencyKey']),
|
'Idempotency-Key': getState().getIn(['compose', 'idempotencyKey']),
|
||||||
|
|
|
||||||
|
|
@ -89,10 +89,15 @@ export function fetchStatusFail(id, error, skipLoading) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function redraft(status, raw_text) {
|
export function redraft(status, raw_text) {
|
||||||
return {
|
return (dispatch, getState) => {
|
||||||
type: REDRAFT,
|
const maxOptions = getState().server.getIn(['server', 'configuration', 'polls', 'max_options']);
|
||||||
status,
|
|
||||||
raw_text,
|
dispatch({
|
||||||
|
type: REDRAFT,
|
||||||
|
status,
|
||||||
|
raw_text,
|
||||||
|
maxOptions,
|
||||||
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,8 @@ export type NotificationWithStatusType =
|
||||||
| 'mention'
|
| 'mention'
|
||||||
| 'quote'
|
| 'quote'
|
||||||
| 'poll'
|
| 'poll'
|
||||||
| 'update';
|
| 'update'
|
||||||
|
| 'quoted_update';
|
||||||
|
|
||||||
export type NotificationType =
|
export type NotificationType =
|
||||||
| NotificationWithStatusType
|
| NotificationWithStatusType
|
||||||
|
|
|
||||||
|
|
@ -96,6 +96,7 @@ export interface ApiStatusJSON {
|
||||||
replies_count: number;
|
replies_count: number;
|
||||||
reblogs_count: number;
|
reblogs_count: number;
|
||||||
favorites_count: number;
|
favorites_count: number;
|
||||||
|
quotes_count: number;
|
||||||
edited_at?: string;
|
edited_at?: string;
|
||||||
|
|
||||||
favorited?: boolean;
|
favorited?: boolean;
|
||||||
|
|
|
||||||
|
|
@ -160,7 +160,12 @@ export const StatusReblogButton: FC<ReblogButtonProps> = ({
|
||||||
)}
|
)}
|
||||||
icon='retweet'
|
icon='retweet'
|
||||||
iconComponent={iconComponent}
|
iconComponent={iconComponent}
|
||||||
counter={counters ? (status.get('reblogs_count') as number) : undefined}
|
counter={
|
||||||
|
counters
|
||||||
|
? (status.get('reblogs_count') as number) +
|
||||||
|
(status.get('quotes_count') as number)
|
||||||
|
: undefined
|
||||||
|
}
|
||||||
active={isReblogged}
|
active={isReblogged}
|
||||||
/>
|
/>
|
||||||
</Dropdown>
|
</Dropdown>
|
||||||
|
|
@ -283,7 +288,12 @@ export const LegacyReblogButton: FC<ReblogButtonProps> = ({
|
||||||
icon='retweet'
|
icon='retweet'
|
||||||
iconComponent={iconComponent}
|
iconComponent={iconComponent}
|
||||||
onClick={!disabled ? handleClick : undefined}
|
onClick={!disabled ? handleClick : undefined}
|
||||||
counter={counters ? (status.get('reblogs_count') as number) : undefined}
|
counter={
|
||||||
|
counters
|
||||||
|
? (status.get('reblogs_count') as number) +
|
||||||
|
(status.get('quotes_count') as number)
|
||||||
|
: undefined
|
||||||
|
}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -84,12 +84,13 @@ export const QuotedStatus: React.FC<QuotedStatusProps> = ({
|
||||||
const status = useAppSelector((state) =>
|
const status = useAppSelector((state) =>
|
||||||
quotedStatusId ? state.statuses.get(quotedStatusId) : undefined,
|
quotedStatusId ? state.statuses.get(quotedStatusId) : undefined,
|
||||||
);
|
);
|
||||||
|
const isQuoteLoaded = !!status && !status.get('isLoading');
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!status && quotedStatusId) {
|
if (!isQuoteLoaded && quotedStatusId) {
|
||||||
dispatch(fetchStatus(quotedStatusId));
|
dispatch(fetchStatus(quotedStatusId));
|
||||||
}
|
}
|
||||||
}, [status, quotedStatusId, dispatch]);
|
}, [isQuoteLoaded, quotedStatusId, dispatch]);
|
||||||
|
|
||||||
// In order to find out whether the quoted post should be completely hidden
|
// In order to find out whether the quoted post should be completely hidden
|
||||||
// due to a matching filter, we run it through the selector used by `status_container`.
|
// due to a matching filter, we run it through the selector used by `status_container`.
|
||||||
|
|
|
||||||
|
|
@ -38,6 +38,7 @@ const messages = defineMessages({
|
||||||
reblog: { id: 'notification.reblog', defaultMessage: '{name} boosted your post' },
|
reblog: { id: 'notification.reblog', defaultMessage: '{name} boosted your post' },
|
||||||
status: { id: 'notification.status', defaultMessage: '{name} just posted' },
|
status: { id: 'notification.status', defaultMessage: '{name} just posted' },
|
||||||
update: { id: 'notification.update', defaultMessage: '{name} edited a post' },
|
update: { id: 'notification.update', defaultMessage: '{name} edited a post' },
|
||||||
|
quoted_update: { id: 'notification.quoted_update', defaultMessage: '{name} edited a post you have quoted' },
|
||||||
adminSignUp: { id: 'notification.admin.sign_up', defaultMessage: '{name} signed up' },
|
adminSignUp: { id: 'notification.admin.sign_up', defaultMessage: '{name} signed up' },
|
||||||
adminReport: { id: 'notification.admin.report', defaultMessage: '{name} reported {target}' },
|
adminReport: { id: 'notification.admin.report', defaultMessage: '{name} reported {target}' },
|
||||||
relationshipsSevered: { id: 'notification.relationships_severance_event', defaultMessage: 'Lost connections with {name}' },
|
relationshipsSevered: { id: 'notification.relationships_severance_event', defaultMessage: 'Lost connections with {name}' },
|
||||||
|
|
@ -336,6 +337,41 @@ class Notification extends ImmutablePureComponent {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
renderQuotedUpdate (notification, link) {
|
||||||
|
const { intl, unread, status } = this.props;
|
||||||
|
|
||||||
|
if (!status) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Hotkeys handlers={this.getHandlers()}>
|
||||||
|
<div className={classNames('notification notification-update focusable', { unread })} tabIndex={0} aria-label={notificationForScreenReader(intl, intl.formatMessage(messages.update, { name: notification.getIn(['account', 'acct']) }), notification.get('created_at'))}>
|
||||||
|
<div className='notification__message'>
|
||||||
|
<Icon id='pencil' icon={EditIcon} />
|
||||||
|
|
||||||
|
<span title={notification.get('created_at')}>
|
||||||
|
<FormattedMessage id='notification.quoted_update' defaultMessage='{name} edited a post you have quoted' values={{ name: link }} />
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<StatusQuoteManager
|
||||||
|
id={notification.get('status')}
|
||||||
|
account={notification.get('account')}
|
||||||
|
contextType='notifications'
|
||||||
|
muted
|
||||||
|
withDismiss
|
||||||
|
hidden={this.props.hidden}
|
||||||
|
getScrollPosition={this.props.getScrollPosition}
|
||||||
|
updateScrollBottom={this.props.updateScrollBottom}
|
||||||
|
cachedMediaWidth={this.props.cachedMediaWidth}
|
||||||
|
cacheMediaWidth={this.props.cacheMediaWidth}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</Hotkeys>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
renderPoll (notification, account) {
|
renderPoll (notification, account) {
|
||||||
const { intl, unread, status } = this.props;
|
const { intl, unread, status } = this.props;
|
||||||
const ownPoll = me === account.get('id');
|
const ownPoll = me === account.get('id');
|
||||||
|
|
@ -492,6 +528,8 @@ class Notification extends ImmutablePureComponent {
|
||||||
return this.renderStatus(notification, link);
|
return this.renderStatus(notification, link);
|
||||||
case 'update':
|
case 'update':
|
||||||
return this.renderUpdate(notification, link);
|
return this.renderUpdate(notification, link);
|
||||||
|
case 'quoted_update':
|
||||||
|
return this.renderQuotedUpdate(notification, link);
|
||||||
case 'poll':
|
case 'poll':
|
||||||
return this.renderPoll(notification, account);
|
return this.renderPoll(notification, account);
|
||||||
case 'severed_relationships':
|
case 'severed_relationships':
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,7 @@ import { NotificationMention } from './notification_mention';
|
||||||
import { NotificationModerationWarning } from './notification_moderation_warning';
|
import { NotificationModerationWarning } from './notification_moderation_warning';
|
||||||
import { NotificationPoll } from './notification_poll';
|
import { NotificationPoll } from './notification_poll';
|
||||||
import { NotificationQuote } from './notification_quote';
|
import { NotificationQuote } from './notification_quote';
|
||||||
|
import { NotificationQuotedUpdate } from './notification_quoted_update';
|
||||||
import { NotificationReblog } from './notification_reblog';
|
import { NotificationReblog } from './notification_reblog';
|
||||||
import { NotificationSeveredRelationships } from './notification_severed_relationships';
|
import { NotificationSeveredRelationships } from './notification_severed_relationships';
|
||||||
import { NotificationStatus } from './notification_status';
|
import { NotificationStatus } from './notification_status';
|
||||||
|
|
@ -115,6 +116,14 @@ export const NotificationGroup: React.FC<{
|
||||||
<NotificationUpdate unread={unread} notification={notificationGroup} />
|
<NotificationUpdate unread={unread} notification={notificationGroup} />
|
||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
|
case 'quoted_update':
|
||||||
|
content = (
|
||||||
|
<NotificationQuotedUpdate
|
||||||
|
unread={unread}
|
||||||
|
notification={notificationGroup}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
break;
|
||||||
case 'admin.sign_up':
|
case 'admin.sign_up':
|
||||||
content = (
|
content = (
|
||||||
<NotificationAdminSignUp
|
<NotificationAdminSignUp
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,31 @@
|
||||||
|
import { FormattedMessage } from 'react-intl';
|
||||||
|
|
||||||
|
import EditIcon from '@/material-icons/400-24px/edit.svg?react';
|
||||||
|
import type { NotificationGroupQuotedUpdate } from 'mastodon/models/notification_group';
|
||||||
|
|
||||||
|
import type { LabelRenderer } from './notification_group_with_status';
|
||||||
|
import { NotificationWithStatus } from './notification_with_status';
|
||||||
|
|
||||||
|
const labelRenderer: LabelRenderer = (displayedName) => (
|
||||||
|
<FormattedMessage
|
||||||
|
id='notification.quoted_update'
|
||||||
|
defaultMessage='{name} edited a post you have quoted'
|
||||||
|
values={{ name: displayedName }}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
|
||||||
|
export const NotificationQuotedUpdate: React.FC<{
|
||||||
|
notification: NotificationGroupQuotedUpdate;
|
||||||
|
unread: boolean;
|
||||||
|
}> = ({ notification, unread }) => (
|
||||||
|
<NotificationWithStatus
|
||||||
|
type='update'
|
||||||
|
icon={EditIcon}
|
||||||
|
iconId='edit'
|
||||||
|
accountIds={notification.sampleAccountIds}
|
||||||
|
count={notification.notifications_count}
|
||||||
|
statusId={notification.statusId}
|
||||||
|
labelRenderer={labelRenderer}
|
||||||
|
unread={unread}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
|
@ -233,7 +233,10 @@ export const Footer: React.FC<{
|
||||||
icon='retweet'
|
icon='retweet'
|
||||||
iconComponent={reblogIconComponent}
|
iconComponent={reblogIconComponent}
|
||||||
onClick={handleReblogClick}
|
onClick={handleReblogClick}
|
||||||
counter={status.get('reblogs_count') as number}
|
counter={
|
||||||
|
(status.get('reblogs_count') as number) +
|
||||||
|
(status.get('quotes_count') as number)
|
||||||
|
}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<IconButton
|
<IconButton
|
||||||
|
|
|
||||||
|
|
@ -127,6 +127,7 @@ export const DetailedStatus: React.FC<{
|
||||||
let media;
|
let media;
|
||||||
let applicationLink;
|
let applicationLink;
|
||||||
let reblogLink;
|
let reblogLink;
|
||||||
|
let quotesLink;
|
||||||
let attachmentAspectRatio;
|
let attachmentAspectRatio;
|
||||||
|
|
||||||
if (properStatus.get('media_attachments').getIn([0, 'type']) === 'video') {
|
if (properStatus.get('media_attachments').getIn([0, 'type']) === 'video') {
|
||||||
|
|
@ -279,6 +280,23 @@ export const DetailedStatus: React.FC<{
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (['private', 'direct'].includes(status.get('visibility') as string)) {
|
||||||
|
quotesLink = '';
|
||||||
|
} else {
|
||||||
|
quotesLink = (
|
||||||
|
<span className='detailed-status__link'>
|
||||||
|
<span className='detailed-status__quotes'>
|
||||||
|
<AnimatedNumber value={status.get('quotes_count')} />
|
||||||
|
</span>
|
||||||
|
<FormattedMessage
|
||||||
|
id='status.quotes'
|
||||||
|
defaultMessage='{count, plural, one {quote} other {quotes}}'
|
||||||
|
values={{ count: status.get('quotes_count') }}
|
||||||
|
/>
|
||||||
|
</span>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
const favouriteLink = (
|
const favouriteLink = (
|
||||||
<Link
|
<Link
|
||||||
to={`/@${status.getIn(['account', 'acct'])}/${status.get('id')}/favourites`}
|
to={`/@${status.getIn(['account', 'acct'])}/${status.get('id')}/favourites`}
|
||||||
|
|
@ -420,6 +438,8 @@ export const DetailedStatus: React.FC<{
|
||||||
<div className='detailed-status__meta__line'>
|
<div className='detailed-status__meta__line'>
|
||||||
{reblogLink}
|
{reblogLink}
|
||||||
{reblogLink && <>·</>}
|
{reblogLink && <>·</>}
|
||||||
|
{quotesLink}
|
||||||
|
{quotesLink && <>·</>}
|
||||||
{favouriteLink}
|
{favouriteLink}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@ const messages = defineMessages({
|
||||||
},
|
},
|
||||||
quoteNobody: {
|
quoteNobody: {
|
||||||
id: 'visibility_modal.quote_nobody',
|
id: 'visibility_modal.quote_nobody',
|
||||||
defaultMessage: 'No one',
|
defaultMessage: 'Just me',
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
@ -253,7 +253,7 @@ export const VisibilityModal: FC<VisibilityModalProps> = forwardRef(
|
||||||
items={quoteItems}
|
items={quoteItems}
|
||||||
onChange={handleQuotePolicyChange}
|
onChange={handleQuotePolicyChange}
|
||||||
classPrefix='visibility-dropdown'
|
classPrefix='visibility-dropdown'
|
||||||
current={quotePolicy}
|
current={disableQuotePolicy ? 'nobody' : quotePolicy}
|
||||||
title={intl.formatMessage(messages.buttonTitle)}
|
title={intl.formatMessage(messages.buttonTitle)}
|
||||||
disabled={disableQuotePolicy}
|
disabled={disableQuotePolicy}
|
||||||
id={quoteDropdownId}
|
id={quoteDropdownId}
|
||||||
|
|
@ -302,7 +302,7 @@ const QuotePolicyHelper: FC<{
|
||||||
<p className='visibility-dropdown__helper'>
|
<p className='visibility-dropdown__helper'>
|
||||||
<FormattedMessage
|
<FormattedMessage
|
||||||
id='visibility_modal.helper.private_quoting'
|
id='visibility_modal.helper.private_quoting'
|
||||||
defaultMessage="Follower-only posts can't be quoted."
|
defaultMessage="Follower-only posts authored on Mastodon can't be quoted by others."
|
||||||
/>
|
/>
|
||||||
</p>
|
</p>
|
||||||
);
|
);
|
||||||
|
|
@ -313,7 +313,7 @@ const QuotePolicyHelper: FC<{
|
||||||
<p className='visibility-dropdown__helper'>
|
<p className='visibility-dropdown__helper'>
|
||||||
<FormattedMessage
|
<FormattedMessage
|
||||||
id='visibility_modal.helper.direct_quoting'
|
id='visibility_modal.helper.direct_quoting'
|
||||||
defaultMessage="Private mentions can't be quoted."
|
defaultMessage="Private mentions authored on Mastodon can't be quoted by others."
|
||||||
/>
|
/>
|
||||||
</p>
|
</p>
|
||||||
);
|
);
|
||||||
|
|
|
||||||
|
|
@ -946,14 +946,11 @@
|
||||||
"video.volume_up": "Həcmi artır",
|
"video.volume_up": "Həcmi artır",
|
||||||
"visibility_modal.button_title": "Görünməni ayarla",
|
"visibility_modal.button_title": "Görünməni ayarla",
|
||||||
"visibility_modal.header": "Görünmə və qarşılıqlı əlaqə",
|
"visibility_modal.header": "Görünmə və qarşılıqlı əlaqə",
|
||||||
"visibility_modal.helper.direct_quoting": "Şəxsi adçəkmələr, sitat gətirilə bilməz.",
|
|
||||||
"visibility_modal.helper.privacy_editing": "Dərc edilən göndərişlərin görünməsi dəyişdirilə bilməz.",
|
"visibility_modal.helper.privacy_editing": "Dərc edilən göndərişlərin görünməsi dəyişdirilə bilməz.",
|
||||||
"visibility_modal.helper.private_quoting": "Yalnız izləyicilərə xas göndərişlər, sitat gətirilə bilməz.",
|
|
||||||
"visibility_modal.helper.unlisted_quoting": "İnsanlar sizdən sitat gətirdiyi zaman, onların göndərişləri də trend zaman xəttindən gizlədiləcək.",
|
"visibility_modal.helper.unlisted_quoting": "İnsanlar sizdən sitat gətirdiyi zaman, onların göndərişləri də trend zaman xəttindən gizlədiləcək.",
|
||||||
"visibility_modal.instructions": "Bu göndərişlə kimin əlaqə qura biləcəyini idarə edin. Qlobal ayarlar <link>Tərcihlər > Digər</link> bölməsinin altında tapıla bilər.",
|
"visibility_modal.instructions": "Bu göndərişlə kimin əlaqə qura biləcəyini idarə edin. Qlobal ayarlar <link>Tərcihlər > Digər</link> bölməsinin altında tapıla bilər.",
|
||||||
"visibility_modal.privacy_label": "Gizlilik",
|
"visibility_modal.privacy_label": "Gizlilik",
|
||||||
"visibility_modal.quote_followers": "Yalnız izləyicilər",
|
"visibility_modal.quote_followers": "Yalnız izləyicilər",
|
||||||
"visibility_modal.quote_label": "Kimin sitat gətirə biləcəyini dəyişdir",
|
"visibility_modal.quote_label": "Kimin sitat gətirə biləcəyini dəyişdir",
|
||||||
"visibility_modal.quote_nobody": "Heç kim",
|
|
||||||
"visibility_modal.quote_public": "Hər kəs"
|
"visibility_modal.quote_public": "Hər kəs"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -483,6 +483,7 @@
|
||||||
"keyboard_shortcuts.home": "Адкрыць хатнюю храналагічную стужку",
|
"keyboard_shortcuts.home": "Адкрыць хатнюю храналагічную стужку",
|
||||||
"keyboard_shortcuts.hotkey": "Спалучэнне клавіш",
|
"keyboard_shortcuts.hotkey": "Спалучэнне клавіш",
|
||||||
"keyboard_shortcuts.legend": "Паказаць легенду",
|
"keyboard_shortcuts.legend": "Паказаць легенду",
|
||||||
|
"keyboard_shortcuts.load_more": "Навесці на кнопку \"Загрузіць болей\"",
|
||||||
"keyboard_shortcuts.local": "Адкрыць хатнюю храналагічную стужку",
|
"keyboard_shortcuts.local": "Адкрыць хатнюю храналагічную стужку",
|
||||||
"keyboard_shortcuts.mention": "Згадаць аўтара",
|
"keyboard_shortcuts.mention": "Згадаць аўтара",
|
||||||
"keyboard_shortcuts.muted": "Адкрыць спіс ігнараваных карыстальнікаў",
|
"keyboard_shortcuts.muted": "Адкрыць спіс ігнараваных карыстальнікаў",
|
||||||
|
|
@ -738,11 +739,18 @@
|
||||||
"privacy.private.short": "Падпісчыкі",
|
"privacy.private.short": "Падпісчыкі",
|
||||||
"privacy.public.long": "Усе, хто ёсць і каго няма ў Mastodon",
|
"privacy.public.long": "Усе, хто ёсць і каго няма ў Mastodon",
|
||||||
"privacy.public.short": "Публічны",
|
"privacy.public.short": "Публічны",
|
||||||
|
"privacy.quote.anyone": "{visibility}, усе могуць цытаваць",
|
||||||
|
"privacy.quote.disabled": "{visibility}, цытаты адключаныя",
|
||||||
|
"privacy.quote.limited": "{visibility}, абмежаваныя цытаты",
|
||||||
"privacy.unlisted.additional": "Паводзіць сябе гэтак жа, як і публічны, за выключэннем таго, што допіс не будзе адлюстроўвацца ў жывой стужцы, хэштэгах, аглядзе або ў пошуку Mastodon, нават калі Вы ўключылі бачнасць у пошуку ў наладах.",
|
"privacy.unlisted.additional": "Паводзіць сябе гэтак жа, як і публічны, за выключэннем таго, што допіс не будзе адлюстроўвацца ў жывой стужцы, хэштэгах, аглядзе або ў пошуку Mastodon, нават калі Вы ўключылі бачнасць у пошуку ў наладах.",
|
||||||
"privacy.unlisted.long": "Менш фанфар ад алгарытмаў",
|
"privacy.unlisted.long": "Менш фанфар ад алгарытмаў",
|
||||||
"privacy.unlisted.short": "Ціхі публічны",
|
"privacy.unlisted.short": "Ціхі публічны",
|
||||||
"privacy_policy.last_updated": "Адноўлена {date}",
|
"privacy_policy.last_updated": "Адноўлена {date}",
|
||||||
"privacy_policy.title": "Палітыка канфідэнцыйнасці",
|
"privacy_policy.title": "Палітыка канфідэнцыйнасці",
|
||||||
|
"quote_error.poll": "Нельга цытаваць з апытаннямі.",
|
||||||
|
"quote_error.quote": "За раз дазволена рабіць толькі адну цытату.",
|
||||||
|
"quote_error.unauthorized": "Вы не ўвайшлі, каб цытаваць гэты допіс.",
|
||||||
|
"quote_error.upload": "Нельга цытаваць з медыя далучэннямі.",
|
||||||
"recommended": "Рэкамендаванае",
|
"recommended": "Рэкамендаванае",
|
||||||
"refresh": "Абнавiць",
|
"refresh": "Абнавiць",
|
||||||
"regeneration_indicator.please_stand_by": "Пачакайце.",
|
"regeneration_indicator.please_stand_by": "Пачакайце.",
|
||||||
|
|
@ -944,6 +952,7 @@
|
||||||
"upload_button.label": "Дадаць выяву, відэа- ці аўдыяфайл",
|
"upload_button.label": "Дадаць выяву, відэа- ці аўдыяфайл",
|
||||||
"upload_error.limit": "Перавышана колькасць файлаў.",
|
"upload_error.limit": "Перавышана колькасць файлаў.",
|
||||||
"upload_error.poll": "Немагчыма прымацаваць файл да апытання.",
|
"upload_error.poll": "Немагчыма прымацаваць файл да апытання.",
|
||||||
|
"upload_error.quote": "Нельга запампоўваць файл пры цытаванні.",
|
||||||
"upload_form.drag_and_drop.instructions": "Каб абраць медыя ўлажэнне, націсніце прабел ці Enter. Падчас перасоўвання выкарыстоўвайце кнопкі са стрэлкамі, каб пасунуць медыя далучэнне ў любым напрамку. Націсніце прабел ці Enter зноў, каб перасунуць медыя далучэнне ў новае месца, або Escape для адмены.",
|
"upload_form.drag_and_drop.instructions": "Каб абраць медыя ўлажэнне, націсніце прабел ці Enter. Падчас перасоўвання выкарыстоўвайце кнопкі са стрэлкамі, каб пасунуць медыя далучэнне ў любым напрамку. Націсніце прабел ці Enter зноў, каб перасунуць медыя далучэнне ў новае месца, або Escape для адмены.",
|
||||||
"upload_form.drag_and_drop.on_drag_cancel": "Перасоўванне адмененае. Медыя ўлажэнне {item} на месцы.",
|
"upload_form.drag_and_drop.on_drag_cancel": "Перасоўванне адмененае. Медыя ўлажэнне {item} на месцы.",
|
||||||
"upload_form.drag_and_drop.on_drag_end": "Медыя ўлажэнне {item} на месцы.",
|
"upload_form.drag_and_drop.on_drag_end": "Медыя ўлажэнне {item} на месцы.",
|
||||||
|
|
@ -969,14 +978,12 @@
|
||||||
"video.volume_up": "Павялічыць гучнасць",
|
"video.volume_up": "Павялічыць гучнасць",
|
||||||
"visibility_modal.button_title": "Вызначыць бачнасць",
|
"visibility_modal.button_title": "Вызначыць бачнасць",
|
||||||
"visibility_modal.header": "Бачнасць і ўзаемадзеянне",
|
"visibility_modal.header": "Бачнасць і ўзаемадзеянне",
|
||||||
"visibility_modal.helper.direct_quoting": "Прыватныя згадванні нельга цытаваць.",
|
|
||||||
"visibility_modal.helper.privacy_editing": "Апублікаваным допісам нельга змяняць бачнасць.",
|
"visibility_modal.helper.privacy_editing": "Апублікаваным допісам нельга змяняць бачнасць.",
|
||||||
"visibility_modal.helper.private_quoting": "Допісы для падпісчыкаў нельга цытаваць.",
|
|
||||||
"visibility_modal.helper.unlisted_quoting": "Калі людзі працытуюць Вас, іх допіс таксама будзе схаваны ад стужкі трэндаў.",
|
"visibility_modal.helper.unlisted_quoting": "Калі людзі працытуюць Вас, іх допіс таксама будзе схаваны ад стужкі трэндаў.",
|
||||||
"visibility_modal.instructions": "Кантралюйце, хто можа ўзаемадзейнічаць з Вашым допісам. Глабальныя налады можна знайсці ў <link>Налады > Іншае</link>.",
|
"visibility_modal.instructions": "Кантралюйце, хто можа ўзаемадзейнічаць з Вашым допісам. Глабальныя налады можна знайсці ў <link>Налады > Іншае</link>.",
|
||||||
"visibility_modal.privacy_label": "Прыватнасць",
|
"visibility_modal.privacy_label": "Прыватнасць",
|
||||||
"visibility_modal.quote_followers": "Толькі падпісчыкі",
|
"visibility_modal.quote_followers": "Толькі падпісчыкі",
|
||||||
"visibility_modal.quote_label": "Змяніць, хто можа цытаваць",
|
"visibility_modal.quote_label": "Змяніць, хто можа цытаваць",
|
||||||
"visibility_modal.quote_nobody": "Ніхто",
|
"visibility_modal.quote_public": "Усе",
|
||||||
"visibility_modal.quote_public": "Усе"
|
"visibility_modal.save": "Захаваць"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -952,12 +952,10 @@
|
||||||
"video.volume_up": "Увеличаване на звука",
|
"video.volume_up": "Увеличаване на звука",
|
||||||
"visibility_modal.button_title": "Задаване на видимост",
|
"visibility_modal.button_title": "Задаване на видимост",
|
||||||
"visibility_modal.header": "Видимост и взаимодействие",
|
"visibility_modal.header": "Видимост и взаимодействие",
|
||||||
"visibility_modal.helper.direct_quoting": "Частни споменавания не може да се цитират.",
|
|
||||||
"visibility_modal.helper.privacy_editing": "Публикуваните публикации не може да променят видимостта си.",
|
"visibility_modal.helper.privacy_editing": "Публикуваните публикации не може да променят видимостта си.",
|
||||||
"visibility_modal.instructions": "Управлявайте кой може да взаимодейства с тази публикация. Глобалните настройки може да се намерят под <link>Предпочитания> Друго</link>.",
|
"visibility_modal.instructions": "Управлявайте кой може да взаимодейства с тази публикация. Глобалните настройки може да се намерят под <link>Предпочитания> Друго</link>.",
|
||||||
"visibility_modal.privacy_label": "Поверителност",
|
"visibility_modal.privacy_label": "Поверителност",
|
||||||
"visibility_modal.quote_followers": "Само последователи",
|
"visibility_modal.quote_followers": "Само последователи",
|
||||||
"visibility_modal.quote_label": "Промяна кой може да цитира",
|
"visibility_modal.quote_label": "Промяна кой може да цитира",
|
||||||
"visibility_modal.quote_nobody": "Никого",
|
|
||||||
"visibility_modal.quote_public": "Някой"
|
"visibility_modal.quote_public": "Някой"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -640,6 +640,5 @@
|
||||||
"video.play": "Lenn",
|
"video.play": "Lenn",
|
||||||
"visibility_modal.privacy_label": "Prevezded",
|
"visibility_modal.privacy_label": "Prevezded",
|
||||||
"visibility_modal.quote_followers": "Tud koumanantet hepken",
|
"visibility_modal.quote_followers": "Tud koumanantet hepken",
|
||||||
"visibility_modal.quote_nobody": "Den ebet",
|
|
||||||
"visibility_modal.quote_public": "Pep den"
|
"visibility_modal.quote_public": "Pep den"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -968,14 +968,12 @@
|
||||||
"video.volume_up": "Apuja el volum",
|
"video.volume_up": "Apuja el volum",
|
||||||
"visibility_modal.button_title": "Establiu la visibilitat",
|
"visibility_modal.button_title": "Establiu la visibilitat",
|
||||||
"visibility_modal.header": "Visibilitat i interacció",
|
"visibility_modal.header": "Visibilitat i interacció",
|
||||||
"visibility_modal.helper.direct_quoting": "No es poden citar les mencions privades.",
|
|
||||||
"visibility_modal.helper.privacy_editing": "No es pot canviar la visibilitat de les publicacions ja fetes.",
|
"visibility_modal.helper.privacy_editing": "No es pot canviar la visibilitat de les publicacions ja fetes.",
|
||||||
"visibility_modal.helper.private_quoting": "No es poden citar les publicacions només per a seguidors.",
|
|
||||||
"visibility_modal.helper.unlisted_quoting": "Quan la gent et citi les seves publicacions estaran amagades de les línies de temps de tendències.",
|
"visibility_modal.helper.unlisted_quoting": "Quan la gent et citi les seves publicacions estaran amagades de les línies de temps de tendències.",
|
||||||
"visibility_modal.instructions": "Controleu qui pot interactuar amb aquesta publicació. La configuració global es troba a <link>Preferències>Altres</link>.",
|
"visibility_modal.instructions": "Controleu qui pot interactuar amb aquesta publicació. La configuració global es troba a <link>Preferències>Altres</link>.",
|
||||||
"visibility_modal.privacy_label": "Privacitat",
|
"visibility_modal.privacy_label": "Privacitat",
|
||||||
"visibility_modal.quote_followers": "Només seguidors",
|
"visibility_modal.quote_followers": "Només seguidors",
|
||||||
"visibility_modal.quote_label": "Canvieu qui us pot citar",
|
"visibility_modal.quote_label": "Canvieu qui us pot citar",
|
||||||
"visibility_modal.quote_nobody": "Ningú",
|
"visibility_modal.quote_public": "Qualsevol",
|
||||||
"visibility_modal.quote_public": "Qualsevol"
|
"visibility_modal.save": "Desa"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -483,6 +483,7 @@
|
||||||
"keyboard_shortcuts.home": "Otevřít domovskou časovou osu",
|
"keyboard_shortcuts.home": "Otevřít domovskou časovou osu",
|
||||||
"keyboard_shortcuts.hotkey": "Klávesová zkratka",
|
"keyboard_shortcuts.hotkey": "Klávesová zkratka",
|
||||||
"keyboard_shortcuts.legend": "Zobrazit tuto legendu",
|
"keyboard_shortcuts.legend": "Zobrazit tuto legendu",
|
||||||
|
"keyboard_shortcuts.load_more": "Zvýraznit tlačítko „Načíst více“",
|
||||||
"keyboard_shortcuts.local": "Otevřít místní časovou osu",
|
"keyboard_shortcuts.local": "Otevřít místní časovou osu",
|
||||||
"keyboard_shortcuts.mention": "Zmínit autora",
|
"keyboard_shortcuts.mention": "Zmínit autora",
|
||||||
"keyboard_shortcuts.muted": "Otevřít seznam skrytých uživatelů",
|
"keyboard_shortcuts.muted": "Otevřít seznam skrytých uživatelů",
|
||||||
|
|
@ -738,11 +739,17 @@
|
||||||
"privacy.private.short": "Sledující",
|
"privacy.private.short": "Sledující",
|
||||||
"privacy.public.long": "Kdokoliv na Mastodonu i mimo něj",
|
"privacy.public.long": "Kdokoliv na Mastodonu i mimo něj",
|
||||||
"privacy.public.short": "Veřejné",
|
"privacy.public.short": "Veřejné",
|
||||||
|
"privacy.quote.anyone": "{visibility}, kdokoliv může citovat",
|
||||||
|
"privacy.quote.disabled": "{visibility}, citování je zakázáno",
|
||||||
|
"privacy.quote.limited": "{visibility}, citování je omezené",
|
||||||
"privacy.unlisted.additional": "Chová se stejně jako veřejný, až na to, že se příspěvek neobjeví v živých kanálech nebo hashtazích, v objevování nebo vyhledávání na Mastodonu, a to i když je účet nastaven tak, aby se zde všude tyto příspěvky zobrazovaly.",
|
"privacy.unlisted.additional": "Chová se stejně jako veřejný, až na to, že se příspěvek neobjeví v živých kanálech nebo hashtazích, v objevování nebo vyhledávání na Mastodonu, a to i když je účet nastaven tak, aby se zde všude tyto příspěvky zobrazovaly.",
|
||||||
"privacy.unlisted.long": "Méně algoritmických fanfár",
|
"privacy.unlisted.long": "Méně algoritmických fanfár",
|
||||||
"privacy.unlisted.short": "Ztišené veřejné",
|
"privacy.unlisted.short": "Ztišené veřejné",
|
||||||
"privacy_policy.last_updated": "Naposledy aktualizováno {date}",
|
"privacy_policy.last_updated": "Naposledy aktualizováno {date}",
|
||||||
"privacy_policy.title": "Zásady ochrany osobních údajů",
|
"privacy_policy.title": "Zásady ochrany osobních údajů",
|
||||||
|
"quote_error.poll": "Citování není u dotazníků povoleno.",
|
||||||
|
"quote_error.unauthorized": "Nemáte oprávnění citovat tento příspěvek.",
|
||||||
|
"quote_error.upload": "Není povoleno citovat s přílohami.",
|
||||||
"recommended": "Doporučeno",
|
"recommended": "Doporučeno",
|
||||||
"refresh": "Obnovit",
|
"refresh": "Obnovit",
|
||||||
"regeneration_indicator.please_stand_by": "Počkej prosím.",
|
"regeneration_indicator.please_stand_by": "Počkej prosím.",
|
||||||
|
|
@ -944,6 +951,7 @@
|
||||||
"upload_button.label": "Přidat obrázky, video nebo audio soubor",
|
"upload_button.label": "Přidat obrázky, video nebo audio soubor",
|
||||||
"upload_error.limit": "Byl překročen limit nahraných souborů.",
|
"upload_error.limit": "Byl překročen limit nahraných souborů.",
|
||||||
"upload_error.poll": "Nahrávání souborů není povoleno s anketami.",
|
"upload_error.poll": "Nahrávání souborů není povoleno s anketami.",
|
||||||
|
"upload_error.quote": "Nahrávání souboru není povoleno s citacemi.",
|
||||||
"upload_form.drag_and_drop.instructions": "Chcete-li zvednout přílohu, stiskněte mezerník nebo enter. Při přetažení použijte klávesnicové šipky k přesunutí mediální přílohy v libovolném směru. Stiskněte mezerník nebo enter pro vložení přílohy do nové pozice, nebo stiskněte Esc pro ukončení.",
|
"upload_form.drag_and_drop.instructions": "Chcete-li zvednout přílohu, stiskněte mezerník nebo enter. Při přetažení použijte klávesnicové šipky k přesunutí mediální přílohy v libovolném směru. Stiskněte mezerník nebo enter pro vložení přílohy do nové pozice, nebo stiskněte Esc pro ukončení.",
|
||||||
"upload_form.drag_and_drop.on_drag_cancel": "Přetažení bylo zrušeno. Příloha {item} byla vrácena.",
|
"upload_form.drag_and_drop.on_drag_cancel": "Přetažení bylo zrušeno. Příloha {item} byla vrácena.",
|
||||||
"upload_form.drag_and_drop.on_drag_end": "Příloha {item} byla vrácena.",
|
"upload_form.drag_and_drop.on_drag_end": "Příloha {item} byla vrácena.",
|
||||||
|
|
@ -969,14 +977,12 @@
|
||||||
"video.volume_up": "Zvýšit hlasitost",
|
"video.volume_up": "Zvýšit hlasitost",
|
||||||
"visibility_modal.button_title": "Nastavit viditelnost",
|
"visibility_modal.button_title": "Nastavit viditelnost",
|
||||||
"visibility_modal.header": "Viditelnost a interakce",
|
"visibility_modal.header": "Viditelnost a interakce",
|
||||||
"visibility_modal.helper.direct_quoting": "Soukromé zmínky nemohou být citovány.",
|
|
||||||
"visibility_modal.helper.privacy_editing": "Publikované příspěvky nemohou změnit svou viditelnost.",
|
"visibility_modal.helper.privacy_editing": "Publikované příspěvky nemohou změnit svou viditelnost.",
|
||||||
"visibility_modal.helper.private_quoting": "Nelze citovat příspěvky, které jsou pouze pro sledující.",
|
|
||||||
"visibility_modal.helper.unlisted_quoting": "Když vás lidé citují, jejich příspěvek bude v časové ose populárních příspěvků také skryt.",
|
"visibility_modal.helper.unlisted_quoting": "Když vás lidé citují, jejich příspěvek bude v časové ose populárních příspěvků také skryt.",
|
||||||
"visibility_modal.instructions": "Kontrolujte, kdo může interagovat s tímto příspěvkem. Globální nastavení můžete najít pod <link>Nastavení > Ostatní</link>.",
|
"visibility_modal.instructions": "Kontrolujte, kdo může interagovat s tímto příspěvkem. Globální nastavení můžete najít pod <link>Nastavení > Ostatní</link>.",
|
||||||
"visibility_modal.privacy_label": "Soukromí",
|
"visibility_modal.privacy_label": "Soukromí",
|
||||||
"visibility_modal.quote_followers": "Pouze sledující",
|
"visibility_modal.quote_followers": "Pouze sledující",
|
||||||
"visibility_modal.quote_label": "Změňte, kdo může citovat",
|
"visibility_modal.quote_label": "Změňte, kdo může citovat",
|
||||||
"visibility_modal.quote_nobody": "Nikdo",
|
"visibility_modal.quote_public": "Kdokoliv",
|
||||||
"visibility_modal.quote_public": "Kdokoliv"
|
"visibility_modal.save": "Uložit"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -964,14 +964,11 @@
|
||||||
"video.volume_up": "Lefel sain i fyny",
|
"video.volume_up": "Lefel sain i fyny",
|
||||||
"visibility_modal.button_title": "Gosod gwelededd",
|
"visibility_modal.button_title": "Gosod gwelededd",
|
||||||
"visibility_modal.header": "Gwelededd a rhyngweithio",
|
"visibility_modal.header": "Gwelededd a rhyngweithio",
|
||||||
"visibility_modal.helper.direct_quoting": "Does dim modd dyfynnu crybwylliadau preifat.",
|
|
||||||
"visibility_modal.helper.privacy_editing": "Does dim modd newid gwelededd postiadau wedi'u cyhoeddi.",
|
"visibility_modal.helper.privacy_editing": "Does dim modd newid gwelededd postiadau wedi'u cyhoeddi.",
|
||||||
"visibility_modal.helper.private_quoting": "Does dim modd dyfynnu postiadau dilynwyr yn unig.",
|
|
||||||
"visibility_modal.helper.unlisted_quoting": "Pan fydd pobl yn eich dyfynnu, bydd eu postiad hefyd yn cael ei guddio rhag llinellau amser sy'n trendio.",
|
"visibility_modal.helper.unlisted_quoting": "Pan fydd pobl yn eich dyfynnu, bydd eu postiad hefyd yn cael ei guddio rhag llinellau amser sy'n trendio.",
|
||||||
"visibility_modal.instructions": "Rheolwch bwy all ryngweithio â'r postiad hwn. Mae modd dod o hyd i osodiadau eang o dan <link>Dewisiadau > Arall</link>.",
|
"visibility_modal.instructions": "Rheolwch bwy all ryngweithio â'r postiad hwn. Mae modd dod o hyd i osodiadau eang o dan <link>Dewisiadau > Arall</link>.",
|
||||||
"visibility_modal.privacy_label": "Preifatrwydd",
|
"visibility_modal.privacy_label": "Preifatrwydd",
|
||||||
"visibility_modal.quote_followers": "Dilynwyr yn unig",
|
"visibility_modal.quote_followers": "Dilynwyr yn unig",
|
||||||
"visibility_modal.quote_label": "Newid pwy all ddyfynnu",
|
"visibility_modal.quote_label": "Newid pwy all ddyfynnu",
|
||||||
"visibility_modal.quote_nobody": "Neb",
|
|
||||||
"visibility_modal.quote_public": "Pawb"
|
"visibility_modal.quote_public": "Pawb"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -292,7 +292,7 @@
|
||||||
"domain_pill.your_handle": "Dit handle:",
|
"domain_pill.your_handle": "Dit handle:",
|
||||||
"domain_pill.your_server": "Dit digitale hjem, hvor alle dine indlæg lever. Synes ikke om den her server? Du kan til enhver tid rykke over på en anden server og beholde dine følgere.",
|
"domain_pill.your_server": "Dit digitale hjem, hvor alle dine indlæg lever. Synes ikke om den her server? Du kan til enhver tid rykke over på en anden server og beholde dine følgere.",
|
||||||
"domain_pill.your_username": "Din entydige identifikator på denne server. Det er muligt at finde brugere med samme brugernavn på forskellige servere.",
|
"domain_pill.your_username": "Din entydige identifikator på denne server. Det er muligt at finde brugere med samme brugernavn på forskellige servere.",
|
||||||
"dropdown.empty": "Vælg en indstillingsmulighed",
|
"dropdown.empty": "Vælg en indstilling",
|
||||||
"embed.instructions": "Indlejr dette indlæg på din hjemmeside ved at kopiere nedenstående kode.",
|
"embed.instructions": "Indlejr dette indlæg på din hjemmeside ved at kopiere nedenstående kode.",
|
||||||
"embed.preview": "Sådan kommer det til at se ud:",
|
"embed.preview": "Sådan kommer det til at se ud:",
|
||||||
"emoji_button.activity": "Aktivitet",
|
"emoji_button.activity": "Aktivitet",
|
||||||
|
|
@ -483,6 +483,7 @@
|
||||||
"keyboard_shortcuts.home": "Åbn hjem-tidslinje",
|
"keyboard_shortcuts.home": "Åbn hjem-tidslinje",
|
||||||
"keyboard_shortcuts.hotkey": "Hurtigtast",
|
"keyboard_shortcuts.hotkey": "Hurtigtast",
|
||||||
"keyboard_shortcuts.legend": "Vis dette symbol",
|
"keyboard_shortcuts.legend": "Vis dette symbol",
|
||||||
|
"keyboard_shortcuts.load_more": "Fokusér knappen \"Indlæs flere\"",
|
||||||
"keyboard_shortcuts.local": "Åbn lokal tidslinje",
|
"keyboard_shortcuts.local": "Åbn lokal tidslinje",
|
||||||
"keyboard_shortcuts.mention": "Omtal forfatter",
|
"keyboard_shortcuts.mention": "Omtal forfatter",
|
||||||
"keyboard_shortcuts.muted": "Åbn listen over skjulte brugere",
|
"keyboard_shortcuts.muted": "Åbn listen over skjulte brugere",
|
||||||
|
|
@ -738,11 +739,18 @@
|
||||||
"privacy.private.short": "Følgere",
|
"privacy.private.short": "Følgere",
|
||||||
"privacy.public.long": "Alle på og udenfor Mastodon",
|
"privacy.public.long": "Alle på og udenfor Mastodon",
|
||||||
"privacy.public.short": "Offentlig",
|
"privacy.public.short": "Offentlig",
|
||||||
|
"privacy.quote.anyone": "{visibility}, alle kan citere",
|
||||||
|
"privacy.quote.disabled": "{visibility}, citering deaktiveret",
|
||||||
|
"privacy.quote.limited": "{visibility}, citering begrænset",
|
||||||
"privacy.unlisted.additional": "Dette svarer til offentlig, bortset fra at indlægget ikke vises i live-feeds eller hashtags, udforsk eller Mastodon-søgning, selvom du har tilvalgt dette for kontoen.",
|
"privacy.unlisted.additional": "Dette svarer til offentlig, bortset fra at indlægget ikke vises i live-feeds eller hashtags, udforsk eller Mastodon-søgning, selvom du har tilvalgt dette for kontoen.",
|
||||||
"privacy.unlisted.long": "Færre algoritmiske fanfarer",
|
"privacy.unlisted.long": "Færre algoritmiske fanfarer",
|
||||||
"privacy.unlisted.short": "Offentlig (stille)",
|
"privacy.unlisted.short": "Offentlig (stille)",
|
||||||
"privacy_policy.last_updated": "Senest opdateret {date}",
|
"privacy_policy.last_updated": "Senest opdateret {date}",
|
||||||
"privacy_policy.title": "Privatlivspolitik",
|
"privacy_policy.title": "Privatlivspolitik",
|
||||||
|
"quote_error.poll": "Citering ikke tilladt i afstemninger.",
|
||||||
|
"quote_error.quote": "Kun ét citat ad gangen er tilladt.",
|
||||||
|
"quote_error.unauthorized": "Man har ikke tilladelse til at citere dette indlæg.",
|
||||||
|
"quote_error.upload": "Citering ikke tilladt ved medievedhæftninger.",
|
||||||
"recommended": "Anbefalet",
|
"recommended": "Anbefalet",
|
||||||
"refresh": "Genindlæs",
|
"refresh": "Genindlæs",
|
||||||
"regeneration_indicator.please_stand_by": "Vent venligst.",
|
"regeneration_indicator.please_stand_by": "Vent venligst.",
|
||||||
|
|
@ -849,9 +857,11 @@
|
||||||
"status.admin_account": "Åbn modereringsbrugerflade for @{name}",
|
"status.admin_account": "Åbn modereringsbrugerflade for @{name}",
|
||||||
"status.admin_domain": "Åbn modereringsbrugerflade for {domain}",
|
"status.admin_domain": "Åbn modereringsbrugerflade for {domain}",
|
||||||
"status.admin_status": "Åbn dette indlæg i modereringsbrugerfladen",
|
"status.admin_status": "Åbn dette indlæg i modereringsbrugerfladen",
|
||||||
|
"status.all_disabled": "Fremhævelser og citater er deaktiveret",
|
||||||
"status.block": "Blokér @{name}",
|
"status.block": "Blokér @{name}",
|
||||||
"status.bookmark": "Bogmærk",
|
"status.bookmark": "Bogmærk",
|
||||||
"status.cancel_reblog_private": "Fjern fremhævelse",
|
"status.cancel_reblog_private": "Fjern fremhævelse",
|
||||||
|
"status.cannot_quote": "Forfatter har deaktiveret citering af dette indlæg",
|
||||||
"status.cannot_reblog": "Dette indlæg kan ikke fremhæves",
|
"status.cannot_reblog": "Dette indlæg kan ikke fremhæves",
|
||||||
"status.context.load_new_replies": "Nye svar tilgængelige",
|
"status.context.load_new_replies": "Nye svar tilgængelige",
|
||||||
"status.context.loading": "Tjekker for flere svar",
|
"status.context.loading": "Tjekker for flere svar",
|
||||||
|
|
@ -880,6 +890,8 @@
|
||||||
"status.mute_conversation": "Skjul samtale",
|
"status.mute_conversation": "Skjul samtale",
|
||||||
"status.open": "Udvid dette indlæg",
|
"status.open": "Udvid dette indlæg",
|
||||||
"status.pin": "Fastgør til profil",
|
"status.pin": "Fastgør til profil",
|
||||||
|
"status.quote": "Citér",
|
||||||
|
"status.quote.cancel": "Annullér citat",
|
||||||
"status.quote_error.filtered": "Skjult grundet et af filterne",
|
"status.quote_error.filtered": "Skjult grundet et af filterne",
|
||||||
"status.quote_error.not_available": "Indlæg utilgængeligt",
|
"status.quote_error.not_available": "Indlæg utilgængeligt",
|
||||||
"status.quote_error.pending_approval": "Afventende indlæg",
|
"status.quote_error.pending_approval": "Afventende indlæg",
|
||||||
|
|
@ -887,6 +899,7 @@
|
||||||
"status.quote_error.pending_approval_popout.title": "Afventende citat? Tag det roligt",
|
"status.quote_error.pending_approval_popout.title": "Afventende citat? Tag det roligt",
|
||||||
"status.quote_policy_change": "Ændr hvem der kan citere",
|
"status.quote_policy_change": "Ændr hvem der kan citere",
|
||||||
"status.quote_post_author": "Citerede et indlæg fra @{name}",
|
"status.quote_post_author": "Citerede et indlæg fra @{name}",
|
||||||
|
"status.quote_private": "Private indlæg kan ikke citeres",
|
||||||
"status.read_more": "Læs mere",
|
"status.read_more": "Læs mere",
|
||||||
"status.reblog": "Fremhæv",
|
"status.reblog": "Fremhæv",
|
||||||
"status.reblog_private": "Fremhæv med oprindelig synlighed",
|
"status.reblog_private": "Fremhæv med oprindelig synlighed",
|
||||||
|
|
@ -939,6 +952,7 @@
|
||||||
"upload_button.label": "Tilføj billed-, video- eller lydfil(er)",
|
"upload_button.label": "Tilføj billed-, video- eller lydfil(er)",
|
||||||
"upload_error.limit": "Grænse for filupload nået.",
|
"upload_error.limit": "Grænse for filupload nået.",
|
||||||
"upload_error.poll": "Filupload ikke tilladt for afstemninger.",
|
"upload_error.poll": "Filupload ikke tilladt for afstemninger.",
|
||||||
|
"upload_error.quote": "Fil-upload ikke tilladt i citater.",
|
||||||
"upload_form.drag_and_drop.instructions": "For at opsamle en medievedhæftning, tryk på Mellemrum eller Retur. Mens der trækkes, benyt piletasterne til at flytte medievedhæftningen i en given retning. Tryk på Mellemrum eller Retur igen for at slippe medievedhæftningen på den nye position, eller tryk på Escape for at afbryde.",
|
"upload_form.drag_and_drop.instructions": "For at opsamle en medievedhæftning, tryk på Mellemrum eller Retur. Mens der trækkes, benyt piletasterne til at flytte medievedhæftningen i en given retning. Tryk på Mellemrum eller Retur igen for at slippe medievedhæftningen på den nye position, eller tryk på Escape for at afbryde.",
|
||||||
"upload_form.drag_and_drop.on_drag_cancel": "Træk blev afbrudt. Medievedhæftningen {item} blev sluppet.",
|
"upload_form.drag_and_drop.on_drag_cancel": "Træk blev afbrudt. Medievedhæftningen {item} blev sluppet.",
|
||||||
"upload_form.drag_and_drop.on_drag_end": "Medievedhæftningen {item} er sluppet.",
|
"upload_form.drag_and_drop.on_drag_end": "Medievedhæftningen {item} er sluppet.",
|
||||||
|
|
@ -964,14 +978,12 @@
|
||||||
"video.volume_up": "Lydstyrke op",
|
"video.volume_up": "Lydstyrke op",
|
||||||
"visibility_modal.button_title": "Indstil synlighed",
|
"visibility_modal.button_title": "Indstil synlighed",
|
||||||
"visibility_modal.header": "Synlighed og interaktion",
|
"visibility_modal.header": "Synlighed og interaktion",
|
||||||
"visibility_modal.helper.direct_quoting": "Private omtaler kan ikke citeres.",
|
|
||||||
"visibility_modal.helper.privacy_editing": "Publicerede indlægs synlighed kan ikke ændres.",
|
"visibility_modal.helper.privacy_editing": "Publicerede indlægs synlighed kan ikke ændres.",
|
||||||
"visibility_modal.helper.private_quoting": "Indlæg kun for følgere kan ikke citeres.",
|
"visibility_modal.helper.unlisted_quoting": "Når folk citerer dig, vil deres indlæg også blive skjult fra trendtidslinjer.",
|
||||||
"visibility_modal.helper.unlisted_quoting": "Når man citeres af andre, skjules deres indlæg også på tendenstidslinjer.",
|
|
||||||
"visibility_modal.instructions": "Styr, hvem der kan interagere med dette indlæg. Globale indstillinger findes under <link>Præferencer > Andet</link>.",
|
"visibility_modal.instructions": "Styr, hvem der kan interagere med dette indlæg. Globale indstillinger findes under <link>Præferencer > Andet</link>.",
|
||||||
"visibility_modal.privacy_label": "Fortrolighed",
|
"visibility_modal.privacy_label": "Fortrolighed",
|
||||||
"visibility_modal.quote_followers": "Kun følgere",
|
"visibility_modal.quote_followers": "Kun følgere",
|
||||||
"visibility_modal.quote_label": "Ændr hvem der kan citere",
|
"visibility_modal.quote_label": "Ændr hvem der kan citere",
|
||||||
"visibility_modal.quote_nobody": "Ingen",
|
"visibility_modal.quote_public": "Alle",
|
||||||
"visibility_modal.quote_public": "Alle"
|
"visibility_modal.save": "Gem"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -483,6 +483,7 @@
|
||||||
"keyboard_shortcuts.home": "Startseite öffnen",
|
"keyboard_shortcuts.home": "Startseite öffnen",
|
||||||
"keyboard_shortcuts.hotkey": "Tastenkürzel",
|
"keyboard_shortcuts.hotkey": "Tastenkürzel",
|
||||||
"keyboard_shortcuts.legend": "Tastenkombinationen anzeigen",
|
"keyboard_shortcuts.legend": "Tastenkombinationen anzeigen",
|
||||||
|
"keyboard_shortcuts.load_more": "Schaltfläche „Mehr laden“ fokussieren",
|
||||||
"keyboard_shortcuts.local": "Lokale Timeline öffnen",
|
"keyboard_shortcuts.local": "Lokale Timeline öffnen",
|
||||||
"keyboard_shortcuts.mention": "Profil erwähnen",
|
"keyboard_shortcuts.mention": "Profil erwähnen",
|
||||||
"keyboard_shortcuts.muted": "Liste stummgeschalteter Profile öffnen",
|
"keyboard_shortcuts.muted": "Liste stummgeschalteter Profile öffnen",
|
||||||
|
|
@ -619,6 +620,7 @@
|
||||||
"notification.moderation_warning.action_suspend": "Dein Konto wurde gesperrt.",
|
"notification.moderation_warning.action_suspend": "Dein Konto wurde gesperrt.",
|
||||||
"notification.own_poll": "Deine Umfrage ist beendet",
|
"notification.own_poll": "Deine Umfrage ist beendet",
|
||||||
"notification.poll": "Eine Umfrage, an der du teilgenommen hast, ist beendet",
|
"notification.poll": "Eine Umfrage, an der du teilgenommen hast, ist beendet",
|
||||||
|
"notification.quoted_update": "{name} bearbeitete einen von dir zitierten Beitrag",
|
||||||
"notification.reblog": "{name} teilte deinen Beitrag",
|
"notification.reblog": "{name} teilte deinen Beitrag",
|
||||||
"notification.reblog.name_and_others_with_link": "{name} und <a>{count, plural, one {# weiteres Profil} other {# weitere Profile}}</a> teilten deinen Beitrag",
|
"notification.reblog.name_and_others_with_link": "{name} und <a>{count, plural, one {# weiteres Profil} other {# weitere Profile}}</a> teilten deinen Beitrag",
|
||||||
"notification.relationships_severance_event": "Verbindungen mit {name} verloren",
|
"notification.relationships_severance_event": "Verbindungen mit {name} verloren",
|
||||||
|
|
@ -738,11 +740,18 @@
|
||||||
"privacy.private.short": "Follower",
|
"privacy.private.short": "Follower",
|
||||||
"privacy.public.long": "Alle in und außerhalb von Mastodon",
|
"privacy.public.long": "Alle in und außerhalb von Mastodon",
|
||||||
"privacy.public.short": "Öffentlich",
|
"privacy.public.short": "Öffentlich",
|
||||||
|
"privacy.quote.anyone": "{visibility} – alle dürfen zitieren",
|
||||||
|
"privacy.quote.disabled": "{visibility} – niemand darf zitieren",
|
||||||
|
"privacy.quote.limited": "{visibility} – eingeschränktes Zitieren",
|
||||||
"privacy.unlisted.additional": "Das Verhalten ist wie bei „Öffentlich“, jedoch gibt es einige Einschränkungen. Der Beitrag wird nicht in „Live-Feeds“, „Erkunden“, Hashtags oder über die Mastodon-Suchfunktion auffindbar sein – selbst wenn die zugehörige Einstellung aktiviert wurde.",
|
"privacy.unlisted.additional": "Das Verhalten ist wie bei „Öffentlich“, jedoch gibt es einige Einschränkungen. Der Beitrag wird nicht in „Live-Feeds“, „Erkunden“, Hashtags oder über die Mastodon-Suchfunktion auffindbar sein – selbst wenn die zugehörige Einstellung aktiviert wurde.",
|
||||||
"privacy.unlisted.long": "Weniger im Algorithmus berücksichtigt",
|
"privacy.unlisted.long": "Weniger im Algorithmus berücksichtigt",
|
||||||
"privacy.unlisted.short": "Öffentlich (still)",
|
"privacy.unlisted.short": "Öffentlich (still)",
|
||||||
"privacy_policy.last_updated": "Stand: {date}",
|
"privacy_policy.last_updated": "Stand: {date}",
|
||||||
"privacy_policy.title": "Datenschutzerklärung",
|
"privacy_policy.title": "Datenschutzerklärung",
|
||||||
|
"quote_error.poll": "Zitieren ist bei Umfragen nicht gestattet.",
|
||||||
|
"quote_error.quote": "Es ist jeweils nur ein Zitat zulässig.",
|
||||||
|
"quote_error.unauthorized": "Du bist nicht berechtigt, diesen Beitrag zu zitieren.",
|
||||||
|
"quote_error.upload": "Zitieren ist mit Medien-Anhängen nicht möglich.",
|
||||||
"recommended": "Empfohlen",
|
"recommended": "Empfohlen",
|
||||||
"refresh": "Aktualisieren",
|
"refresh": "Aktualisieren",
|
||||||
"regeneration_indicator.please_stand_by": "Bitte warten.",
|
"regeneration_indicator.please_stand_by": "Bitte warten.",
|
||||||
|
|
@ -892,6 +901,7 @@
|
||||||
"status.quote_policy_change": "Ändern, wer zitieren darf",
|
"status.quote_policy_change": "Ändern, wer zitieren darf",
|
||||||
"status.quote_post_author": "Zitierte einen Beitrag von @{name}",
|
"status.quote_post_author": "Zitierte einen Beitrag von @{name}",
|
||||||
"status.quote_private": "Private Beiträge können nicht zitiert werden",
|
"status.quote_private": "Private Beiträge können nicht zitiert werden",
|
||||||
|
"status.quotes": "{count, plural, one {Mal zitiert} other {Mal zitiert}}",
|
||||||
"status.read_more": "Gesamten Beitrag anschauen",
|
"status.read_more": "Gesamten Beitrag anschauen",
|
||||||
"status.reblog": "Teilen",
|
"status.reblog": "Teilen",
|
||||||
"status.reblog_private": "Mit der ursprünglichen Zielgruppe teilen",
|
"status.reblog_private": "Mit der ursprünglichen Zielgruppe teilen",
|
||||||
|
|
@ -944,6 +954,7 @@
|
||||||
"upload_button.label": "Bilder, Video oder Audio hinzufügen",
|
"upload_button.label": "Bilder, Video oder Audio hinzufügen",
|
||||||
"upload_error.limit": "Dateiupload-Limit überschritten.",
|
"upload_error.limit": "Dateiupload-Limit überschritten.",
|
||||||
"upload_error.poll": "Medien-Anhänge sind zusammen mit Umfragen nicht erlaubt.",
|
"upload_error.poll": "Medien-Anhänge sind zusammen mit Umfragen nicht erlaubt.",
|
||||||
|
"upload_error.quote": "Medien-Anhänge sind zusammen mit Zitaten nicht erlaubt.",
|
||||||
"upload_form.drag_and_drop.instructions": "Drücke zum Aufnehmen eines Medienanhangs die Eingabe- oder Leertaste. Verwende beim Ziehen die Pfeiltasten, um den Medienanhang zur gewünschten Position zu bewegen. Drücke erneut die Eingabe- oder Leertaste, um den Medienanhang an der gewünschten Position abzulegen. Mit der Escape-Taste kannst du den Vorgang abbrechen.",
|
"upload_form.drag_and_drop.instructions": "Drücke zum Aufnehmen eines Medienanhangs die Eingabe- oder Leertaste. Verwende beim Ziehen die Pfeiltasten, um den Medienanhang zur gewünschten Position zu bewegen. Drücke erneut die Eingabe- oder Leertaste, um den Medienanhang an der gewünschten Position abzulegen. Mit der Escape-Taste kannst du den Vorgang abbrechen.",
|
||||||
"upload_form.drag_and_drop.on_drag_cancel": "Das Ziehen wurde abgebrochen und der Medienanhang {item} wurde abgelegt.",
|
"upload_form.drag_and_drop.on_drag_cancel": "Das Ziehen wurde abgebrochen und der Medienanhang {item} wurde abgelegt.",
|
||||||
"upload_form.drag_and_drop.on_drag_end": "Der Medienanhang {item} wurde abgelegt.",
|
"upload_form.drag_and_drop.on_drag_end": "Der Medienanhang {item} wurde abgelegt.",
|
||||||
|
|
@ -969,14 +980,15 @@
|
||||||
"video.volume_up": "Lauter",
|
"video.volume_up": "Lauter",
|
||||||
"visibility_modal.button_title": "Sichtbarkeit festlegen",
|
"visibility_modal.button_title": "Sichtbarkeit festlegen",
|
||||||
"visibility_modal.header": "Sichtbarkeit und Interaktion",
|
"visibility_modal.header": "Sichtbarkeit und Interaktion",
|
||||||
"visibility_modal.helper.direct_quoting": "Private Erwähnungen können nicht zitiert werden.",
|
"visibility_modal.helper.direct_quoting": "Private Erwähnungen, die auf Mastodon verfasst wurden, können nicht von anderen zitiert werden.",
|
||||||
"visibility_modal.helper.privacy_editing": "Die Sichtbarkeit bereits veröffentlichter Beiträge kann nachträglich nicht mehr geändert werden.",
|
"visibility_modal.helper.privacy_editing": "Die Sichtbarkeit bereits veröffentlichter Beiträge kann nachträglich nicht mehr geändert werden.",
|
||||||
"visibility_modal.helper.private_quoting": "Beiträge, die nur für deine Follower bestimmt sind, können nicht zitiert werden.",
|
"visibility_modal.helper.private_quoting": "Beiträge, die nur für deine Follower bestimmt sind und auf Mastodon verfasst wurden, können nicht von anderen zitiert werden.",
|
||||||
"visibility_modal.helper.unlisted_quoting": "Sollten dich andere zitieren, werden ihre zitierten Beiträge ebenfalls nicht in den Trends und öffentlichen Timelines angezeigt.",
|
"visibility_modal.helper.unlisted_quoting": "Sollten dich andere zitieren, werden ihre zitierten Beiträge ebenfalls nicht in den Trends und öffentlichen Timelines angezeigt.",
|
||||||
"visibility_modal.instructions": "Bestimme, wer mit diesem Beitrag interagieren darf. Allgemeingültige Einstellungen findest du unter <link>Einstellungen > Erweitert</link>.",
|
"visibility_modal.instructions": "Bestimme, wer mit diesem Beitrag interagieren darf. Allgemeingültige Einstellungen findest du unter <link>Einstellungen > Erweitert</link>.",
|
||||||
"visibility_modal.privacy_label": "Datenschutz",
|
"visibility_modal.privacy_label": "Datenschutz",
|
||||||
"visibility_modal.quote_followers": "Nur Follower",
|
"visibility_modal.quote_followers": "Nur Follower",
|
||||||
"visibility_modal.quote_label": "Ändern, wer zitieren darf",
|
"visibility_modal.quote_label": "Ändern, wer zitieren darf",
|
||||||
"visibility_modal.quote_nobody": "Niemand",
|
"visibility_modal.quote_nobody": "Nur ich",
|
||||||
"visibility_modal.quote_public": "Alle"
|
"visibility_modal.quote_public": "Alle",
|
||||||
|
"visibility_modal.save": "Speichern"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -483,6 +483,7 @@
|
||||||
"keyboard_shortcuts.home": "Άνοιγμα ροής αρχικής σελίδας",
|
"keyboard_shortcuts.home": "Άνοιγμα ροής αρχικής σελίδας",
|
||||||
"keyboard_shortcuts.hotkey": "Συντόμευση",
|
"keyboard_shortcuts.hotkey": "Συντόμευση",
|
||||||
"keyboard_shortcuts.legend": "Εμφάνιση αυτού του οδηγού",
|
"keyboard_shortcuts.legend": "Εμφάνιση αυτού του οδηγού",
|
||||||
|
"keyboard_shortcuts.load_more": "Εστίαση στο κουμπί \"Φόρτωση περισσότερων\"",
|
||||||
"keyboard_shortcuts.local": "Άνοιγμα τοπικής ροής",
|
"keyboard_shortcuts.local": "Άνοιγμα τοπικής ροής",
|
||||||
"keyboard_shortcuts.mention": "Επισήμανση συγγραφέα",
|
"keyboard_shortcuts.mention": "Επισήμανση συγγραφέα",
|
||||||
"keyboard_shortcuts.muted": "Άνοιγμα λίστας αποσιωπημένων χρηστών",
|
"keyboard_shortcuts.muted": "Άνοιγμα λίστας αποσιωπημένων χρηστών",
|
||||||
|
|
@ -738,11 +739,18 @@
|
||||||
"privacy.private.short": "Ακόλουθοι",
|
"privacy.private.short": "Ακόλουθοι",
|
||||||
"privacy.public.long": "Όλοι εντός και εκτός του Mastodon",
|
"privacy.public.long": "Όλοι εντός και εκτός του Mastodon",
|
||||||
"privacy.public.short": "Δημόσιο",
|
"privacy.public.short": "Δημόσιο",
|
||||||
|
"privacy.quote.anyone": "{visibility}, ο καθένας μπορεί να παραθέσει",
|
||||||
|
"privacy.quote.disabled": "{visibility}, παραθέσεις απενεργοποιημένες",
|
||||||
|
"privacy.quote.limited": "{visibility}, παραθέσεις περιορισμένες",
|
||||||
"privacy.unlisted.additional": "Αυτό συμπεριφέρεται ακριβώς όπως το δημόσιο, εκτός από το ότι η ανάρτηση δεν θα εμφανιστεί σε ζωντανές ροές ή ετικέτες, εξερεύνηση ή αναζήτηση στο Mastodon, ακόμη και αν το έχεις επιλέξει για τον λογαριασμό σου.",
|
"privacy.unlisted.additional": "Αυτό συμπεριφέρεται ακριβώς όπως το δημόσιο, εκτός από το ότι η ανάρτηση δεν θα εμφανιστεί σε ζωντανές ροές ή ετικέτες, εξερεύνηση ή αναζήτηση στο Mastodon, ακόμη και αν το έχεις επιλέξει για τον λογαριασμό σου.",
|
||||||
"privacy.unlisted.long": "Λιγότερα αλγοριθμικά κόλπα",
|
"privacy.unlisted.long": "Λιγότερα αλγοριθμικά κόλπα",
|
||||||
"privacy.unlisted.short": "Ήσυχα δημόσια",
|
"privacy.unlisted.short": "Ήσυχα δημόσια",
|
||||||
"privacy_policy.last_updated": "Τελευταία ενημέρωση {date}",
|
"privacy_policy.last_updated": "Τελευταία ενημέρωση {date}",
|
||||||
"privacy_policy.title": "Πολιτική Απορρήτου",
|
"privacy_policy.title": "Πολιτική Απορρήτου",
|
||||||
|
"quote_error.poll": "Η παράθεση δεν επιτρέπεται με δημοσκοπήσεις.",
|
||||||
|
"quote_error.quote": "Επιτρέπεται μόνο μία παράθεση τη φορά.",
|
||||||
|
"quote_error.unauthorized": "Δεν είστε εξουσιοδοτημένοι να παραθέσετε αυτή την ανάρτηση.",
|
||||||
|
"quote_error.upload": "Η παράθεση δεν επιτρέπεται με συνημμένα πολυμέσων.",
|
||||||
"recommended": "Προτεινόμενα",
|
"recommended": "Προτεινόμενα",
|
||||||
"refresh": "Ανανέωση",
|
"refresh": "Ανανέωση",
|
||||||
"regeneration_indicator.please_stand_by": "Παρακαλούμε περίμενε.",
|
"regeneration_indicator.please_stand_by": "Παρακαλούμε περίμενε.",
|
||||||
|
|
@ -944,6 +952,7 @@
|
||||||
"upload_button.label": "Πρόσθεσε εικόνες, ένα βίντεο ή ένα αρχείο ήχου",
|
"upload_button.label": "Πρόσθεσε εικόνες, ένα βίντεο ή ένα αρχείο ήχου",
|
||||||
"upload_error.limit": "Υπέρβαση ορίου μεγέθους ανεβασμένων αρχείων.",
|
"upload_error.limit": "Υπέρβαση ορίου μεγέθους ανεβασμένων αρχείων.",
|
||||||
"upload_error.poll": "Στις δημοσκοπήσεις δεν επιτρέπεται η μεταφόρτωση αρχείου.",
|
"upload_error.poll": "Στις δημοσκοπήσεις δεν επιτρέπεται η μεταφόρτωση αρχείου.",
|
||||||
|
"upload_error.quote": "Δεν επιτρέπεται η μεταφόρτωση αρχείου με παραθέσεις.",
|
||||||
"upload_form.drag_and_drop.instructions": "Για να επιλέξετε ένα συνημμένο αρχείο πολυμέσων, πατήστε το Space ή το Enter. Ενώ το σέρνετε, χρησιμοποιήστε τα πλήκτρα βέλους για να μετακινήσετε το συνημμένο αρχείο πολυμέσων προς οποιαδήποτε κατεύθυνση. Πατήστε ξανά το Space ή το Enter για να αποθέσετε το συνημμένο αρχείο πολυμέσων στη νέα του θέση ή πατήστε το Escape για ακύρωση.",
|
"upload_form.drag_and_drop.instructions": "Για να επιλέξετε ένα συνημμένο αρχείο πολυμέσων, πατήστε το Space ή το Enter. Ενώ το σέρνετε, χρησιμοποιήστε τα πλήκτρα βέλους για να μετακινήσετε το συνημμένο αρχείο πολυμέσων προς οποιαδήποτε κατεύθυνση. Πατήστε ξανά το Space ή το Enter για να αποθέσετε το συνημμένο αρχείο πολυμέσων στη νέα του θέση ή πατήστε το Escape για ακύρωση.",
|
||||||
"upload_form.drag_and_drop.on_drag_cancel": "Η μετακίνηση ακυρώθηκε. Έγινε απόθεση του συνημμένου αρχείου πολυμέσων «{item}».",
|
"upload_form.drag_and_drop.on_drag_cancel": "Η μετακίνηση ακυρώθηκε. Έγινε απόθεση του συνημμένου αρχείου πολυμέσων «{item}».",
|
||||||
"upload_form.drag_and_drop.on_drag_end": "Έγινε απόθεση του συνημμένου αρχείου πολυμέσων «{item}».",
|
"upload_form.drag_and_drop.on_drag_end": "Έγινε απόθεση του συνημμένου αρχείου πολυμέσων «{item}».",
|
||||||
|
|
@ -969,14 +978,12 @@
|
||||||
"video.volume_up": "Αύξηση έντασης",
|
"video.volume_up": "Αύξηση έντασης",
|
||||||
"visibility_modal.button_title": "Ορισμός ορατότητας",
|
"visibility_modal.button_title": "Ορισμός ορατότητας",
|
||||||
"visibility_modal.header": "Ορατότητα και αλληλεπίδραση",
|
"visibility_modal.header": "Ορατότητα και αλληλεπίδραση",
|
||||||
"visibility_modal.helper.direct_quoting": "Ιδιωτικές επισημάνσεις δεν μπορούν να παρατεθούν.",
|
|
||||||
"visibility_modal.helper.privacy_editing": "Δημοσιευμένες αναρτήσεις δεν μπορούν να αλλάξουν την ορατότητά τους.",
|
"visibility_modal.helper.privacy_editing": "Δημοσιευμένες αναρτήσεις δεν μπορούν να αλλάξουν την ορατότητά τους.",
|
||||||
"visibility_modal.helper.private_quoting": "Οι αναρτήσεις μόνο για ακολούθους δεν μπορούν να παρατεθούν.",
|
|
||||||
"visibility_modal.helper.unlisted_quoting": "Όταν οι άνθρωποι σας παραθέτουν, η ανάρτηση τους θα είναι επίσης κρυμμένη από τα δημοφιλή χρονοδιαγράμματα.",
|
"visibility_modal.helper.unlisted_quoting": "Όταν οι άνθρωποι σας παραθέτουν, η ανάρτηση τους θα είναι επίσης κρυμμένη από τα δημοφιλή χρονοδιαγράμματα.",
|
||||||
"visibility_modal.instructions": "Ελέγξτε ποιός μπορεί να αλληλεπιδράσει με αυτή την ανάρτηση. Οι καθολικές ρυθμίσεις μπορούν να βρεθούν κάτω από <link>Προτιμήσεις > Άλλα</link>.",
|
"visibility_modal.instructions": "Ελέγξτε ποιός μπορεί να αλληλεπιδράσει με αυτή την ανάρτηση. Οι καθολικές ρυθμίσεις μπορούν να βρεθούν κάτω από <link>Προτιμήσεις > Άλλα</link>.",
|
||||||
"visibility_modal.privacy_label": "Απόρρητο",
|
"visibility_modal.privacy_label": "Απόρρητο",
|
||||||
"visibility_modal.quote_followers": "Μόνο ακόλουθοι",
|
"visibility_modal.quote_followers": "Μόνο ακόλουθοι",
|
||||||
"visibility_modal.quote_label": "Αλλάξτε ποιός μπορεί να κάνει παράθεση",
|
"visibility_modal.quote_label": "Αλλάξτε ποιός μπορεί να κάνει παράθεση",
|
||||||
"visibility_modal.quote_nobody": "Κανένας",
|
"visibility_modal.quote_public": "Οποιοσδήποτε",
|
||||||
"visibility_modal.quote_public": "Οποιοσδήποτε"
|
"visibility_modal.save": "Αποθήκευση"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -620,6 +620,7 @@
|
||||||
"notification.moderation_warning.action_suspend": "Your account has been suspended.",
|
"notification.moderation_warning.action_suspend": "Your account has been suspended.",
|
||||||
"notification.own_poll": "Your poll has ended",
|
"notification.own_poll": "Your poll has ended",
|
||||||
"notification.poll": "A poll you voted in has ended",
|
"notification.poll": "A poll you voted in has ended",
|
||||||
|
"notification.quoted_update": "{name} edited a post you have quoted",
|
||||||
"notification.reblog": "{name} boosted your post",
|
"notification.reblog": "{name} boosted your post",
|
||||||
"notification.reblog.name_and_others_with_link": "{name} and <a>{count, plural, one {# other} other {# others}}</a> boosted your post",
|
"notification.reblog.name_and_others_with_link": "{name} and <a>{count, plural, one {# other} other {# others}}</a> boosted your post",
|
||||||
"notification.relationships_severance_event": "Lost connections with {name}",
|
"notification.relationships_severance_event": "Lost connections with {name}",
|
||||||
|
|
@ -900,6 +901,7 @@
|
||||||
"status.quote_policy_change": "Change who can quote",
|
"status.quote_policy_change": "Change who can quote",
|
||||||
"status.quote_post_author": "Quoted a post by @{name}",
|
"status.quote_post_author": "Quoted a post by @{name}",
|
||||||
"status.quote_private": "Private posts cannot be quoted",
|
"status.quote_private": "Private posts cannot be quoted",
|
||||||
|
"status.quotes": "{count, plural, one {quote} other {quotes}}",
|
||||||
"status.read_more": "Read more",
|
"status.read_more": "Read more",
|
||||||
"status.reblog": "Boost",
|
"status.reblog": "Boost",
|
||||||
"status.reblog_private": "Boost with original visibility",
|
"status.reblog_private": "Boost with original visibility",
|
||||||
|
|
@ -978,15 +980,15 @@
|
||||||
"video.volume_up": "Volume up",
|
"video.volume_up": "Volume up",
|
||||||
"visibility_modal.button_title": "Set visibility",
|
"visibility_modal.button_title": "Set visibility",
|
||||||
"visibility_modal.header": "Visibility and interaction",
|
"visibility_modal.header": "Visibility and interaction",
|
||||||
"visibility_modal.helper.direct_quoting": "Private mentions can't be quoted.",
|
"visibility_modal.helper.direct_quoting": "Private mentions authored on Mastodon can't be quoted by others.",
|
||||||
"visibility_modal.helper.privacy_editing": "Published posts cannot change their visibility.",
|
"visibility_modal.helper.privacy_editing": "Published posts cannot change their visibility.",
|
||||||
"visibility_modal.helper.private_quoting": "Follower-only posts can't be quoted.",
|
"visibility_modal.helper.private_quoting": "Follower-only posts authored on Mastodon can't be quoted by others.",
|
||||||
"visibility_modal.helper.unlisted_quoting": "When people quote you, their post will also be hidden from trending timelines.",
|
"visibility_modal.helper.unlisted_quoting": "When people quote you, their post will also be hidden from trending timelines.",
|
||||||
"visibility_modal.instructions": "Control who can interact with this post. Global settings can be found under <link>Preferences > Other</link>.",
|
"visibility_modal.instructions": "Control who can interact with this post. Global settings can be found under <link>Preferences > Other</link>.",
|
||||||
"visibility_modal.privacy_label": "Privacy",
|
"visibility_modal.privacy_label": "Privacy",
|
||||||
"visibility_modal.quote_followers": "Followers only",
|
"visibility_modal.quote_followers": "Followers only",
|
||||||
"visibility_modal.quote_label": "Change who can quote",
|
"visibility_modal.quote_label": "Change who can quote",
|
||||||
"visibility_modal.quote_nobody": "No one",
|
"visibility_modal.quote_nobody": "Just me",
|
||||||
"visibility_modal.quote_public": "Anyone",
|
"visibility_modal.quote_public": "Anyone",
|
||||||
"visibility_modal.save": "Save"
|
"visibility_modal.save": "Save"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -730,6 +730,7 @@
|
||||||
"privacy.unlisted.short": "Diskrete publika",
|
"privacy.unlisted.short": "Diskrete publika",
|
||||||
"privacy_policy.last_updated": "Laste ĝisdatigita en {date}",
|
"privacy_policy.last_updated": "Laste ĝisdatigita en {date}",
|
||||||
"privacy_policy.title": "Politiko de privateco",
|
"privacy_policy.title": "Politiko de privateco",
|
||||||
|
"quote_error.quote": "Nur unu citaĵo samtempe estas permesita.",
|
||||||
"recommended": "Rekomendita",
|
"recommended": "Rekomendita",
|
||||||
"refresh": "Refreŝigu",
|
"refresh": "Refreŝigu",
|
||||||
"regeneration_indicator.please_stand_by": "Bonvolu atendi.",
|
"regeneration_indicator.please_stand_by": "Bonvolu atendi.",
|
||||||
|
|
@ -878,6 +879,7 @@
|
||||||
"status.quote_policy_change": "Ŝanĝi kiu povas citi",
|
"status.quote_policy_change": "Ŝanĝi kiu povas citi",
|
||||||
"status.quote_post_author": "Citis afiŝon de @{name}",
|
"status.quote_post_author": "Citis afiŝon de @{name}",
|
||||||
"status.quote_private": "Privataj afiŝoj ne povas esti cititaj",
|
"status.quote_private": "Privataj afiŝoj ne povas esti cititaj",
|
||||||
|
"status.quotes": "{count, plural,one {citaĵo} other {citaĵoj}}",
|
||||||
"status.read_more": "Legi pli",
|
"status.read_more": "Legi pli",
|
||||||
"status.reblog": "Diskonigi",
|
"status.reblog": "Diskonigi",
|
||||||
"status.reblog_private": "Diskonigi kun la sama videbleco",
|
"status.reblog_private": "Diskonigi kun la sama videbleco",
|
||||||
|
|
@ -930,6 +932,7 @@
|
||||||
"upload_button.label": "Aldonu bildojn, filmeton aŭ sondosieron",
|
"upload_button.label": "Aldonu bildojn, filmeton aŭ sondosieron",
|
||||||
"upload_error.limit": "Limo de dosiera alŝutado transpasita.",
|
"upload_error.limit": "Limo de dosiera alŝutado transpasita.",
|
||||||
"upload_error.poll": "Alŝuto de dosiero ne permesita kun balotenketo.",
|
"upload_error.poll": "Alŝuto de dosiero ne permesita kun balotenketo.",
|
||||||
|
"upload_error.quote": "Ne estas permesita alŝuto de dosieroj kun citaĵoj.",
|
||||||
"upload_form.drag_and_drop.instructions": "Por preni amaskomunikilaron aldonaĵon, premu spacoklavon aŭ enen-klavon. Dum trenado, uzu la sagoklavojn por movi la amaskomunikilaron aldonaĵon en iu ajn direkto. Premu spacoklavon aŭ enen-klavon denove por faligi la amaskomunikilaron aldonaĵon en ĝia nova pozicio, aŭ premu eskapan klavon por nuligi.",
|
"upload_form.drag_and_drop.instructions": "Por preni amaskomunikilaron aldonaĵon, premu spacoklavon aŭ enen-klavon. Dum trenado, uzu la sagoklavojn por movi la amaskomunikilaron aldonaĵon en iu ajn direkto. Premu spacoklavon aŭ enen-klavon denove por faligi la amaskomunikilaron aldonaĵon en ĝia nova pozicio, aŭ premu eskapan klavon por nuligi.",
|
||||||
"upload_form.drag_and_drop.on_drag_cancel": "Trenado estis nuligita. Amaskomunikila aldonaĵo {item} estis forigita.",
|
"upload_form.drag_and_drop.on_drag_cancel": "Trenado estis nuligita. Amaskomunikila aldonaĵo {item} estis forigita.",
|
||||||
"upload_form.drag_and_drop.on_drag_end": "Amaskomunikila aldonaĵo {item} estis forigita.",
|
"upload_form.drag_and_drop.on_drag_end": "Amaskomunikila aldonaĵo {item} estis forigita.",
|
||||||
|
|
@ -955,13 +958,12 @@
|
||||||
"video.volume_up": "Laŭteco pliigi",
|
"video.volume_up": "Laŭteco pliigi",
|
||||||
"visibility_modal.button_title": "Agordu videblon",
|
"visibility_modal.button_title": "Agordu videblon",
|
||||||
"visibility_modal.header": "Videblo kaj interago",
|
"visibility_modal.header": "Videblo kaj interago",
|
||||||
"visibility_modal.helper.direct_quoting": "Privataj mencioj ne povas esti cititaj.",
|
|
||||||
"visibility_modal.helper.privacy_editing": "Publikigitaj afiŝoj ne povas ŝanĝi sian videblon.",
|
"visibility_modal.helper.privacy_editing": "Publikigitaj afiŝoj ne povas ŝanĝi sian videblon.",
|
||||||
"visibility_modal.helper.private_quoting": "Afiŝoj nur por sekvantoj ne povas esti cititaj.",
|
|
||||||
"visibility_modal.helper.unlisted_quoting": "Kiam homoj citas vin, ilia afiŝo ankaŭ estos kaŝita de tendencaj templinioj.",
|
"visibility_modal.helper.unlisted_quoting": "Kiam homoj citas vin, ilia afiŝo ankaŭ estos kaŝita de tendencaj templinioj.",
|
||||||
"visibility_modal.privacy_label": "Privateco",
|
"visibility_modal.privacy_label": "Privateco",
|
||||||
"visibility_modal.quote_followers": "Nur sekvantoj",
|
"visibility_modal.quote_followers": "Nur sekvantoj",
|
||||||
"visibility_modal.quote_label": "Ŝanĝi kiu povas citi",
|
"visibility_modal.quote_label": "Ŝanĝi kiu povas citi",
|
||||||
"visibility_modal.quote_nobody": "Neniu",
|
"visibility_modal.quote_nobody": "Nur mi",
|
||||||
"visibility_modal.quote_public": "Iu ajn"
|
"visibility_modal.quote_public": "Iu ajn",
|
||||||
|
"visibility_modal.save": "Konservi"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -483,6 +483,7 @@
|
||||||
"keyboard_shortcuts.home": "Abrir línea temporal principal",
|
"keyboard_shortcuts.home": "Abrir línea temporal principal",
|
||||||
"keyboard_shortcuts.hotkey": "Atajo",
|
"keyboard_shortcuts.hotkey": "Atajo",
|
||||||
"keyboard_shortcuts.legend": "Mostrar este texto",
|
"keyboard_shortcuts.legend": "Mostrar este texto",
|
||||||
|
"keyboard_shortcuts.load_more": "Focalizar el botón «Cargar más»",
|
||||||
"keyboard_shortcuts.local": "Abrirlínea temporal local",
|
"keyboard_shortcuts.local": "Abrirlínea temporal local",
|
||||||
"keyboard_shortcuts.mention": "Mencionar al autor",
|
"keyboard_shortcuts.mention": "Mencionar al autor",
|
||||||
"keyboard_shortcuts.muted": "Abrir lista de usuarios silenciados",
|
"keyboard_shortcuts.muted": "Abrir lista de usuarios silenciados",
|
||||||
|
|
@ -619,6 +620,7 @@
|
||||||
"notification.moderation_warning.action_suspend": "Tu cuenta fue suspendida.",
|
"notification.moderation_warning.action_suspend": "Tu cuenta fue suspendida.",
|
||||||
"notification.own_poll": "Tu encuesta finalizó",
|
"notification.own_poll": "Tu encuesta finalizó",
|
||||||
"notification.poll": "Finalizó una encuesta en la que votaste",
|
"notification.poll": "Finalizó una encuesta en la que votaste",
|
||||||
|
"notification.quoted_update": "{name} editó un mensaje que citaste",
|
||||||
"notification.reblog": "{name} adhirió a tu mensaje",
|
"notification.reblog": "{name} adhirió a tu mensaje",
|
||||||
"notification.reblog.name_and_others_with_link": "{name} y <a>{count, plural, one {# cuenta más} other {# cuentas más}}</a> marcaron tu mensaje como favorito",
|
"notification.reblog.name_and_others_with_link": "{name} y <a>{count, plural, one {# cuenta más} other {# cuentas más}}</a> marcaron tu mensaje como favorito",
|
||||||
"notification.relationships_severance_event": "Conexiones perdidas con {name}",
|
"notification.relationships_severance_event": "Conexiones perdidas con {name}",
|
||||||
|
|
@ -738,11 +740,18 @@
|
||||||
"privacy.private.short": "Seguidores",
|
"privacy.private.short": "Seguidores",
|
||||||
"privacy.public.long": "Cualquier persona dentro y fuera de Mastodon",
|
"privacy.public.long": "Cualquier persona dentro y fuera de Mastodon",
|
||||||
"privacy.public.short": "Público",
|
"privacy.public.short": "Público",
|
||||||
"privacy.unlisted.additional": "Esto se comporta exactamente igual que con la configuración de privacidad de mensaje \"Público\", excepto que el mensaje no aparecerá en los líneas temporales en vivo, ni en las etiquetas, ni en la línea temporal \"Explorá\", ni en la búsqueda de Mastodon; incluso si optaste por hacer tu cuenta visible.",
|
"privacy.quote.anyone": "{visibility}, todos pueden citar",
|
||||||
|
"privacy.quote.disabled": "{visibility}, citas deshabilitadas",
|
||||||
|
"privacy.quote.limited": "{visibility}, citas limitadas",
|
||||||
|
"privacy.unlisted.additional": "Esto se comporta exactamente igual que con la configuración de privacidad de mensaje «Público», excepto que el mensaje no aparecerá en las líneas temporales en vivo, ni en las etiquetas, ni en la línea temporal «Explorá», ni en la búsqueda de Mastodon; incluso si optaste por hacer tu cuenta visible.",
|
||||||
"privacy.unlisted.long": "Menos fanfarrias algorítmicas",
|
"privacy.unlisted.long": "Menos fanfarrias algorítmicas",
|
||||||
"privacy.unlisted.short": "Público silencioso",
|
"privacy.unlisted.short": "Público silencioso",
|
||||||
"privacy_policy.last_updated": "Última actualización: {date}",
|
"privacy_policy.last_updated": "Última actualización: {date}",
|
||||||
"privacy_policy.title": "Política de privacidad",
|
"privacy_policy.title": "Política de privacidad",
|
||||||
|
"quote_error.poll": "No se permite citar encuestas.",
|
||||||
|
"quote_error.quote": "Solo se permite una cita a la vez.",
|
||||||
|
"quote_error.unauthorized": "No tenés autorización para citar este mensaje.",
|
||||||
|
"quote_error.upload": "No se permite citar con archivos multimedia.",
|
||||||
"recommended": "Opción recomendada",
|
"recommended": "Opción recomendada",
|
||||||
"refresh": "Refrescar",
|
"refresh": "Refrescar",
|
||||||
"regeneration_indicator.please_stand_by": "Esperá, por favor.",
|
"regeneration_indicator.please_stand_by": "Esperá, por favor.",
|
||||||
|
|
@ -892,6 +901,7 @@
|
||||||
"status.quote_policy_change": "Cambiá quién puede citar",
|
"status.quote_policy_change": "Cambiá quién puede citar",
|
||||||
"status.quote_post_author": "Se citó un mensaje de @{name}",
|
"status.quote_post_author": "Se citó un mensaje de @{name}",
|
||||||
"status.quote_private": "No se pueden citar los mensajes privados",
|
"status.quote_private": "No se pueden citar los mensajes privados",
|
||||||
|
"status.quotes": "{count, plural, one {# voto} other {# votos}}",
|
||||||
"status.read_more": "Leé más",
|
"status.read_more": "Leé más",
|
||||||
"status.reblog": "Adherir",
|
"status.reblog": "Adherir",
|
||||||
"status.reblog_private": "Adherir a la audiencia original",
|
"status.reblog_private": "Adherir a la audiencia original",
|
||||||
|
|
@ -944,6 +954,7 @@
|
||||||
"upload_button.label": "Agregá imágenes, o un archivo de audio o video",
|
"upload_button.label": "Agregá imágenes, o un archivo de audio o video",
|
||||||
"upload_error.limit": "Se excedió el límite de subida de archivos.",
|
"upload_error.limit": "Se excedió el límite de subida de archivos.",
|
||||||
"upload_error.poll": "No se permite la subida de archivos en encuestas.",
|
"upload_error.poll": "No se permite la subida de archivos en encuestas.",
|
||||||
|
"upload_error.quote": "No se permite subir archivos con citas.",
|
||||||
"upload_form.drag_and_drop.instructions": "Para recoger un archivo multimedia, pulsá la barra espaciadora o la tecla Enter. Mientras arrastrás, usá las teclas de flecha para mover el archivo multimedia en cualquier dirección. Volvé a pulsar la barra espaciadora o la tecla Enter para soltar el archivo multimedia en su nueva posición, o pulsá la tecla Escape para cancelar.",
|
"upload_form.drag_and_drop.instructions": "Para recoger un archivo multimedia, pulsá la barra espaciadora o la tecla Enter. Mientras arrastrás, usá las teclas de flecha para mover el archivo multimedia en cualquier dirección. Volvé a pulsar la barra espaciadora o la tecla Enter para soltar el archivo multimedia en su nueva posición, o pulsá la tecla Escape para cancelar.",
|
||||||
"upload_form.drag_and_drop.on_drag_cancel": "Se canceló el arrastre. Se eliminó el archivo adjunto {item}.",
|
"upload_form.drag_and_drop.on_drag_cancel": "Se canceló el arrastre. Se eliminó el archivo adjunto {item}.",
|
||||||
"upload_form.drag_and_drop.on_drag_end": "El archivo adjunto {item} fue soltado.",
|
"upload_form.drag_and_drop.on_drag_end": "El archivo adjunto {item} fue soltado.",
|
||||||
|
|
@ -969,14 +980,15 @@
|
||||||
"video.volume_up": "Subir volumen",
|
"video.volume_up": "Subir volumen",
|
||||||
"visibility_modal.button_title": "Establecer visibilidad",
|
"visibility_modal.button_title": "Establecer visibilidad",
|
||||||
"visibility_modal.header": "Visibilidad e interacción",
|
"visibility_modal.header": "Visibilidad e interacción",
|
||||||
"visibility_modal.helper.direct_quoting": "No se pueden citar las menciones privadas.",
|
"visibility_modal.helper.direct_quoting": "Las menciones privadas redactadas en Mastodon no pueden ser citadas por otras cuentas.",
|
||||||
"visibility_modal.helper.privacy_editing": "No se puede cambiar la visibilidad a los mensajes ya enviados.",
|
"visibility_modal.helper.privacy_editing": "No se puede cambiar la visibilidad a los mensajes ya enviados.",
|
||||||
"visibility_modal.helper.private_quoting": "No se pueden citar los mensajes destinados solo a seguidores.",
|
"visibility_modal.helper.private_quoting": "Los mensajes solo para seguidores redactados en Mastodon no pueden ser citados por otras cuentas.",
|
||||||
"visibility_modal.helper.unlisted_quoting": "Cuando otras cuentas te citen, sus publicaciones también se ocultarán de las líneas temporales de tendencias.",
|
"visibility_modal.helper.unlisted_quoting": "Cuando otras cuentas te citen, sus publicaciones también se ocultarán de las líneas temporales de tendencias.",
|
||||||
"visibility_modal.instructions": "Controlá quién puede interactuar con este mensaje. Los ajustes globales se pueden encontrar en <link>«Configuración» > «Otras opciones»</link>.",
|
"visibility_modal.instructions": "Controlá quién puede interactuar con este mensaje. Los ajustes globales se pueden encontrar en <link>«Configuración» > «Otras opciones»</link>.",
|
||||||
"visibility_modal.privacy_label": "Privacidad",
|
"visibility_modal.privacy_label": "Privacidad",
|
||||||
"visibility_modal.quote_followers": "Solo para seguidores",
|
"visibility_modal.quote_followers": "Solo para seguidores",
|
||||||
"visibility_modal.quote_label": "Cambiá quién puede citar",
|
"visibility_modal.quote_label": "Cambiá quién puede citar",
|
||||||
"visibility_modal.quote_nobody": "Ninguna cuenta",
|
"visibility_modal.quote_nobody": "Solo yo",
|
||||||
"visibility_modal.quote_public": "Cualquier cuenta"
|
"visibility_modal.quote_public": "Cualquier cuenta",
|
||||||
|
"visibility_modal.save": "Guardar"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -483,6 +483,7 @@
|
||||||
"keyboard_shortcuts.home": "Abrir cronología principal",
|
"keyboard_shortcuts.home": "Abrir cronología principal",
|
||||||
"keyboard_shortcuts.hotkey": "Tecla de acceso rápido",
|
"keyboard_shortcuts.hotkey": "Tecla de acceso rápido",
|
||||||
"keyboard_shortcuts.legend": "Mostrar esta leyenda",
|
"keyboard_shortcuts.legend": "Mostrar esta leyenda",
|
||||||
|
"keyboard_shortcuts.load_more": "Enfoque en el botón \"Cargar más\"",
|
||||||
"keyboard_shortcuts.local": "Abrir cronología local",
|
"keyboard_shortcuts.local": "Abrir cronología local",
|
||||||
"keyboard_shortcuts.mention": "Mencionar al autor",
|
"keyboard_shortcuts.mention": "Mencionar al autor",
|
||||||
"keyboard_shortcuts.muted": "Abrir la lista de usuarios silenciados",
|
"keyboard_shortcuts.muted": "Abrir la lista de usuarios silenciados",
|
||||||
|
|
@ -619,6 +620,7 @@
|
||||||
"notification.moderation_warning.action_suspend": "Tu cuenta ha sido suspendida.",
|
"notification.moderation_warning.action_suspend": "Tu cuenta ha sido suspendida.",
|
||||||
"notification.own_poll": "Tu encuesta ha terminado",
|
"notification.own_poll": "Tu encuesta ha terminado",
|
||||||
"notification.poll": "Una encuesta en la que has votado ha terminado",
|
"notification.poll": "Una encuesta en la que has votado ha terminado",
|
||||||
|
"notification.quoted_update": "{name} editó una publicación que has citado",
|
||||||
"notification.reblog": "{name} ha impulsado tu publicación",
|
"notification.reblog": "{name} ha impulsado tu publicación",
|
||||||
"notification.reblog.name_and_others_with_link": "{name} y <a>{count, plural, one {# otro} other {# otros}}</a> impulsaron tu publicación",
|
"notification.reblog.name_and_others_with_link": "{name} y <a>{count, plural, one {# otro} other {# otros}}</a> impulsaron tu publicación",
|
||||||
"notification.relationships_severance_event": "Conexiones perdidas con {name}",
|
"notification.relationships_severance_event": "Conexiones perdidas con {name}",
|
||||||
|
|
@ -738,11 +740,18 @@
|
||||||
"privacy.private.short": "Seguidores",
|
"privacy.private.short": "Seguidores",
|
||||||
"privacy.public.long": "Cualquiera dentro y fuera de Mastodon",
|
"privacy.public.long": "Cualquiera dentro y fuera de Mastodon",
|
||||||
"privacy.public.short": "Público",
|
"privacy.public.short": "Público",
|
||||||
|
"privacy.quote.anyone": "{visibility}, cualquiera puede citar",
|
||||||
|
"privacy.quote.disabled": "{visibility}, citas desactivadas",
|
||||||
|
"privacy.quote.limited": "{visibility}, citas limitadas",
|
||||||
"privacy.unlisted.additional": "Esto se comporta exactamente igual que el público, excepto que el post no aparecerá en las cronologías en directo o en las etiquetas, la exploración o busquedas en Mastodon, incluso si está optado por activar la cuenta de usuario.",
|
"privacy.unlisted.additional": "Esto se comporta exactamente igual que el público, excepto que el post no aparecerá en las cronologías en directo o en las etiquetas, la exploración o busquedas en Mastodon, incluso si está optado por activar la cuenta de usuario.",
|
||||||
"privacy.unlisted.long": "Menos fanfares algorítmicos",
|
"privacy.unlisted.long": "Menos fanfares algorítmicos",
|
||||||
"privacy.unlisted.short": "Público silencioso",
|
"privacy.unlisted.short": "Público silencioso",
|
||||||
"privacy_policy.last_updated": "Actualizado por última vez {date}",
|
"privacy_policy.last_updated": "Actualizado por última vez {date}",
|
||||||
"privacy_policy.title": "Política de Privacidad",
|
"privacy_policy.title": "Política de Privacidad",
|
||||||
|
"quote_error.poll": "No se permite citar encuestas.",
|
||||||
|
"quote_error.quote": "Solo se permite una cita a la vez.",
|
||||||
|
"quote_error.unauthorized": "No estás autorizado a citar esta publicación.",
|
||||||
|
"quote_error.upload": "No se permite citar con archivos multimedia.",
|
||||||
"recommended": "Recomendado",
|
"recommended": "Recomendado",
|
||||||
"refresh": "Actualizar",
|
"refresh": "Actualizar",
|
||||||
"regeneration_indicator.please_stand_by": "Espera, por favor.",
|
"regeneration_indicator.please_stand_by": "Espera, por favor.",
|
||||||
|
|
@ -892,6 +901,7 @@
|
||||||
"status.quote_policy_change": "Cambia quién puede citarte",
|
"status.quote_policy_change": "Cambia quién puede citarte",
|
||||||
"status.quote_post_author": "Ha citado una publicación de @{name}",
|
"status.quote_post_author": "Ha citado una publicación de @{name}",
|
||||||
"status.quote_private": "Las publicaciones privadas no pueden citarse",
|
"status.quote_private": "Las publicaciones privadas no pueden citarse",
|
||||||
|
"status.quotes": "{count, plural,one {cita} other {citas}}",
|
||||||
"status.read_more": "Leer más",
|
"status.read_more": "Leer más",
|
||||||
"status.reblog": "Impulsar",
|
"status.reblog": "Impulsar",
|
||||||
"status.reblog_private": "Implusar a la audiencia original",
|
"status.reblog_private": "Implusar a la audiencia original",
|
||||||
|
|
@ -944,6 +954,7 @@
|
||||||
"upload_button.label": "Subir multimedia (JPEG, PNG, GIF, WebM, MP4, MOV)",
|
"upload_button.label": "Subir multimedia (JPEG, PNG, GIF, WebM, MP4, MOV)",
|
||||||
"upload_error.limit": "Límite de subida de archivos excedido.",
|
"upload_error.limit": "Límite de subida de archivos excedido.",
|
||||||
"upload_error.poll": "No se permite subir archivos con las encuestas.",
|
"upload_error.poll": "No se permite subir archivos con las encuestas.",
|
||||||
|
"upload_error.quote": "No se permite subir archivos a las citas.",
|
||||||
"upload_form.drag_and_drop.instructions": "Para recoger un archivo adjunto, pulsa la barra espaciadora o la tecla Intro. Mientras arrastras, usa las teclas de flecha para mover el archivo adjunto en cualquier dirección. Vuelve a pulsar la barra espaciadora o la tecla Intro para soltar el archivo adjunto en su nueva posición, o pulsa la tecla Escape para cancelar.",
|
"upload_form.drag_and_drop.instructions": "Para recoger un archivo adjunto, pulsa la barra espaciadora o la tecla Intro. Mientras arrastras, usa las teclas de flecha para mover el archivo adjunto en cualquier dirección. Vuelve a pulsar la barra espaciadora o la tecla Intro para soltar el archivo adjunto en su nueva posición, o pulsa la tecla Escape para cancelar.",
|
||||||
"upload_form.drag_and_drop.on_drag_cancel": "Arrastre cancelado. El archivo adjunto {item} fue eliminado.",
|
"upload_form.drag_and_drop.on_drag_cancel": "Arrastre cancelado. El archivo adjunto {item} fue eliminado.",
|
||||||
"upload_form.drag_and_drop.on_drag_end": "El archivo adjunto {item} fue eliminado.",
|
"upload_form.drag_and_drop.on_drag_end": "El archivo adjunto {item} fue eliminado.",
|
||||||
|
|
@ -969,14 +980,15 @@
|
||||||
"video.volume_up": "Subir el volumen",
|
"video.volume_up": "Subir el volumen",
|
||||||
"visibility_modal.button_title": "Establece la visibilidad",
|
"visibility_modal.button_title": "Establece la visibilidad",
|
||||||
"visibility_modal.header": "Visibilidad e interacción",
|
"visibility_modal.header": "Visibilidad e interacción",
|
||||||
"visibility_modal.helper.direct_quoting": "Las menciones privadas no pueden citarse.",
|
"visibility_modal.helper.direct_quoting": "Las menciones privadas creadas en Mastodon no pueden ser citadas por otros.",
|
||||||
"visibility_modal.helper.privacy_editing": "Las publicaciones ya enviadas no pueden cambiar su visibilidad.",
|
"visibility_modal.helper.privacy_editing": "Las publicaciones ya enviadas no pueden cambiar su visibilidad.",
|
||||||
"visibility_modal.helper.private_quoting": "Las publicaciones para seguidores no pueden citarse.",
|
"visibility_modal.helper.private_quoting": "Las publicaciones solo para seguidores creadas en Mastodon no pueden ser citadas por otros.",
|
||||||
"visibility_modal.helper.unlisted_quoting": "Cuando las personas te citen, sus publicaciones también se ocultarán de las cronologías de tendencias.",
|
"visibility_modal.helper.unlisted_quoting": "Cuando las personas te citen, sus publicaciones también se ocultarán de las cronologías de tendencias.",
|
||||||
"visibility_modal.instructions": "Controla quién puede interactuar con esta publicación. La configuración global se encuentra en <link>Preferencias > Otros</link>.",
|
"visibility_modal.instructions": "Controla quién puede interactuar con esta publicación. La configuración global se encuentra en <link>Preferencias > Otros</link>.",
|
||||||
"visibility_modal.privacy_label": "Privacidad",
|
"visibility_modal.privacy_label": "Privacidad",
|
||||||
"visibility_modal.quote_followers": "Solo seguidores",
|
"visibility_modal.quote_followers": "Solo seguidores",
|
||||||
"visibility_modal.quote_label": "Cambia quién puede citarte",
|
"visibility_modal.quote_label": "Cambia quién puede citarte",
|
||||||
"visibility_modal.quote_nobody": "Nadie",
|
"visibility_modal.quote_nobody": "Solo yo",
|
||||||
"visibility_modal.quote_public": "Cualquiera"
|
"visibility_modal.quote_public": "Cualquiera",
|
||||||
|
"visibility_modal.save": "Guardar"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -483,6 +483,7 @@
|
||||||
"keyboard_shortcuts.home": "Abrir cronología principal",
|
"keyboard_shortcuts.home": "Abrir cronología principal",
|
||||||
"keyboard_shortcuts.hotkey": "Tecla rápida",
|
"keyboard_shortcuts.hotkey": "Tecla rápida",
|
||||||
"keyboard_shortcuts.legend": "Mostrar esta leyenda",
|
"keyboard_shortcuts.legend": "Mostrar esta leyenda",
|
||||||
|
"keyboard_shortcuts.load_more": "Poner el foco en el botón \"Cargar más\"",
|
||||||
"keyboard_shortcuts.local": "Abrir cronología local",
|
"keyboard_shortcuts.local": "Abrir cronología local",
|
||||||
"keyboard_shortcuts.mention": "Mencionar autor",
|
"keyboard_shortcuts.mention": "Mencionar autor",
|
||||||
"keyboard_shortcuts.muted": "Abrir lista de usuarios silenciados",
|
"keyboard_shortcuts.muted": "Abrir lista de usuarios silenciados",
|
||||||
|
|
@ -619,6 +620,7 @@
|
||||||
"notification.moderation_warning.action_suspend": "Tu cuenta ha sido suspendida.",
|
"notification.moderation_warning.action_suspend": "Tu cuenta ha sido suspendida.",
|
||||||
"notification.own_poll": "Tu encuesta ha terminado",
|
"notification.own_poll": "Tu encuesta ha terminado",
|
||||||
"notification.poll": "Una encuesta ha terminado",
|
"notification.poll": "Una encuesta ha terminado",
|
||||||
|
"notification.quoted_update": "{name} editó una publicación que has citado",
|
||||||
"notification.reblog": "{name} ha impulsado tu publicación",
|
"notification.reblog": "{name} ha impulsado tu publicación",
|
||||||
"notification.reblog.name_and_others_with_link": "{name} y <a>{count, plural, one {# más} other {# más}}</a> impulsaron tu publicación",
|
"notification.reblog.name_and_others_with_link": "{name} y <a>{count, plural, one {# más} other {# más}}</a> impulsaron tu publicación",
|
||||||
"notification.relationships_severance_event": "Conexiones perdidas con {name}",
|
"notification.relationships_severance_event": "Conexiones perdidas con {name}",
|
||||||
|
|
@ -738,11 +740,18 @@
|
||||||
"privacy.private.short": "Seguidores",
|
"privacy.private.short": "Seguidores",
|
||||||
"privacy.public.long": "Visible por todo el mundo, dentro y fuera de Mastodon",
|
"privacy.public.long": "Visible por todo el mundo, dentro y fuera de Mastodon",
|
||||||
"privacy.public.short": "Pública",
|
"privacy.public.short": "Pública",
|
||||||
|
"privacy.quote.anyone": "{visibility}, cualquiera puede citar",
|
||||||
|
"privacy.quote.disabled": "{visibility}, citas deshabilitadas",
|
||||||
|
"privacy.quote.limited": "{visibility}, citas limitadas",
|
||||||
"privacy.unlisted.additional": "Se comporta exactamente igual que la visibilidad pública, excepto que la publicación no aparecerá en las cronologías públicas o en las etiquetas, la sección de Explorar o la búsqueda de Mastodon, incluso si has habilitado la opción de búsqueda en tu perfil.",
|
"privacy.unlisted.additional": "Se comporta exactamente igual que la visibilidad pública, excepto que la publicación no aparecerá en las cronologías públicas o en las etiquetas, la sección de Explorar o la búsqueda de Mastodon, incluso si has habilitado la opción de búsqueda en tu perfil.",
|
||||||
"privacy.unlisted.long": "Sin algoritmos de descubrimiento",
|
"privacy.unlisted.long": "Sin algoritmos de descubrimiento",
|
||||||
"privacy.unlisted.short": "Pública silenciosa",
|
"privacy.unlisted.short": "Pública silenciosa",
|
||||||
"privacy_policy.last_updated": "Actualizado por última vez {date}",
|
"privacy_policy.last_updated": "Actualizado por última vez {date}",
|
||||||
"privacy_policy.title": "Política de Privacidad",
|
"privacy_policy.title": "Política de Privacidad",
|
||||||
|
"quote_error.poll": "No es posible citar encuestas.",
|
||||||
|
"quote_error.quote": "Solo se permite una cita a la vez.",
|
||||||
|
"quote_error.unauthorized": "No tienes permiso para citar esta publicación.",
|
||||||
|
"quote_error.upload": "No se permite citar con archivos multimedia.",
|
||||||
"recommended": "Recomendado",
|
"recommended": "Recomendado",
|
||||||
"refresh": "Actualizar",
|
"refresh": "Actualizar",
|
||||||
"regeneration_indicator.please_stand_by": "Espera, por favor.",
|
"regeneration_indicator.please_stand_by": "Espera, por favor.",
|
||||||
|
|
@ -892,6 +901,7 @@
|
||||||
"status.quote_policy_change": "Cambia quién puede citarte",
|
"status.quote_policy_change": "Cambia quién puede citarte",
|
||||||
"status.quote_post_author": "Ha citado una publicación de @{name}",
|
"status.quote_post_author": "Ha citado una publicación de @{name}",
|
||||||
"status.quote_private": "Las publicaciones privadas no pueden ser citadas",
|
"status.quote_private": "Las publicaciones privadas no pueden ser citadas",
|
||||||
|
"status.quotes": "{count, plural,one {cita} other {citas}}",
|
||||||
"status.read_more": "Leer más",
|
"status.read_more": "Leer más",
|
||||||
"status.reblog": "Impulsar",
|
"status.reblog": "Impulsar",
|
||||||
"status.reblog_private": "Impulsar a la audiencia original",
|
"status.reblog_private": "Impulsar a la audiencia original",
|
||||||
|
|
@ -944,6 +954,7 @@
|
||||||
"upload_button.label": "Añadir imágenes, un fichero de vídeo o de audio",
|
"upload_button.label": "Añadir imágenes, un fichero de vídeo o de audio",
|
||||||
"upload_error.limit": "Límite de subida de archivos excedido.",
|
"upload_error.limit": "Límite de subida de archivos excedido.",
|
||||||
"upload_error.poll": "No se permite la subida de archivos con encuestas.",
|
"upload_error.poll": "No se permite la subida de archivos con encuestas.",
|
||||||
|
"upload_error.quote": "No se permite subir archivos a las citas.",
|
||||||
"upload_form.drag_and_drop.instructions": "Para recoger un archivo multimedia, pulsa la barra espaciadora o la tecla Enter. Mientras arrastras, utiliza las teclas de flecha para mover el archivo multimedia en cualquier dirección. Vuelve a pulsar la barra espaciadora o la tecla Enter para soltar el archivo multimedia en su nueva posición, o pulsa Escape para cancelar.",
|
"upload_form.drag_and_drop.instructions": "Para recoger un archivo multimedia, pulsa la barra espaciadora o la tecla Enter. Mientras arrastras, utiliza las teclas de flecha para mover el archivo multimedia en cualquier dirección. Vuelve a pulsar la barra espaciadora o la tecla Enter para soltar el archivo multimedia en su nueva posición, o pulsa Escape para cancelar.",
|
||||||
"upload_form.drag_and_drop.on_drag_cancel": "Se canceló el arrastre. Se eliminó el archivo adjunto {item}.",
|
"upload_form.drag_and_drop.on_drag_cancel": "Se canceló el arrastre. Se eliminó el archivo adjunto {item}.",
|
||||||
"upload_form.drag_and_drop.on_drag_end": "El archivo adjunto {item} ha sido eliminado.",
|
"upload_form.drag_and_drop.on_drag_end": "El archivo adjunto {item} ha sido eliminado.",
|
||||||
|
|
@ -969,14 +980,15 @@
|
||||||
"video.volume_up": "Subir volumen",
|
"video.volume_up": "Subir volumen",
|
||||||
"visibility_modal.button_title": "Configura la visibilidad",
|
"visibility_modal.button_title": "Configura la visibilidad",
|
||||||
"visibility_modal.header": "Visibilidad e interacciones",
|
"visibility_modal.header": "Visibilidad e interacciones",
|
||||||
"visibility_modal.helper.direct_quoting": "Las menciones privadas no se pueden citar.",
|
"visibility_modal.helper.direct_quoting": "Las menciones privadas publicadas en Mastodon no pueden ser citadas por otros usuarios.",
|
||||||
"visibility_modal.helper.privacy_editing": "Una vez publicada, no se puede cambiar su visibilidad.",
|
"visibility_modal.helper.privacy_editing": "Una vez publicada, no se puede cambiar su visibilidad.",
|
||||||
"visibility_modal.helper.private_quoting": "Las publicaciones para seguidores no pueden citarse.",
|
"visibility_modal.helper.private_quoting": "Las publicaciones solo para seguidores hechas en Mastodon no pueden ser citadas por otros usuarios.",
|
||||||
"visibility_modal.helper.unlisted_quoting": "Cuando la gente te cite, su publicación tampoco se mostrará en las cronologías públicas.",
|
"visibility_modal.helper.unlisted_quoting": "Cuando la gente te cite, su publicación tampoco se mostrará en las cronologías públicas.",
|
||||||
"visibility_modal.instructions": "Controla quién puede interactuar con esta publicación. Puedes encontrar los ajustes globales en <link>Preferencias > Otros</link>.",
|
"visibility_modal.instructions": "Controla quién puede interactuar con esta publicación. Puedes encontrar los ajustes globales en <link>Preferencias > Otros</link>.",
|
||||||
"visibility_modal.privacy_label": "Privacidad",
|
"visibility_modal.privacy_label": "Privacidad",
|
||||||
"visibility_modal.quote_followers": "Sólo seguidores",
|
"visibility_modal.quote_followers": "Sólo seguidores",
|
||||||
"visibility_modal.quote_label": "Cambia quién puede citarte",
|
"visibility_modal.quote_label": "Cambia quién puede citarte",
|
||||||
"visibility_modal.quote_nobody": "Nadie",
|
"visibility_modal.quote_nobody": "Solo yo",
|
||||||
"visibility_modal.quote_public": "Cualquiera"
|
"visibility_modal.quote_public": "Cualquiera",
|
||||||
|
"visibility_modal.save": "Guardar"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -245,6 +245,9 @@
|
||||||
"confirmations.remove_from_followers.confirm": "Eemalda jälgija",
|
"confirmations.remove_from_followers.confirm": "Eemalda jälgija",
|
||||||
"confirmations.remove_from_followers.message": "{name} lõpetab sellega sinu jälgimise. Kas oled kindel, et soovid jätkata?",
|
"confirmations.remove_from_followers.message": "{name} lõpetab sellega sinu jälgimise. Kas oled kindel, et soovid jätkata?",
|
||||||
"confirmations.remove_from_followers.title": "Kas eemaldame jälgija?",
|
"confirmations.remove_from_followers.title": "Kas eemaldame jälgija?",
|
||||||
|
"confirmations.revoke_quote.confirm": "Eemalda postitus",
|
||||||
|
"confirmations.revoke_quote.message": "Seda tegevust ei saa tagasi pöörata.",
|
||||||
|
"confirmations.revoke_quote.title": "Kas eemaldame postituse?",
|
||||||
"confirmations.unfollow.confirm": "Ära jälgi",
|
"confirmations.unfollow.confirm": "Ära jälgi",
|
||||||
"confirmations.unfollow.message": "Oled kindel, et ei soovi rohkem jälgida kasutajat {name}?",
|
"confirmations.unfollow.message": "Oled kindel, et ei soovi rohkem jälgida kasutajat {name}?",
|
||||||
"confirmations.unfollow.title": "Ei jälgi enam kasutajat?",
|
"confirmations.unfollow.title": "Ei jälgi enam kasutajat?",
|
||||||
|
|
@ -289,6 +292,7 @@
|
||||||
"domain_pill.your_handle": "Sinu tunnus:",
|
"domain_pill.your_handle": "Sinu tunnus:",
|
||||||
"domain_pill.your_server": "Sinu digitaalne kodu, kus on kõik sinu postitused. Sulle ei meeldi see? Vaheta mistahes ajal serverit ja võta jälgijad ka.",
|
"domain_pill.your_server": "Sinu digitaalne kodu, kus on kõik sinu postitused. Sulle ei meeldi see? Vaheta mistahes ajal serverit ja võta jälgijad ka.",
|
||||||
"domain_pill.your_username": "Sinu unikaalne identifikaator siin serveris. On võimalik, et leiad teistes serverites samasuguse kasutajanimega kasutajaid.",
|
"domain_pill.your_username": "Sinu unikaalne identifikaator siin serveris. On võimalik, et leiad teistes serverites samasuguse kasutajanimega kasutajaid.",
|
||||||
|
"dropdown.empty": "Vali üks variantidest",
|
||||||
"embed.instructions": "Lisa see postitus oma veebilehele, kopeerides alloleva koodi.",
|
"embed.instructions": "Lisa see postitus oma veebilehele, kopeerides alloleva koodi.",
|
||||||
"embed.preview": "Nii näeb see välja:",
|
"embed.preview": "Nii näeb see välja:",
|
||||||
"emoji_button.activity": "Tegevus",
|
"emoji_button.activity": "Tegevus",
|
||||||
|
|
@ -600,6 +604,7 @@
|
||||||
"notification.label.mention": "Mainimine",
|
"notification.label.mention": "Mainimine",
|
||||||
"notification.label.private_mention": "Privaatne mainimine",
|
"notification.label.private_mention": "Privaatne mainimine",
|
||||||
"notification.label.private_reply": "Privaatne vastus",
|
"notification.label.private_reply": "Privaatne vastus",
|
||||||
|
"notification.label.quote": "{name} tsiteeris sinu postitust",
|
||||||
"notification.label.reply": "Vastus",
|
"notification.label.reply": "Vastus",
|
||||||
"notification.mention": "Mainimine",
|
"notification.mention": "Mainimine",
|
||||||
"notification.mentioned_you": "{name} mainis sind",
|
"notification.mentioned_you": "{name} mainis sind",
|
||||||
|
|
@ -657,6 +662,7 @@
|
||||||
"notifications.column_settings.mention": "Mainimised:",
|
"notifications.column_settings.mention": "Mainimised:",
|
||||||
"notifications.column_settings.poll": "Küsitluse tulemused:",
|
"notifications.column_settings.poll": "Küsitluse tulemused:",
|
||||||
"notifications.column_settings.push": "Push teated",
|
"notifications.column_settings.push": "Push teated",
|
||||||
|
"notifications.column_settings.quote": "Tsitaadid:",
|
||||||
"notifications.column_settings.reblog": "Jagamised:",
|
"notifications.column_settings.reblog": "Jagamised:",
|
||||||
"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",
|
||||||
|
|
@ -732,11 +738,18 @@
|
||||||
"privacy.private.short": "Jälgijad",
|
"privacy.private.short": "Jälgijad",
|
||||||
"privacy.public.long": "Nii kasutajad kui mittekasutajad",
|
"privacy.public.long": "Nii kasutajad kui mittekasutajad",
|
||||||
"privacy.public.short": "Avalik",
|
"privacy.public.short": "Avalik",
|
||||||
|
"privacy.quote.anyone": "{visibility}, kõik võivad tsiteerida",
|
||||||
|
"privacy.quote.disabled": "{visibility}, tsiteerimine pole lubatud",
|
||||||
|
"privacy.quote.limited": "{visibility}, tsiteerimine on piiratud",
|
||||||
"privacy.unlisted.additional": "See on olemuselt küll avalik, aga postitus ei ilmu voogudes ega märksõnades, lehitsedes ega Mastodoni otsingus, isegi kui konto on seadistustes avalik.",
|
"privacy.unlisted.additional": "See on olemuselt küll avalik, aga postitus ei ilmu voogudes ega märksõnades, lehitsedes ega Mastodoni otsingus, isegi kui konto on seadistustes avalik.",
|
||||||
"privacy.unlisted.long": "Vähem algoritmilisi teavitusi",
|
"privacy.unlisted.long": "Vähem algoritmilisi teavitusi",
|
||||||
"privacy.unlisted.short": "Vaikselt avalik",
|
"privacy.unlisted.short": "Vaikselt avalik",
|
||||||
"privacy_policy.last_updated": "Viimati uuendatud {date}",
|
"privacy_policy.last_updated": "Viimati uuendatud {date}",
|
||||||
"privacy_policy.title": "Isikuandmete kaitse",
|
"privacy_policy.title": "Isikuandmete kaitse",
|
||||||
|
"quote_error.poll": "Tsiteerimine pole küsitlustes lubatud.",
|
||||||
|
"quote_error.quote": "Korraga on lubatud vaid üks tsitaat.",
|
||||||
|
"quote_error.unauthorized": "Sul pole õigust seda postitust tsiteerida.",
|
||||||
|
"quote_error.upload": "Tsiteerimine pole manuste puhul lubatud.",
|
||||||
"recommended": "Soovitatud",
|
"recommended": "Soovitatud",
|
||||||
"refresh": "Värskenda",
|
"refresh": "Värskenda",
|
||||||
"regeneration_indicator.please_stand_by": "Palun oota.",
|
"regeneration_indicator.please_stand_by": "Palun oota.",
|
||||||
|
|
@ -843,9 +856,11 @@
|
||||||
"status.admin_account": "Ava @{name} moderaatorivaates",
|
"status.admin_account": "Ava @{name} moderaatorivaates",
|
||||||
"status.admin_domain": "Ava {domain} modeereerimisliides",
|
"status.admin_domain": "Ava {domain} modeereerimisliides",
|
||||||
"status.admin_status": "Ava postitus moderaatorivaates",
|
"status.admin_status": "Ava postitus moderaatorivaates",
|
||||||
|
"status.all_disabled": "Hooandmine ja tsiteerimine pole lubatud",
|
||||||
"status.block": "Blokeeri @{name}",
|
"status.block": "Blokeeri @{name}",
|
||||||
"status.bookmark": "Järjehoidja",
|
"status.bookmark": "Järjehoidja",
|
||||||
"status.cancel_reblog_private": "Lõpeta jagamine",
|
"status.cancel_reblog_private": "Lõpeta jagamine",
|
||||||
|
"status.cannot_quote": "Autor ei luba selle postituse tsiteerimist",
|
||||||
"status.cannot_reblog": "Seda postitust ei saa jagada",
|
"status.cannot_reblog": "Seda postitust ei saa jagada",
|
||||||
"status.context.load_new_replies": "Leidub uusi vastuseid",
|
"status.context.load_new_replies": "Leidub uusi vastuseid",
|
||||||
"status.context.loading": "Kontrollin täiendavate vastuste olemasolu",
|
"status.context.loading": "Kontrollin täiendavate vastuste olemasolu",
|
||||||
|
|
@ -874,12 +889,16 @@
|
||||||
"status.mute_conversation": "Vaigista vestlus",
|
"status.mute_conversation": "Vaigista vestlus",
|
||||||
"status.open": "Laienda postitus",
|
"status.open": "Laienda postitus",
|
||||||
"status.pin": "Kinnita profiilile",
|
"status.pin": "Kinnita profiilile",
|
||||||
|
"status.quote": "Tsiteeri",
|
||||||
|
"status.quote.cancel": "Katkesta tsiteerimine",
|
||||||
"status.quote_error.filtered": "Peidetud mõne kasutatud filtri tõttu",
|
"status.quote_error.filtered": "Peidetud mõne kasutatud filtri tõttu",
|
||||||
"status.quote_error.not_available": "Postitus pole saadaval",
|
"status.quote_error.not_available": "Postitus pole saadaval",
|
||||||
"status.quote_error.pending_approval": "Postitus on ootel",
|
"status.quote_error.pending_approval": "Postitus on ootel",
|
||||||
"status.quote_error.pending_approval_popout.body": "Kuna erinevates serverites on erinevad reeglid, siis üle Födiversumi jagatud tsitaatide kuvamine võib võtta aega.",
|
"status.quote_error.pending_approval_popout.body": "Kuna erinevates serverites on erinevad reeglid, siis üle Födiversumi jagatud tsitaatide kuvamine võib võtta aega.",
|
||||||
"status.quote_error.pending_approval_popout.title": "Tsiteerimine on ootel? Palun jää rahulikuks",
|
"status.quote_error.pending_approval_popout.title": "Tsiteerimine on ootel? Palun jää rahulikuks",
|
||||||
|
"status.quote_policy_change": "Muuda neid, kes võivad tsiteerida",
|
||||||
"status.quote_post_author": "Tsiteeris kasutaja @{name} postitust",
|
"status.quote_post_author": "Tsiteeris kasutaja @{name} postitust",
|
||||||
|
"status.quote_private": "Otsepostituste tsiteerimine pole võimalik",
|
||||||
"status.read_more": "Loe veel",
|
"status.read_more": "Loe veel",
|
||||||
"status.reblog": "Jaga",
|
"status.reblog": "Jaga",
|
||||||
"status.reblog_private": "Jaga algse nähtavusega",
|
"status.reblog_private": "Jaga algse nähtavusega",
|
||||||
|
|
@ -894,6 +913,7 @@
|
||||||
"status.reply": "Vasta",
|
"status.reply": "Vasta",
|
||||||
"status.replyAll": "Vasta lõimele",
|
"status.replyAll": "Vasta lõimele",
|
||||||
"status.report": "Raporteeri @{name}",
|
"status.report": "Raporteeri @{name}",
|
||||||
|
"status.revoke_quote": "Eemalda minu tsitaat postituses, mille tegi @{name}",
|
||||||
"status.sensitive_warning": "Tundlik sisu",
|
"status.sensitive_warning": "Tundlik sisu",
|
||||||
"status.share": "Jaga",
|
"status.share": "Jaga",
|
||||||
"status.show_less_all": "Peida kogu tundlik sisu",
|
"status.show_less_all": "Peida kogu tundlik sisu",
|
||||||
|
|
@ -931,6 +951,7 @@
|
||||||
"upload_button.label": "Lisa meedia (JPEG, PNG, GIF, WebM, MP4, MOV)",
|
"upload_button.label": "Lisa meedia (JPEG, PNG, GIF, WebM, MP4, MOV)",
|
||||||
"upload_error.limit": "Faili üleslaadimise limiit ületatud.",
|
"upload_error.limit": "Faili üleslaadimise limiit ületatud.",
|
||||||
"upload_error.poll": "Küsitlustes pole faili üleslaadimine lubatud.",
|
"upload_error.poll": "Küsitlustes pole faili üleslaadimine lubatud.",
|
||||||
|
"upload_error.quote": "Tsiteerimisel pole faili üleslaadimine lubatud.",
|
||||||
"upload_form.drag_and_drop.instructions": "Vajuta tühikut või enterit, et tõsta manus. Lohistamise ajal kasuta nooleklahve, et manust liigutada teatud suunas. Vajuta tühikut või enterit uuesti, et paigutada manus oma uuele kohale, või escape tühistamiseks.",
|
"upload_form.drag_and_drop.instructions": "Vajuta tühikut või enterit, et tõsta manus. Lohistamise ajal kasuta nooleklahve, et manust liigutada teatud suunas. Vajuta tühikut või enterit uuesti, et paigutada manus oma uuele kohale, või escape tühistamiseks.",
|
||||||
"upload_form.drag_and_drop.on_drag_cancel": "Lohistamine tühistati. Manus {item} on asetatud.",
|
"upload_form.drag_and_drop.on_drag_cancel": "Lohistamine tühistati. Manus {item} on asetatud.",
|
||||||
"upload_form.drag_and_drop.on_drag_end": "Manus {item} on asetatud.",
|
"upload_form.drag_and_drop.on_drag_end": "Manus {item} on asetatud.",
|
||||||
|
|
@ -953,5 +974,14 @@
|
||||||
"video.skip_forward": "Keri edasi",
|
"video.skip_forward": "Keri edasi",
|
||||||
"video.unmute": "Lõpeta vaigistamine",
|
"video.unmute": "Lõpeta vaigistamine",
|
||||||
"video.volume_down": "Heli vaiksemaks",
|
"video.volume_down": "Heli vaiksemaks",
|
||||||
"video.volume_up": "Heli valjemaks"
|
"video.volume_up": "Heli valjemaks",
|
||||||
|
"visibility_modal.button_title": "Muuda nähtavust",
|
||||||
|
"visibility_modal.header": "Nähtavus ja kasutus",
|
||||||
|
"visibility_modal.helper.privacy_editing": "Avaldatud postitused ei saa muuta oma nähtavust.",
|
||||||
|
"visibility_modal.helper.unlisted_quoting": "Kui teised kasutajad sind tsiteerivad, siis nende postitused peidetakse ajajoonelt, mis näitavad populaarsust koguvaid postitusi.",
|
||||||
|
"visibility_modal.instructions": "Halda seda, kes võivad antud postitust kasutada. Üldised seadistused leiduvad siin: <link>Eelistused > Muu</link>.",
|
||||||
|
"visibility_modal.privacy_label": "Privaatsus",
|
||||||
|
"visibility_modal.quote_followers": "Ainult jälgijad",
|
||||||
|
"visibility_modal.quote_label": "Muuda seda, kes võivad tsiteerida",
|
||||||
|
"visibility_modal.quote_public": "Kõik"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -880,6 +880,7 @@
|
||||||
"status.mute_conversation": "خموشاندن گفتوگو",
|
"status.mute_conversation": "خموشاندن گفتوگو",
|
||||||
"status.open": "گسترش این فرسته",
|
"status.open": "گسترش این فرسته",
|
||||||
"status.pin": "سنجاق به نمایه",
|
"status.pin": "سنجاق به نمایه",
|
||||||
|
"status.quote": "نقلقول",
|
||||||
"status.quote.cancel": "لغو نقل",
|
"status.quote.cancel": "لغو نقل",
|
||||||
"status.quote_error.filtered": "نهفته بنا بر یکی از پالایههایتان",
|
"status.quote_error.filtered": "نهفته بنا بر یکی از پالایههایتان",
|
||||||
"status.quote_error.not_available": "فرسته در دسترس نیست",
|
"status.quote_error.not_available": "فرسته در دسترس نیست",
|
||||||
|
|
@ -965,14 +966,11 @@
|
||||||
"video.volume_up": "افزایش حجم صدا",
|
"video.volume_up": "افزایش حجم صدا",
|
||||||
"visibility_modal.button_title": "تنظیم نمایانی",
|
"visibility_modal.button_title": "تنظیم نمایانی",
|
||||||
"visibility_modal.header": "نمایانی و برهمکنش",
|
"visibility_modal.header": "نمایانی و برهمکنش",
|
||||||
"visibility_modal.helper.direct_quoting": "نامبریهای خصوصی قابل نقل نیستند.",
|
|
||||||
"visibility_modal.helper.privacy_editing": "نمیتوان نمایانی فرستههای منتشر شده را تغییر داد.",
|
"visibility_modal.helper.privacy_editing": "نمیتوان نمایانی فرستههای منتشر شده را تغییر داد.",
|
||||||
"visibility_modal.helper.private_quoting": "فرستههای فقط برای پیگیرندگان نمیتوانند نقل شوند.",
|
|
||||||
"visibility_modal.helper.unlisted_quoting": "هنگامی که افراد نقلتان میکنند فرستهشان هم از خطزمانیهای داغ پنهان خواهد بود.",
|
"visibility_modal.helper.unlisted_quoting": "هنگامی که افراد نقلتان میکنند فرستهشان هم از خطزمانیهای داغ پنهان خواهد بود.",
|
||||||
"visibility_modal.instructions": "واپایش کسانی که میتوانند با این فرسته برهمکنش داشته باشند. تنظیمات سراسری میتواند در <link>ترجیحات > دیگر</link> پیدا شود.",
|
"visibility_modal.instructions": "واپایش کسانی که میتوانند با این فرسته برهمکنش داشته باشند. تنظیمات سراسری میتواند در <link>ترجیحات > دیگر</link> پیدا شود.",
|
||||||
"visibility_modal.privacy_label": "محرمانگی",
|
"visibility_modal.privacy_label": "محرمانگی",
|
||||||
"visibility_modal.quote_followers": "فقط پیگیرندگان",
|
"visibility_modal.quote_followers": "فقط پیگیرندگان",
|
||||||
"visibility_modal.quote_label": "تغییر کسانی که میتوانند نقل کنند",
|
"visibility_modal.quote_label": "تغییر کسانی که میتوانند نقل کنند",
|
||||||
"visibility_modal.quote_nobody": "هیچکس",
|
|
||||||
"visibility_modal.quote_public": "هرکسی"
|
"visibility_modal.quote_public": "هرکسی"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -483,6 +483,7 @@
|
||||||
"keyboard_shortcuts.home": "Avaa kotiaikajana",
|
"keyboard_shortcuts.home": "Avaa kotiaikajana",
|
||||||
"keyboard_shortcuts.hotkey": "Pikanäppäin",
|
"keyboard_shortcuts.hotkey": "Pikanäppäin",
|
||||||
"keyboard_shortcuts.legend": "Näytä tämä ohje",
|
"keyboard_shortcuts.legend": "Näytä tämä ohje",
|
||||||
|
"keyboard_shortcuts.load_more": "Kohdista ”Lataa lisää” -painikkeeseen",
|
||||||
"keyboard_shortcuts.local": "Avaa paikallinen aikajana",
|
"keyboard_shortcuts.local": "Avaa paikallinen aikajana",
|
||||||
"keyboard_shortcuts.mention": "Mainitse tekijä",
|
"keyboard_shortcuts.mention": "Mainitse tekijä",
|
||||||
"keyboard_shortcuts.muted": "Avaa mykistettyjen käyttäjien luettelo",
|
"keyboard_shortcuts.muted": "Avaa mykistettyjen käyttäjien luettelo",
|
||||||
|
|
@ -619,6 +620,7 @@
|
||||||
"notification.moderation_warning.action_suspend": "Tilisi on jäädytetty.",
|
"notification.moderation_warning.action_suspend": "Tilisi on jäädytetty.",
|
||||||
"notification.own_poll": "Äänestyksesi on päättynyt",
|
"notification.own_poll": "Äänestyksesi on päättynyt",
|
||||||
"notification.poll": "Äänestys, johon osallistuit, on päättynyt",
|
"notification.poll": "Äänestys, johon osallistuit, on päättynyt",
|
||||||
|
"notification.quoted_update": "{name} muokkasi lainaamaasi julkaisua",
|
||||||
"notification.reblog": "{name} tehosti julkaisuasi",
|
"notification.reblog": "{name} tehosti julkaisuasi",
|
||||||
"notification.reblog.name_and_others_with_link": "{name} ja <a>{count, plural, one {# muu} other {# muuta}}</a> tehostivat julkaisuasi",
|
"notification.reblog.name_and_others_with_link": "{name} ja <a>{count, plural, one {# muu} other {# muuta}}</a> tehostivat julkaisuasi",
|
||||||
"notification.relationships_severance_event": "Menetettiin yhteydet palvelimeen {name}",
|
"notification.relationships_severance_event": "Menetettiin yhteydet palvelimeen {name}",
|
||||||
|
|
@ -738,11 +740,18 @@
|
||||||
"privacy.private.short": "Seuraajat",
|
"privacy.private.short": "Seuraajat",
|
||||||
"privacy.public.long": "Kuka tahansa Mastodonissa ja sen ulkopuolella",
|
"privacy.public.long": "Kuka tahansa Mastodonissa ja sen ulkopuolella",
|
||||||
"privacy.public.short": "Julkinen",
|
"privacy.public.short": "Julkinen",
|
||||||
|
"privacy.quote.anyone": "{visibility}, kuka vain voi lainata",
|
||||||
|
"privacy.quote.disabled": "{visibility}, lainaukset poissa käytöstä",
|
||||||
|
"privacy.quote.limited": "{visibility}, lainauksia rajoitettu",
|
||||||
"privacy.unlisted.additional": "Tämä toimii muuten kuin julkinen, mutta julkaisut eivät näy livesyöte-, aihetunniste- tai selausnäkymissä eivätkä Mastodonin hakutuloksissa, vaikka ne olisivat käyttäjätililläsi yleisesti sallittuina.",
|
"privacy.unlisted.additional": "Tämä toimii muuten kuin julkinen, mutta julkaisut eivät näy livesyöte-, aihetunniste- tai selausnäkymissä eivätkä Mastodonin hakutuloksissa, vaikka ne olisivat käyttäjätililläsi yleisesti sallittuina.",
|
||||||
"privacy.unlisted.long": "Vähemmän algoritmiperusteista sisältöä",
|
"privacy.unlisted.long": "Vähemmän algoritmiperusteista sisältöä",
|
||||||
"privacy.unlisted.short": "Vaivihkaisesti julkinen",
|
"privacy.unlisted.short": "Vaivihkaisesti julkinen",
|
||||||
"privacy_policy.last_updated": "Päivitetty viimeksi {date}",
|
"privacy_policy.last_updated": "Päivitetty viimeksi {date}",
|
||||||
"privacy_policy.title": "Tietosuojakäytäntö",
|
"privacy_policy.title": "Tietosuojakäytäntö",
|
||||||
|
"quote_error.poll": "Äänestysten lainaaminen ei ole sallittua.",
|
||||||
|
"quote_error.quote": "Vain yksi lainaus kerrallaan on sallittu.",
|
||||||
|
"quote_error.unauthorized": "Sinulla ei ole valtuuksia lainata tätä julkaisua.",
|
||||||
|
"quote_error.upload": "Medialiitteiden lainaaminen ei ole sallittua.",
|
||||||
"recommended": "Suositellaan",
|
"recommended": "Suositellaan",
|
||||||
"refresh": "Päivitä",
|
"refresh": "Päivitä",
|
||||||
"regeneration_indicator.please_stand_by": "Ole valmiina.",
|
"regeneration_indicator.please_stand_by": "Ole valmiina.",
|
||||||
|
|
@ -892,6 +901,7 @@
|
||||||
"status.quote_policy_change": "Vaihda, kuka voi lainata",
|
"status.quote_policy_change": "Vaihda, kuka voi lainata",
|
||||||
"status.quote_post_author": "Lainaa käyttäjän @{name} julkaisua",
|
"status.quote_post_author": "Lainaa käyttäjän @{name} julkaisua",
|
||||||
"status.quote_private": "Yksityisiä julkaisuja ei voi lainata",
|
"status.quote_private": "Yksityisiä julkaisuja ei voi lainata",
|
||||||
|
"status.quotes": "{count, plural, one {lainaus} other {lainausta}}",
|
||||||
"status.read_more": "Näytä enemmän",
|
"status.read_more": "Näytä enemmän",
|
||||||
"status.reblog": "Tehosta",
|
"status.reblog": "Tehosta",
|
||||||
"status.reblog_private": "Tehosta alkuperäiselle yleisölle",
|
"status.reblog_private": "Tehosta alkuperäiselle yleisölle",
|
||||||
|
|
@ -944,6 +954,7 @@
|
||||||
"upload_button.label": "Lisää kuvia, video tai äänitiedosto",
|
"upload_button.label": "Lisää kuvia, video tai äänitiedosto",
|
||||||
"upload_error.limit": "Tiedostolähetysten rajoitus ylitetty.",
|
"upload_error.limit": "Tiedostolähetysten rajoitus ylitetty.",
|
||||||
"upload_error.poll": "Tiedostojen lisääminen äänestysten oheen ei ole sallittua.",
|
"upload_error.poll": "Tiedostojen lisääminen äänestysten oheen ei ole sallittua.",
|
||||||
|
"upload_error.quote": "Tiedostojen lähettäminen ei ole sallittua lainauksissa.",
|
||||||
"upload_form.drag_and_drop.instructions": "Valitse medialiite painamalla välilyöntiä tai enteriä. Vetäessäsi käytä nuolinäppäimiä siirtääksesi medialiitettä vastaavaan suuntaan. Paina välilyöntiä tai enteriä uudelleen pudottaaksesi medialiitteen uuteen kohtaansa, tai peru siirto painamalla escape-näppäintä.",
|
"upload_form.drag_and_drop.instructions": "Valitse medialiite painamalla välilyöntiä tai enteriä. Vetäessäsi käytä nuolinäppäimiä siirtääksesi medialiitettä vastaavaan suuntaan. Paina välilyöntiä tai enteriä uudelleen pudottaaksesi medialiitteen uuteen kohtaansa, tai peru siirto painamalla escape-näppäintä.",
|
||||||
"upload_form.drag_and_drop.on_drag_cancel": "Veto peruttiin. Medialiitettä {item} ei siirretty.",
|
"upload_form.drag_and_drop.on_drag_cancel": "Veto peruttiin. Medialiitettä {item} ei siirretty.",
|
||||||
"upload_form.drag_and_drop.on_drag_end": "Medialiite {item} pudotettiin.",
|
"upload_form.drag_and_drop.on_drag_end": "Medialiite {item} pudotettiin.",
|
||||||
|
|
@ -969,14 +980,15 @@
|
||||||
"video.volume_up": "Lisää äänenvoimakkuutta",
|
"video.volume_up": "Lisää äänenvoimakkuutta",
|
||||||
"visibility_modal.button_title": "Aseta näkyvyys",
|
"visibility_modal.button_title": "Aseta näkyvyys",
|
||||||
"visibility_modal.header": "Näkyvyys ja vuorovaikutus",
|
"visibility_modal.header": "Näkyvyys ja vuorovaikutus",
|
||||||
"visibility_modal.helper.direct_quoting": "Yksityismainintoja ei voi lainata.",
|
"visibility_modal.helper.direct_quoting": "Muut eivät voi lainata Mastodonissa kirjoitettuja yksityismainintoja.",
|
||||||
"visibility_modal.helper.privacy_editing": "Lähetettyjen julkaisujen näkyvyyttä ei voi vaihtaa.",
|
"visibility_modal.helper.privacy_editing": "Lähetettyjen julkaisujen näkyvyyttä ei voi vaihtaa.",
|
||||||
"visibility_modal.helper.private_quoting": "Vain seuraajille tarkoitettuja julkaisuja ei voi lainata.",
|
"visibility_modal.helper.private_quoting": "Muut eivät voi lainata Mastodonissa kirjoitettuja, vain seuraajille tarkoitettuja julkaisuja.",
|
||||||
"visibility_modal.helper.unlisted_quoting": "Kun ihmiset lainaavat sinua, myös heidän julkaisunsa piilotetaan suosittujen julkaisujen aikajanoilta.",
|
"visibility_modal.helper.unlisted_quoting": "Kun ihmiset lainaavat sinua, myös heidän julkaisunsa piilotetaan suosittujen julkaisujen aikajanoilta.",
|
||||||
"visibility_modal.instructions": "Hallitse, kuka voi olla vuorovaikutuksessa tämän julkaisun kanssa. Yleiset asetukset sijaitsevat kohdassa <link>Asetukset > Muut</link>.",
|
"visibility_modal.instructions": "Hallitse, kuka voi olla vuorovaikutuksessa tämän julkaisun kanssa. Yleiset asetukset sijaitsevat kohdassa <link>Asetukset > Muut</link>.",
|
||||||
"visibility_modal.privacy_label": "Yksityisyys",
|
"visibility_modal.privacy_label": "Yksityisyys",
|
||||||
"visibility_modal.quote_followers": "Vain seuraajat",
|
"visibility_modal.quote_followers": "Vain seuraajat",
|
||||||
"visibility_modal.quote_label": "Vaihda, kuka voi lainata",
|
"visibility_modal.quote_label": "Vaihda, kuka voi lainata",
|
||||||
"visibility_modal.quote_nobody": "Ei kukaan",
|
"visibility_modal.quote_nobody": "Vain minä",
|
||||||
"visibility_modal.quote_public": "Kuka tahansa"
|
"visibility_modal.quote_public": "Kuka tahansa",
|
||||||
|
"visibility_modal.save": "Tallenna"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,9 @@
|
||||||
"account.edit_profile": "Baguhin ang profile",
|
"account.edit_profile": "Baguhin ang profile",
|
||||||
"account.enable_notifications": "Ipaalam sa akin kapag nag-post si @{name}",
|
"account.enable_notifications": "Ipaalam sa akin kapag nag-post si @{name}",
|
||||||
"account.endorse": "I-tampok sa profile",
|
"account.endorse": "I-tampok sa profile",
|
||||||
|
"account.familiar_followers_many": "Sinusundan nina {name1}, {name2}, at {othersCount, plural, one {# iba pa na kilala mo} other {# na iba pa na kilala mo}}",
|
||||||
|
"account.familiar_followers_one": "Sinusindan ni/ng {name1}",
|
||||||
|
"account.familiar_followers_two": "Sinusindan nina {name1} at {name2}",
|
||||||
"account.featured": "Itinatampok",
|
"account.featured": "Itinatampok",
|
||||||
"account.featured_tags.last_status_at": "Huling post noong {date}",
|
"account.featured_tags.last_status_at": "Huling post noong {date}",
|
||||||
"account.featured_tags.last_status_never": "Walang mga post",
|
"account.featured_tags.last_status_never": "Walang mga post",
|
||||||
|
|
@ -34,9 +37,11 @@
|
||||||
"account.followers": "Mga tagasunod",
|
"account.followers": "Mga tagasunod",
|
||||||
"account.followers.empty": "Wala pang sumusunod sa tagagamit na ito.",
|
"account.followers.empty": "Wala pang sumusunod sa tagagamit na ito.",
|
||||||
"account.followers_counter": "{count, plural, one {{counter} tagasunod} other {{counter} tagasunod}}",
|
"account.followers_counter": "{count, plural, one {{counter} tagasunod} other {{counter} tagasunod}}",
|
||||||
|
"account.followers_you_know_counter": "{counter} (na) kilala mo",
|
||||||
"account.following": "Sinusundan",
|
"account.following": "Sinusundan",
|
||||||
"account.following_counter": "{count, plural, one {{counter} sinusundan} other {{counter} sinusundan}}",
|
"account.following_counter": "{count, plural, one {{counter} sinusundan} other {{counter} sinusundan}}",
|
||||||
"account.follows.empty": "Wala pang sinusundan ang tagagamit na ito.",
|
"account.follows.empty": "Wala pang sinusundan ang tagagamit na ito.",
|
||||||
|
"account.follows_you": "Sinusundan ka",
|
||||||
"account.go_to_profile": "Pumunta sa profile",
|
"account.go_to_profile": "Pumunta sa profile",
|
||||||
"account.hide_reblogs": "Itago ang mga pagpapalakas mula sa {name}",
|
"account.hide_reblogs": "Itago ang mga pagpapalakas mula sa {name}",
|
||||||
"account.in_memoriam": "Sa Alaala Ni.",
|
"account.in_memoriam": "Sa Alaala Ni.",
|
||||||
|
|
@ -127,12 +132,14 @@
|
||||||
"compose_form.reply": "Tumugon",
|
"compose_form.reply": "Tumugon",
|
||||||
"compose_form.spoiler.marked": "Tanggalin ang babala sa nilalaman",
|
"compose_form.spoiler.marked": "Tanggalin ang babala sa nilalaman",
|
||||||
"compose_form.spoiler.unmarked": "Idagdag ang babala sa nilalaman",
|
"compose_form.spoiler.unmarked": "Idagdag ang babala sa nilalaman",
|
||||||
|
"compose_form.spoiler_placeholder": "Babala sa nilalaman (hindi kinailangan)",
|
||||||
"confirmation_modal.cancel": "Pagpaliban",
|
"confirmation_modal.cancel": "Pagpaliban",
|
||||||
"confirmations.block.confirm": "Harangan",
|
"confirmations.block.confirm": "Harangan",
|
||||||
"confirmations.delete.message": "Sigurado ka bang gusto mong burahin ang post na ito?",
|
"confirmations.delete.message": "Sigurado ka bang gusto mong burahin ang post na ito?",
|
||||||
"confirmations.delete_list.confirm": "Tanggalin",
|
"confirmations.delete_list.confirm": "Tanggalin",
|
||||||
"confirmations.delete_list.message": "Sigurado ka bang gusto mong burahin ang listahang ito?",
|
"confirmations.delete_list.message": "Sigurado ka bang gusto mong burahin ang listahang ito?",
|
||||||
"confirmations.discard_edit_media.confirm": "Ipagpaliban",
|
"confirmations.discard_edit_media.confirm": "Ipagpaliban",
|
||||||
|
"content_warning.hide": "Itago ang post",
|
||||||
"content_warning.show_more": "Magpakita ng higit pa",
|
"content_warning.show_more": "Magpakita ng higit pa",
|
||||||
"conversation.mark_as_read": "Markahan bilang nabasa na",
|
"conversation.mark_as_read": "Markahan bilang nabasa na",
|
||||||
"conversation.open": "Tingnan ang pag-uusap",
|
"conversation.open": "Tingnan ang pag-uusap",
|
||||||
|
|
@ -255,6 +262,8 @@
|
||||||
"notification.mentioned_you": "Binanggit ka ni {name}",
|
"notification.mentioned_you": "Binanggit ka ni {name}",
|
||||||
"notification.moderation-warning.learn_more": "Matuto nang higit pa",
|
"notification.moderation-warning.learn_more": "Matuto nang higit pa",
|
||||||
"notification.moderation_warning": "Mayroong kang natanggap na babala sa pagtitimpi",
|
"notification.moderation_warning": "Mayroong kang natanggap na babala sa pagtitimpi",
|
||||||
|
"notification.reblog": "Pinalakas ang iyong post ni {name}",
|
||||||
|
"notification.reblog.name_and_others_with_link": "Pinalakas ang iyong post ni/ng {name} at <a>{count, plural,one {# iba pa} other {# na iba pa}}</a>",
|
||||||
"notification.relationships_severance_event.learn_more": "Matuto nang higit pa",
|
"notification.relationships_severance_event.learn_more": "Matuto nang higit pa",
|
||||||
"notification_requests.accept": "Tanggapin",
|
"notification_requests.accept": "Tanggapin",
|
||||||
"notification_requests.maximize": "Palakihin",
|
"notification_requests.maximize": "Palakihin",
|
||||||
|
|
@ -342,6 +351,7 @@
|
||||||
"search_results.see_all": "Ipakita lahat",
|
"search_results.see_all": "Ipakita lahat",
|
||||||
"server_banner.server_stats": "Katayuan ng serbiro:",
|
"server_banner.server_stats": "Katayuan ng serbiro:",
|
||||||
"status.block": "Harangan si @{name}",
|
"status.block": "Harangan si @{name}",
|
||||||
|
"status.cannot_reblog": "Hindi maaring mapalakas ang post na ito",
|
||||||
"status.delete": "Tanggalin",
|
"status.delete": "Tanggalin",
|
||||||
"status.direct": "Palihim na banggitin si/ang @{name}",
|
"status.direct": "Palihim na banggitin si/ang @{name}",
|
||||||
"status.direct_indicator": "Palihim na banggit",
|
"status.direct_indicator": "Palihim na banggit",
|
||||||
|
|
@ -354,6 +364,7 @@
|
||||||
"status.mention": "Banggitin ang/si @{name}",
|
"status.mention": "Banggitin ang/si @{name}",
|
||||||
"status.more": "Higit pa",
|
"status.more": "Higit pa",
|
||||||
"status.read_more": "Basahin ang higit pa",
|
"status.read_more": "Basahin ang higit pa",
|
||||||
|
"status.reblogged_by": "Pinapalakas ni/ng {name}",
|
||||||
"status.reblogs.empty": "Wala pang nagpalakas ng post na ito. Kung may sinumang nagpalakas, makikita sila rito.",
|
"status.reblogs.empty": "Wala pang nagpalakas ng post na ito. Kung may sinumang nagpalakas, makikita sila rito.",
|
||||||
"status.remove_favourite": "Tanggalin sa mga paborito",
|
"status.remove_favourite": "Tanggalin sa mga paborito",
|
||||||
"status.reply": "Tumugon",
|
"status.reply": "Tumugon",
|
||||||
|
|
|
||||||
|
|
@ -483,6 +483,7 @@
|
||||||
"keyboard_shortcuts.home": "Lat heimatíðarlinju upp",
|
"keyboard_shortcuts.home": "Lat heimatíðarlinju upp",
|
||||||
"keyboard_shortcuts.hotkey": "Snarknappur",
|
"keyboard_shortcuts.hotkey": "Snarknappur",
|
||||||
"keyboard_shortcuts.legend": "Vís henda tekstin",
|
"keyboard_shortcuts.legend": "Vís henda tekstin",
|
||||||
|
"keyboard_shortcuts.load_more": "Fokusera á \"Tak meira niður\" knøttin",
|
||||||
"keyboard_shortcuts.local": "Lat lokala tíðarlinju upp",
|
"keyboard_shortcuts.local": "Lat lokala tíðarlinju upp",
|
||||||
"keyboard_shortcuts.mention": "Nevn rithøvund",
|
"keyboard_shortcuts.mention": "Nevn rithøvund",
|
||||||
"keyboard_shortcuts.muted": "Lat upp lista við doyvdum brúkarum",
|
"keyboard_shortcuts.muted": "Lat upp lista við doyvdum brúkarum",
|
||||||
|
|
@ -738,11 +739,18 @@
|
||||||
"privacy.private.short": "Fylgjarar",
|
"privacy.private.short": "Fylgjarar",
|
||||||
"privacy.public.long": "Øll í og uttanfyri Mastodon",
|
"privacy.public.long": "Øll í og uttanfyri Mastodon",
|
||||||
"privacy.public.short": "Alment",
|
"privacy.public.short": "Alment",
|
||||||
|
"privacy.quote.anyone": "{visibility}, øll kunnu sitera",
|
||||||
|
"privacy.quote.disabled": "{visibility}, siteringar óvirknar",
|
||||||
|
"privacy.quote.limited": "{visibility}, siteringar avmarkaðar",
|
||||||
"privacy.unlisted.additional": "Hetta er júst sum almenn, tó verður posturin ikki vístur í samtíðarrásum ella frámerkjum, rannsakan ella Mastodon leitingum, sjálvt um valið er galdandi fyri alla kontuna.",
|
"privacy.unlisted.additional": "Hetta er júst sum almenn, tó verður posturin ikki vístur í samtíðarrásum ella frámerkjum, rannsakan ella Mastodon leitingum, sjálvt um valið er galdandi fyri alla kontuna.",
|
||||||
"privacy.unlisted.long": "Færri algoritmiskar fanfarur",
|
"privacy.unlisted.long": "Færri algoritmiskar fanfarur",
|
||||||
"privacy.unlisted.short": "Stillur almenningur",
|
"privacy.unlisted.short": "Stillur almenningur",
|
||||||
"privacy_policy.last_updated": "Seinast dagført {date}",
|
"privacy_policy.last_updated": "Seinast dagført {date}",
|
||||||
"privacy_policy.title": "Privatlívspolitikkur",
|
"privacy_policy.title": "Privatlívspolitikkur",
|
||||||
|
"quote_error.poll": "Tað er ikki loyvt at sitera spurnarkanningar.",
|
||||||
|
"quote_error.quote": "Bara ein sitering er loyvd í senn.",
|
||||||
|
"quote_error.unauthorized": "Tú hevur ikki rættindi at sitera hendan postin.",
|
||||||
|
"quote_error.upload": "Sitering er ikki loyvd um miðlar eru viðheftir.",
|
||||||
"recommended": "Viðmælt",
|
"recommended": "Viðmælt",
|
||||||
"refresh": "Endurles",
|
"refresh": "Endurles",
|
||||||
"regeneration_indicator.please_stand_by": "Bíða við.",
|
"regeneration_indicator.please_stand_by": "Bíða við.",
|
||||||
|
|
@ -944,6 +952,7 @@
|
||||||
"upload_button.label": "Legg myndir, sjónfílu ella ljóðfílu afturat",
|
"upload_button.label": "Legg myndir, sjónfílu ella ljóðfílu afturat",
|
||||||
"upload_error.limit": "Farið er um markið fyri fíluuppsending.",
|
"upload_error.limit": "Farið er um markið fyri fíluuppsending.",
|
||||||
"upload_error.poll": "Ikki loyvt at leggja fílur upp í spurnarkanningum.",
|
"upload_error.poll": "Ikki loyvt at leggja fílur upp í spurnarkanningum.",
|
||||||
|
"upload_error.quote": "Ikki loyvt at leggja fílur upp við siteringum.",
|
||||||
"upload_form.drag_and_drop.instructions": "Fyri at heinta eitt miðlaviðfesti, trýst á millumrúm ella returknapp. Meðan tú dregur, brúka pílarnar fyri at flyta miðaviðfesti í einhvønn rætning. Trýst á millumrúm ella returknapp aftur fyri at sleppa miðlaviðfestinum í nýggja staðnum ella trýst á esc-knappin fyri at angra.",
|
"upload_form.drag_and_drop.instructions": "Fyri at heinta eitt miðlaviðfesti, trýst á millumrúm ella returknapp. Meðan tú dregur, brúka pílarnar fyri at flyta miðaviðfesti í einhvønn rætning. Trýst á millumrúm ella returknapp aftur fyri at sleppa miðlaviðfestinum í nýggja staðnum ella trýst á esc-knappin fyri at angra.",
|
||||||
"upload_form.drag_and_drop.on_drag_cancel": "Draging varð steðgað. Miðlaviðfestið {item} varð slept.",
|
"upload_form.drag_and_drop.on_drag_cancel": "Draging varð steðgað. Miðlaviðfestið {item} varð slept.",
|
||||||
"upload_form.drag_and_drop.on_drag_end": "Miðlaviðfestið {item} var slept.",
|
"upload_form.drag_and_drop.on_drag_end": "Miðlaviðfestið {item} var slept.",
|
||||||
|
|
@ -969,14 +978,12 @@
|
||||||
"video.volume_up": "Øk um ljóðstyrki",
|
"video.volume_up": "Øk um ljóðstyrki",
|
||||||
"visibility_modal.button_title": "Set sýni",
|
"visibility_modal.button_title": "Set sýni",
|
||||||
"visibility_modal.header": "Sýni og samvirkni",
|
"visibility_modal.header": "Sýni og samvirkni",
|
||||||
"visibility_modal.helper.direct_quoting": "Privatar umrøður kunnu ikki siterast.",
|
|
||||||
"visibility_modal.helper.privacy_editing": "Útgivnir postar kunnnu ikki broyta sýni.",
|
"visibility_modal.helper.privacy_editing": "Útgivnir postar kunnnu ikki broyta sýni.",
|
||||||
"visibility_modal.helper.private_quoting": "Postar, sum einans eru fyri fylgjarar, kunnu ikki siterast.",
|
|
||||||
"visibility_modal.helper.unlisted_quoting": "Tá fólk sitera teg, so vera teirra postar eisini fjaldir frá tíðarlinjum við ráki.",
|
"visibility_modal.helper.unlisted_quoting": "Tá fólk sitera teg, so vera teirra postar eisini fjaldir frá tíðarlinjum við ráki.",
|
||||||
"visibility_modal.instructions": "Stýr, hvør kann virka saman við hesum postinum. Globalar stillingar finnast undir <link>Stilingar > Onnur</link>.",
|
"visibility_modal.instructions": "Stýr, hvør kann virka saman við hesum postinum. Globalar stillingar finnast undir <link>Stilingar > Onnur</link>.",
|
||||||
"visibility_modal.privacy_label": "Privatlív",
|
"visibility_modal.privacy_label": "Privatlív",
|
||||||
"visibility_modal.quote_followers": "Einans fylgjarar",
|
"visibility_modal.quote_followers": "Einans fylgjarar",
|
||||||
"visibility_modal.quote_label": "Broyt hvør kann sitera",
|
"visibility_modal.quote_label": "Broyt hvør kann sitera",
|
||||||
"visibility_modal.quote_nobody": "Eingin",
|
"visibility_modal.quote_public": "Ein og hvør",
|
||||||
"visibility_modal.quote_public": "Ein og hvør"
|
"visibility_modal.save": "Goym"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -849,9 +849,11 @@
|
||||||
"status.admin_account": "Oscail comhéadan modhnóireachta do @{name}",
|
"status.admin_account": "Oscail comhéadan modhnóireachta do @{name}",
|
||||||
"status.admin_domain": "Oscail comhéadan modhnóireachta le haghaidh {domain}",
|
"status.admin_domain": "Oscail comhéadan modhnóireachta le haghaidh {domain}",
|
||||||
"status.admin_status": "Oscail an postáil seo sa chomhéadan modhnóireachta",
|
"status.admin_status": "Oscail an postáil seo sa chomhéadan modhnóireachta",
|
||||||
|
"status.all_disabled": "Tá borradh agus luachana díchumasaithe",
|
||||||
"status.block": "Bac @{name}",
|
"status.block": "Bac @{name}",
|
||||||
"status.bookmark": "Leabharmharcanna",
|
"status.bookmark": "Leabharmharcanna",
|
||||||
"status.cancel_reblog_private": "Dímhol",
|
"status.cancel_reblog_private": "Dímhol",
|
||||||
|
"status.cannot_quote": "Tá an t-údar tar éis lua a dhíchumasú ar an bpost seo",
|
||||||
"status.cannot_reblog": "Ní féidir an phostáil seo a mholadh",
|
"status.cannot_reblog": "Ní féidir an phostáil seo a mholadh",
|
||||||
"status.context.load_new_replies": "Freagraí nua ar fáil",
|
"status.context.load_new_replies": "Freagraí nua ar fáil",
|
||||||
"status.context.loading": "Ag seiceáil le haghaidh tuilleadh freagraí",
|
"status.context.loading": "Ag seiceáil le haghaidh tuilleadh freagraí",
|
||||||
|
|
@ -880,6 +882,8 @@
|
||||||
"status.mute_conversation": "Balbhaigh comhrá",
|
"status.mute_conversation": "Balbhaigh comhrá",
|
||||||
"status.open": "Leathnaigh an post seo",
|
"status.open": "Leathnaigh an post seo",
|
||||||
"status.pin": "Pionnáil ar do phróifíl",
|
"status.pin": "Pionnáil ar do phróifíl",
|
||||||
|
"status.quote": "Luachan",
|
||||||
|
"status.quote.cancel": "Cealaigh an luachan",
|
||||||
"status.quote_error.filtered": "I bhfolach mar gheall ar cheann de do scagairí",
|
"status.quote_error.filtered": "I bhfolach mar gheall ar cheann de do scagairí",
|
||||||
"status.quote_error.not_available": "Níl an postáil ar fáil",
|
"status.quote_error.not_available": "Níl an postáil ar fáil",
|
||||||
"status.quote_error.pending_approval": "Post ar feitheamh",
|
"status.quote_error.pending_approval": "Post ar feitheamh",
|
||||||
|
|
@ -887,6 +891,7 @@
|
||||||
"status.quote_error.pending_approval_popout.title": "Ag fanacht le luachan? Fan socair",
|
"status.quote_error.pending_approval_popout.title": "Ag fanacht le luachan? Fan socair",
|
||||||
"status.quote_policy_change": "Athraigh cé a fhéadann luachan a thabhairt",
|
"status.quote_policy_change": "Athraigh cé a fhéadann luachan a thabhairt",
|
||||||
"status.quote_post_author": "Luaigh mé post le @{name}",
|
"status.quote_post_author": "Luaigh mé post le @{name}",
|
||||||
|
"status.quote_private": "Ní féidir poist phríobháideacha a lua",
|
||||||
"status.read_more": "Léan a thuilleadh",
|
"status.read_more": "Léan a thuilleadh",
|
||||||
"status.reblog": "Treisiú",
|
"status.reblog": "Treisiú",
|
||||||
"status.reblog_private": "Mol le léargas bunúsach",
|
"status.reblog_private": "Mol le léargas bunúsach",
|
||||||
|
|
@ -964,14 +969,11 @@
|
||||||
"video.volume_up": "Toirt suas",
|
"video.volume_up": "Toirt suas",
|
||||||
"visibility_modal.button_title": "Socraigh infheictheacht",
|
"visibility_modal.button_title": "Socraigh infheictheacht",
|
||||||
"visibility_modal.header": "Infheictheacht agus idirghníomhaíocht",
|
"visibility_modal.header": "Infheictheacht agus idirghníomhaíocht",
|
||||||
"visibility_modal.helper.direct_quoting": "Ní féidir lua a thabhairt ar luanna príobháideacha.",
|
|
||||||
"visibility_modal.helper.privacy_editing": "Ní féidir infheictheacht postálacha foilsithe a athrú.",
|
"visibility_modal.helper.privacy_editing": "Ní féidir infheictheacht postálacha foilsithe a athrú.",
|
||||||
"visibility_modal.helper.private_quoting": "Ní féidir poist atá dírithe ar leanúna amháin a lua.",
|
|
||||||
"visibility_modal.helper.unlisted_quoting": "Nuair a luann daoine thú, beidh a bpost i bhfolach ó amlínte treochta freisin.",
|
"visibility_modal.helper.unlisted_quoting": "Nuair a luann daoine thú, beidh a bpost i bhfolach ó amlínte treochta freisin.",
|
||||||
"visibility_modal.instructions": "Rialú cé a fhéadfaidh idirghníomhú leis an bpost seo. Is féidir socruithe domhanda a fháil faoi <link>Sainroghanna > Eile</link>.",
|
"visibility_modal.instructions": "Rialú cé a fhéadfaidh idirghníomhú leis an bpost seo. Is féidir socruithe domhanda a fháil faoi <link>Sainroghanna > Eile</link>.",
|
||||||
"visibility_modal.privacy_label": "Príobháideacht",
|
"visibility_modal.privacy_label": "Príobháideacht",
|
||||||
"visibility_modal.quote_followers": "Leantóirí amháin",
|
"visibility_modal.quote_followers": "Leantóirí amháin",
|
||||||
"visibility_modal.quote_label": "Athraigh cé a fhéadann luachan a thabhairt",
|
"visibility_modal.quote_label": "Athraigh cé a fhéadann luachan a thabhairt",
|
||||||
"visibility_modal.quote_nobody": "Níl aon duine",
|
|
||||||
"visibility_modal.quote_public": "Aon duine"
|
"visibility_modal.quote_public": "Aon duine"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -483,6 +483,7 @@
|
||||||
"keyboard_shortcuts.home": "Para abrir a cronoloxía inicial",
|
"keyboard_shortcuts.home": "Para abrir a cronoloxía inicial",
|
||||||
"keyboard_shortcuts.hotkey": "Tecla de atallo",
|
"keyboard_shortcuts.hotkey": "Tecla de atallo",
|
||||||
"keyboard_shortcuts.legend": "Para amosar esta lenda",
|
"keyboard_shortcuts.legend": "Para amosar esta lenda",
|
||||||
|
"keyboard_shortcuts.load_more": "Foco no botón \"Cargar máis\"",
|
||||||
"keyboard_shortcuts.local": "Para abrir a cronoloxía local",
|
"keyboard_shortcuts.local": "Para abrir a cronoloxía local",
|
||||||
"keyboard_shortcuts.mention": "Para mencionar a autora",
|
"keyboard_shortcuts.mention": "Para mencionar a autora",
|
||||||
"keyboard_shortcuts.muted": "Abrir lista de usuarias acaladas",
|
"keyboard_shortcuts.muted": "Abrir lista de usuarias acaladas",
|
||||||
|
|
@ -619,6 +620,7 @@
|
||||||
"notification.moderation_warning.action_suspend": "A túa conta foi suspendida.",
|
"notification.moderation_warning.action_suspend": "A túa conta foi suspendida.",
|
||||||
"notification.own_poll": "A túa enquisa rematou",
|
"notification.own_poll": "A túa enquisa rematou",
|
||||||
"notification.poll": "Rematou a enquisa na que votaches",
|
"notification.poll": "Rematou a enquisa na que votaches",
|
||||||
|
"notification.quoted_update": "{name} editou unha publicación que citaches",
|
||||||
"notification.reblog": "{name} compartiu a túa publicación",
|
"notification.reblog": "{name} compartiu a túa publicación",
|
||||||
"notification.reblog.name_and_others_with_link": "{name} e <a>{count, plural, one {# máis} other {# máis}}</a> promoveron a túa publicación",
|
"notification.reblog.name_and_others_with_link": "{name} e <a>{count, plural, one {# máis} other {# máis}}</a> promoveron a túa publicación",
|
||||||
"notification.relationships_severance_event": "Relacións perdidas con {name}",
|
"notification.relationships_severance_event": "Relacións perdidas con {name}",
|
||||||
|
|
@ -738,11 +740,18 @@
|
||||||
"privacy.private.short": "Seguidoras",
|
"privacy.private.short": "Seguidoras",
|
||||||
"privacy.public.long": "Para todas dentro e fóra de Mastodon",
|
"privacy.public.long": "Para todas dentro e fóra de Mastodon",
|
||||||
"privacy.public.short": "Público",
|
"privacy.public.short": "Público",
|
||||||
|
"privacy.quote.anyone": "{visibility}, calquera pode citar",
|
||||||
|
"privacy.quote.disabled": "{visibility}, citas desactivadas",
|
||||||
|
"privacy.quote.limited": "{visibility}, citas limitadas",
|
||||||
"privacy.unlisted.additional": "Do mesmo xeito que público, menos que a publicación non aparecerá nas cronoloxías en directo ou nos cancelos, en descubrir ou nas buscas de Mastodon, incluso se estivese establecido nas opcións xerais da conta.",
|
"privacy.unlisted.additional": "Do mesmo xeito que público, menos que a publicación non aparecerá nas cronoloxías en directo ou nos cancelos, en descubrir ou nas buscas de Mastodon, incluso se estivese establecido nas opcións xerais da conta.",
|
||||||
"privacy.unlisted.long": "Menor implicación dos algoritmos",
|
"privacy.unlisted.long": "Menor implicación dos algoritmos",
|
||||||
"privacy.unlisted.short": "Público limitado",
|
"privacy.unlisted.short": "Público limitado",
|
||||||
"privacy_policy.last_updated": "Actualizado por última vez no {date}",
|
"privacy_policy.last_updated": "Actualizado por última vez no {date}",
|
||||||
"privacy_policy.title": "Política de Privacidade",
|
"privacy_policy.title": "Política de Privacidade",
|
||||||
|
"quote_error.poll": "Non se permite citar as enquisas.",
|
||||||
|
"quote_error.quote": "Só se permite citar unha vez.",
|
||||||
|
"quote_error.unauthorized": "Non tes permiso para citar esta publicación.",
|
||||||
|
"quote_error.upload": "As citas non están permitidas para anexos multimedia.",
|
||||||
"recommended": "Aconsellable",
|
"recommended": "Aconsellable",
|
||||||
"refresh": "Actualizar",
|
"refresh": "Actualizar",
|
||||||
"regeneration_indicator.please_stand_by": "Por favor, agarda.",
|
"regeneration_indicator.please_stand_by": "Por favor, agarda.",
|
||||||
|
|
@ -849,9 +858,11 @@
|
||||||
"status.admin_account": "Abrir interface de moderación para @{name}",
|
"status.admin_account": "Abrir interface de moderación para @{name}",
|
||||||
"status.admin_domain": "Abrir interface de moderación para {domain}",
|
"status.admin_domain": "Abrir interface de moderación para {domain}",
|
||||||
"status.admin_status": "Abrir esta publicación na interface de moderación",
|
"status.admin_status": "Abrir esta publicación na interface de moderación",
|
||||||
|
"status.all_disabled": "As promocións e citas están desactivadas",
|
||||||
"status.block": "Bloquear a @{name}",
|
"status.block": "Bloquear a @{name}",
|
||||||
"status.bookmark": "Marcar",
|
"status.bookmark": "Marcar",
|
||||||
"status.cancel_reblog_private": "Desfacer compartido",
|
"status.cancel_reblog_private": "Desfacer compartido",
|
||||||
|
"status.cannot_quote": "A persoa autora desactivou as citas desta publicación",
|
||||||
"status.cannot_reblog": "Esta publicación non pode ser promovida",
|
"status.cannot_reblog": "Esta publicación non pode ser promovida",
|
||||||
"status.context.load_new_replies": "Non hai respostas dispoñibles",
|
"status.context.load_new_replies": "Non hai respostas dispoñibles",
|
||||||
"status.context.loading": "Mirando se hai máis respostas",
|
"status.context.loading": "Mirando se hai máis respostas",
|
||||||
|
|
@ -880,6 +891,7 @@
|
||||||
"status.mute_conversation": "Silenciar conversa",
|
"status.mute_conversation": "Silenciar conversa",
|
||||||
"status.open": "Estender esta publicación",
|
"status.open": "Estender esta publicación",
|
||||||
"status.pin": "Fixar no perfil",
|
"status.pin": "Fixar no perfil",
|
||||||
|
"status.quote": "Citar",
|
||||||
"status.quote.cancel": "Cancelar a cita",
|
"status.quote.cancel": "Cancelar a cita",
|
||||||
"status.quote_error.filtered": "Oculto debido a un dos teus filtros",
|
"status.quote_error.filtered": "Oculto debido a un dos teus filtros",
|
||||||
"status.quote_error.not_available": "Publicación non dispoñible",
|
"status.quote_error.not_available": "Publicación non dispoñible",
|
||||||
|
|
@ -888,6 +900,8 @@
|
||||||
"status.quote_error.pending_approval_popout.title": "Cita pendente? Non te apures",
|
"status.quote_error.pending_approval_popout.title": "Cita pendente? Non te apures",
|
||||||
"status.quote_policy_change": "Cambia quen pode citarte",
|
"status.quote_policy_change": "Cambia quen pode citarte",
|
||||||
"status.quote_post_author": "Citou unha publicación de @{name}",
|
"status.quote_post_author": "Citou unha publicación de @{name}",
|
||||||
|
"status.quote_private": "As publicacións privadas non se poden citar",
|
||||||
|
"status.quotes": "{count, plural, one {cita} other {citas}}",
|
||||||
"status.read_more": "Ler máis",
|
"status.read_more": "Ler máis",
|
||||||
"status.reblog": "Promover",
|
"status.reblog": "Promover",
|
||||||
"status.reblog_private": "Compartir coa audiencia orixinal",
|
"status.reblog_private": "Compartir coa audiencia orixinal",
|
||||||
|
|
@ -940,6 +954,7 @@
|
||||||
"upload_button.label": "Engadir imaxes, un vídeo ou ficheiro de audio",
|
"upload_button.label": "Engadir imaxes, un vídeo ou ficheiro de audio",
|
||||||
"upload_error.limit": "Límite máximo do ficheiro a subir excedido.",
|
"upload_error.limit": "Límite máximo do ficheiro a subir excedido.",
|
||||||
"upload_error.poll": "Non se poden subir ficheiros nas enquisas.",
|
"upload_error.poll": "Non se poden subir ficheiros nas enquisas.",
|
||||||
|
"upload_error.quote": "Non se permite subir ficheiros ao citar.",
|
||||||
"upload_form.drag_and_drop.instructions": "Preme en Espazo ou Enter para escoller un anexo multimedia. Ao arrastrar usa as teclas de frecha para mover o anexo en todas direccións.Preme Espazo ou Enter outra vez para soltalo na súa nova posición, ou preme Escape para desbotar.",
|
"upload_form.drag_and_drop.instructions": "Preme en Espazo ou Enter para escoller un anexo multimedia. Ao arrastrar usa as teclas de frecha para mover o anexo en todas direccións.Preme Espazo ou Enter outra vez para soltalo na súa nova posición, ou preme Escape para desbotar.",
|
||||||
"upload_form.drag_and_drop.on_drag_cancel": "Cancelouse o movemento. O anexo {item} soltouse.",
|
"upload_form.drag_and_drop.on_drag_cancel": "Cancelouse o movemento. O anexo {item} soltouse.",
|
||||||
"upload_form.drag_and_drop.on_drag_end": "Soltouse o anexo multimedia {item}.",
|
"upload_form.drag_and_drop.on_drag_end": "Soltouse o anexo multimedia {item}.",
|
||||||
|
|
@ -965,14 +980,15 @@
|
||||||
"video.volume_up": "Subir volume",
|
"video.volume_up": "Subir volume",
|
||||||
"visibility_modal.button_title": "Establece a visibilidade",
|
"visibility_modal.button_title": "Establece a visibilidade",
|
||||||
"visibility_modal.header": "Visibilidade e interaccións",
|
"visibility_modal.header": "Visibilidade e interaccións",
|
||||||
"visibility_modal.helper.direct_quoting": "A mencións privadas non se poden citar.",
|
"visibility_modal.helper.direct_quoting": "As mencións privadas creadas con Mastodon non poden ser citadas.",
|
||||||
"visibility_modal.helper.privacy_editing": "Non se pode cambiar a visibilidade das publicacións xa publicadas.",
|
"visibility_modal.helper.privacy_editing": "Non se pode cambiar a visibilidade das publicacións xa publicadas.",
|
||||||
"visibility_modal.helper.private_quoting": "As publicacións só para seguidoras non se poden citar.",
|
"visibility_modal.helper.private_quoting": "As publicacións só para seguidoras creadas con Mastodon non poden ser citadas.",
|
||||||
"visibility_modal.helper.unlisted_quoting": "Cando alguén te cite, a súa publicación non aparecerá nas cronoloxías de popularidade.",
|
"visibility_modal.helper.unlisted_quoting": "Cando alguén te cite, a súa publicación non aparecerá nas cronoloxías de popularidade.",
|
||||||
"visibility_modal.instructions": "Controla quen pode interactuar con esta publicación. Os axustes xerais están en <link>Preferencias > Outros</link>.",
|
"visibility_modal.instructions": "Controla quen pode interactuar con esta publicación. Os axustes xerais están en <link>Preferencias > Outros</link>.",
|
||||||
"visibility_modal.privacy_label": "Privacidade",
|
"visibility_modal.privacy_label": "Privacidade",
|
||||||
"visibility_modal.quote_followers": "Só para seguidoras",
|
"visibility_modal.quote_followers": "Só para seguidoras",
|
||||||
"visibility_modal.quote_label": "Cambia quen pode citarte",
|
"visibility_modal.quote_label": "Cambia quen pode citarte",
|
||||||
"visibility_modal.quote_nobody": "Ninguén",
|
"visibility_modal.quote_nobody": "Só para min",
|
||||||
"visibility_modal.quote_public": "Calquera"
|
"visibility_modal.quote_public": "Calquera",
|
||||||
|
"visibility_modal.save": "Gardar"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -483,6 +483,7 @@
|
||||||
"keyboard_shortcuts.home": "פתיחת ציר זמן אישי",
|
"keyboard_shortcuts.home": "פתיחת ציר זמן אישי",
|
||||||
"keyboard_shortcuts.hotkey": "מקש קיצור",
|
"keyboard_shortcuts.hotkey": "מקש קיצור",
|
||||||
"keyboard_shortcuts.legend": "הצגת מקרא",
|
"keyboard_shortcuts.legend": "הצגת מקרא",
|
||||||
|
"keyboard_shortcuts.load_more": "התמקדות בכפתור \"טען עוד\"",
|
||||||
"keyboard_shortcuts.local": "פתיחת ציר זמן קהילתי",
|
"keyboard_shortcuts.local": "פתיחת ציר זמן קהילתי",
|
||||||
"keyboard_shortcuts.mention": "לאזכר את המחבר.ת",
|
"keyboard_shortcuts.mention": "לאזכר את המחבר.ת",
|
||||||
"keyboard_shortcuts.muted": "פתיחת רשימת משתמשים מושתקים",
|
"keyboard_shortcuts.muted": "פתיחת רשימת משתמשים מושתקים",
|
||||||
|
|
@ -738,11 +739,18 @@
|
||||||
"privacy.private.short": "עוקבים",
|
"privacy.private.short": "עוקבים",
|
||||||
"privacy.public.long": "כל הגולשים, מחוברים למסטודון או לא",
|
"privacy.public.long": "כל הגולשים, מחוברים למסטודון או לא",
|
||||||
"privacy.public.short": "פומבי",
|
"privacy.public.short": "פומבי",
|
||||||
|
"privacy.quote.anyone": "{visibility}, הציטוט מותר לכל",
|
||||||
|
"privacy.quote.disabled": "{visibility}, האפשרות לציטוט מכובה",
|
||||||
|
"privacy.quote.limited": "{visibility}, האפשרות לציטוט מוגבלת",
|
||||||
"privacy.unlisted.additional": "ההתנהגות דומה להודעה ציבורית, מלבד שההודעה לא תופיע בפיד החי המקומי או בתגיות, תגליות או חיפוש מסטודון, אפילו אם ביקשת שהחשבון כולו יהיה פומבי.",
|
"privacy.unlisted.additional": "ההתנהגות דומה להודעה ציבורית, מלבד שההודעה לא תופיע בפיד החי המקומי או בתגיות, תגליות או חיפוש מסטודון, אפילו אם ביקשת שהחשבון כולו יהיה פומבי.",
|
||||||
"privacy.unlisted.long": "פחות חשיפה לאלגוריתמים",
|
"privacy.unlisted.long": "פחות חשיפה לאלגוריתמים",
|
||||||
"privacy.unlisted.short": "ציבורי שקט",
|
"privacy.unlisted.short": "ציבורי שקט",
|
||||||
"privacy_policy.last_updated": "עודכן לאחרונה {date}",
|
"privacy_policy.last_updated": "עודכן לאחרונה {date}",
|
||||||
"privacy_policy.title": "מדיניות פרטיות",
|
"privacy_policy.title": "מדיניות פרטיות",
|
||||||
|
"quote_error.poll": "לא ניתן לכלול משאל כאשר מחברים הודעת ציטוט.",
|
||||||
|
"quote_error.quote": "רק ציטוט אחד מותר בכל הודעה.",
|
||||||
|
"quote_error.unauthorized": "אין לך הרשאה לצטט את ההודעה הזו.",
|
||||||
|
"quote_error.upload": "ציטוט הכולל מדיה אינו אפשרי.",
|
||||||
"recommended": "מומלץ",
|
"recommended": "מומלץ",
|
||||||
"refresh": "רענון",
|
"refresh": "רענון",
|
||||||
"regeneration_indicator.please_stand_by": "נא להמתין.",
|
"regeneration_indicator.please_stand_by": "נא להמתין.",
|
||||||
|
|
@ -872,7 +880,7 @@
|
||||||
"status.filter": "סנן הודעה זו",
|
"status.filter": "סנן הודעה זו",
|
||||||
"status.history.created": "{name} יצר/ה {date}",
|
"status.history.created": "{name} יצר/ה {date}",
|
||||||
"status.history.edited": "{name} ערך/ה {date}",
|
"status.history.edited": "{name} ערך/ה {date}",
|
||||||
"status.load_more": "עוד",
|
"status.load_more": "טען עוד",
|
||||||
"status.media.open": "לחץ לפתיחה",
|
"status.media.open": "לחץ לפתיחה",
|
||||||
"status.media.show": "לחץ להצגה",
|
"status.media.show": "לחץ להצגה",
|
||||||
"status.media_hidden": "מדיה מוסתרת",
|
"status.media_hidden": "מדיה מוסתרת",
|
||||||
|
|
@ -944,6 +952,7 @@
|
||||||
"upload_button.label": "הוספת מדיה",
|
"upload_button.label": "הוספת מדיה",
|
||||||
"upload_error.limit": "קובץ להעלאה חורג מנפח מותר.",
|
"upload_error.limit": "קובץ להעלאה חורג מנפח מותר.",
|
||||||
"upload_error.poll": "לא ניתן להעלות קובץ עם סקר.",
|
"upload_error.poll": "לא ניתן להעלות קובץ עם סקר.",
|
||||||
|
"upload_error.quote": "לא ניתן להעלות קובץ כאשר מחברים הודעת ציטוט.",
|
||||||
"upload_form.drag_and_drop.instructions": "כדי לבחור קובץ מוצמד, יש ללחוץ על מקש רווח או אנטר. בעת הגרירה, השתמשו במקשי החיצים כדי להזיז את הקובץ המוצמד בכל כיוון. לחצו רווח או אנטר בשנית כדי לעזוב את הקובץ במקומו החדש, או לחצו אסקייפ לביטול.",
|
"upload_form.drag_and_drop.instructions": "כדי לבחור קובץ מוצמד, יש ללחוץ על מקש רווח או אנטר. בעת הגרירה, השתמשו במקשי החיצים כדי להזיז את הקובץ המוצמד בכל כיוון. לחצו רווח או אנטר בשנית כדי לעזוב את הקובץ במקומו החדש, או לחצו אסקייפ לביטול.",
|
||||||
"upload_form.drag_and_drop.on_drag_cancel": "הגרירה בוטלה. קובץ המדיה {item} נעזב.",
|
"upload_form.drag_and_drop.on_drag_cancel": "הגרירה בוטלה. קובץ המדיה {item} נעזב.",
|
||||||
"upload_form.drag_and_drop.on_drag_end": "קובץ המדיה {item} נעזב.",
|
"upload_form.drag_and_drop.on_drag_end": "קובץ המדיה {item} נעזב.",
|
||||||
|
|
@ -969,14 +978,12 @@
|
||||||
"video.volume_up": "הגברת עוצמת שמע",
|
"video.volume_up": "הגברת עוצמת שמע",
|
||||||
"visibility_modal.button_title": "בחירת רמת חשיפה",
|
"visibility_modal.button_title": "בחירת רמת חשיפה",
|
||||||
"visibility_modal.header": "חשיפה והידוּד (אינטראקציה)",
|
"visibility_modal.header": "חשיפה והידוּד (אינטראקציה)",
|
||||||
"visibility_modal.helper.direct_quoting": "הודעות פרטיות לא ניתנות לציטוט.",
|
|
||||||
"visibility_modal.helper.privacy_editing": "לא ניתן לשנות את דרגת החשיפה של הודעות שפורסמו.",
|
"visibility_modal.helper.privacy_editing": "לא ניתן לשנות את דרגת החשיפה של הודעות שפורסמו.",
|
||||||
"visibility_modal.helper.private_quoting": "לא ניתן לצטט הודעות שחשופות לעוקבים בלבד.",
|
|
||||||
"visibility_modal.helper.unlisted_quoting": "כאשר אחרים מצטטים אותך, ההודעות שלהם יוסתרו גם מ\"נושאים חמים\".",
|
"visibility_modal.helper.unlisted_quoting": "כאשר אחרים מצטטים אותך, ההודעות שלהם יוסתרו גם מ\"נושאים חמים\".",
|
||||||
"visibility_modal.instructions": "שליטה בהרשאה להידוּד (תגובות וציטוטים) עם הודעה זו. הגדרות ברירת המחדל ניתן למצוא תחת <link>העדפות > אחרים</link>.",
|
"visibility_modal.instructions": "שליטה בהרשאה להידוּד (תגובות וציטוטים) עם הודעה זו. הגדרות ברירת המחדל ניתן למצוא תחת <link>העדפות > אחרים</link>.",
|
||||||
"visibility_modal.privacy_label": "פרטיות",
|
"visibility_modal.privacy_label": "פרטיות",
|
||||||
"visibility_modal.quote_followers": "לעוקבים בלבד",
|
"visibility_modal.quote_followers": "לעוקבים בלבד",
|
||||||
"visibility_modal.quote_label": "הגדרת הרשאה לציטוט הודעותיך",
|
"visibility_modal.quote_label": "הגדרת הרשאה לציטוט הודעותיך",
|
||||||
"visibility_modal.quote_nobody": "אף אחד",
|
"visibility_modal.quote_public": "כולם",
|
||||||
"visibility_modal.quote_public": "כולם"
|
"visibility_modal.save": "שמירה"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -738,11 +738,18 @@
|
||||||
"privacy.private.short": "Követők",
|
"privacy.private.short": "Követők",
|
||||||
"privacy.public.long": "Bárki a Mastodonon és azon kívül",
|
"privacy.public.long": "Bárki a Mastodonon és azon kívül",
|
||||||
"privacy.public.short": "Nyilvános",
|
"privacy.public.short": "Nyilvános",
|
||||||
|
"privacy.quote.anyone": "{visibility}, bárki idézheti",
|
||||||
|
"privacy.quote.disabled": "{visibility}, idézés letiltva",
|
||||||
|
"privacy.quote.limited": "{visibility}, idézés korlátozva",
|
||||||
"privacy.unlisted.additional": "Ez pontosan úgy viselkedik, mint a nyilvános, kivéve, hogy a bejegyzés nem jelenik meg élő hírfolyamokban, hashtagekben, felfedezésben vagy a Mastodonos keresésben, még akkor sem, ha ezt az egész fiókra engedélyezted.",
|
"privacy.unlisted.additional": "Ez pontosan úgy viselkedik, mint a nyilvános, kivéve, hogy a bejegyzés nem jelenik meg élő hírfolyamokban, hashtagekben, felfedezésben vagy a Mastodonos keresésben, még akkor sem, ha ezt az egész fiókra engedélyezted.",
|
||||||
"privacy.unlisted.long": "Kevesebb algoritmikus fanfár",
|
"privacy.unlisted.long": "Kevesebb algoritmikus fanfár",
|
||||||
"privacy.unlisted.short": "Csendes nyilvános",
|
"privacy.unlisted.short": "Csendes nyilvános",
|
||||||
"privacy_policy.last_updated": "Utoljára frissítve: {date}",
|
"privacy_policy.last_updated": "Utoljára frissítve: {date}",
|
||||||
"privacy_policy.title": "Adatvédelmi szabályzat",
|
"privacy_policy.title": "Adatvédelmi szabályzat",
|
||||||
|
"quote_error.poll": "Az idézés szavazások esetén nincs engedélyezve.",
|
||||||
|
"quote_error.quote": "Egyszerre csak egy idézet van engedélyezve.",
|
||||||
|
"quote_error.unauthorized": "Nem idézheted ezt a bejegyzést.",
|
||||||
|
"quote_error.upload": "Az idézés médiamellékletek esetén nem engedélyezett.",
|
||||||
"recommended": "Ajánlott",
|
"recommended": "Ajánlott",
|
||||||
"refresh": "Frissítés",
|
"refresh": "Frissítés",
|
||||||
"regeneration_indicator.please_stand_by": "Kis türelmet.",
|
"regeneration_indicator.please_stand_by": "Kis türelmet.",
|
||||||
|
|
@ -939,6 +946,7 @@
|
||||||
"upload_button.label": "Képek, videó vagy audiófájl hozzáadása",
|
"upload_button.label": "Képek, videó vagy audiófájl hozzáadása",
|
||||||
"upload_error.limit": "A fájlfeltöltési korlát elérésre került.",
|
"upload_error.limit": "A fájlfeltöltési korlát elérésre került.",
|
||||||
"upload_error.poll": "Szavazásnál nem lehet fájlt feltölteni.",
|
"upload_error.poll": "Szavazásnál nem lehet fájlt feltölteni.",
|
||||||
|
"upload_error.quote": "Idézésnél nem lehet fájlt feltölteni.",
|
||||||
"upload_form.drag_and_drop.instructions": "Egy médiamelléklet kiválasztásához nyomj Szóközt vagy Entert. Húzás közben használd a nyílgombokat a médiamelléklet adott irányba történő mozgatásához. A médiamelléklet új pozícióba helyezéséhez nyomd meg a Szóközt vagy az Entert, vagy a megszakításhoz nyomd meg az Esc gombot.",
|
"upload_form.drag_and_drop.instructions": "Egy médiamelléklet kiválasztásához nyomj Szóközt vagy Entert. Húzás közben használd a nyílgombokat a médiamelléklet adott irányba történő mozgatásához. A médiamelléklet új pozícióba helyezéséhez nyomd meg a Szóközt vagy az Entert, vagy a megszakításhoz nyomd meg az Esc gombot.",
|
||||||
"upload_form.drag_and_drop.on_drag_cancel": "Az áthúzás megszakítva. A(z) {item} médiamelléklet el lett dobva.",
|
"upload_form.drag_and_drop.on_drag_cancel": "Az áthúzás megszakítva. A(z) {item} médiamelléklet el lett dobva.",
|
||||||
"upload_form.drag_and_drop.on_drag_end": "A(z) {item} médiamelléklet el lett dobva.",
|
"upload_form.drag_and_drop.on_drag_end": "A(z) {item} médiamelléklet el lett dobva.",
|
||||||
|
|
@ -964,14 +972,11 @@
|
||||||
"video.volume_up": "Hangerő fel",
|
"video.volume_up": "Hangerő fel",
|
||||||
"visibility_modal.button_title": "Láthatóság beállítása",
|
"visibility_modal.button_title": "Láthatóság beállítása",
|
||||||
"visibility_modal.header": "Láthatóság és interakció",
|
"visibility_modal.header": "Láthatóság és interakció",
|
||||||
"visibility_modal.helper.direct_quoting": "A privát említések nem idézhetőek.",
|
|
||||||
"visibility_modal.helper.privacy_editing": "A közzétett bejegyzések láthatósága nem módosítható.",
|
"visibility_modal.helper.privacy_editing": "A közzétett bejegyzések láthatósága nem módosítható.",
|
||||||
"visibility_modal.helper.private_quoting": "A csak követőknek szánt bejegyzéseket nem lehet idézni.",
|
|
||||||
"visibility_modal.helper.unlisted_quoting": "Amikor idéznek tőled, a bejegyzésük rejtve lesz a felkapott bejegyzések hírfolyamain is.",
|
"visibility_modal.helper.unlisted_quoting": "Amikor idéznek tőled, a bejegyzésük rejtve lesz a felkapott bejegyzések hírfolyamain is.",
|
||||||
"visibility_modal.instructions": "Döntsd el, hogy ki léphet interakcióba a bejegyzéssel. A globális beállítások a <link>Beállítások > Egyéb</link> alatt találhatóak.",
|
"visibility_modal.instructions": "Döntsd el, hogy ki léphet interakcióba a bejegyzéssel. A globális beállítások a <link>Beállítások > Egyéb</link> alatt találhatóak.",
|
||||||
"visibility_modal.privacy_label": "Adatvédelem",
|
"visibility_modal.privacy_label": "Adatvédelem",
|
||||||
"visibility_modal.quote_followers": "Csak követőknek",
|
"visibility_modal.quote_followers": "Csak követőknek",
|
||||||
"visibility_modal.quote_label": "Módosítás, hogy kik idézhetnek",
|
"visibility_modal.quote_label": "Módosítás, hogy kik idézhetnek",
|
||||||
"visibility_modal.quote_nobody": "Senki",
|
|
||||||
"visibility_modal.quote_public": "Bárki"
|
"visibility_modal.quote_public": "Bárki"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -483,6 +483,7 @@
|
||||||
"keyboard_shortcuts.home": "Aperir le chronologia de initio",
|
"keyboard_shortcuts.home": "Aperir le chronologia de initio",
|
||||||
"keyboard_shortcuts.hotkey": "Clave accelerator",
|
"keyboard_shortcuts.hotkey": "Clave accelerator",
|
||||||
"keyboard_shortcuts.legend": "Monstrar iste legenda",
|
"keyboard_shortcuts.legend": "Monstrar iste legenda",
|
||||||
|
"keyboard_shortcuts.load_more": "Focalisar le button “Cargar plus”",
|
||||||
"keyboard_shortcuts.local": "Aperir le chronologia local",
|
"keyboard_shortcuts.local": "Aperir le chronologia local",
|
||||||
"keyboard_shortcuts.mention": "Mentionar le autor",
|
"keyboard_shortcuts.mention": "Mentionar le autor",
|
||||||
"keyboard_shortcuts.muted": "Aperir lista de usatores silentiate",
|
"keyboard_shortcuts.muted": "Aperir lista de usatores silentiate",
|
||||||
|
|
@ -619,6 +620,7 @@
|
||||||
"notification.moderation_warning.action_suspend": "Tu conto ha essite suspendite.",
|
"notification.moderation_warning.action_suspend": "Tu conto ha essite suspendite.",
|
||||||
"notification.own_poll": "Tu sondage ha finite",
|
"notification.own_poll": "Tu sondage ha finite",
|
||||||
"notification.poll": "Un sondage in le qual tu ha votate ha finite",
|
"notification.poll": "Un sondage in le qual tu ha votate ha finite",
|
||||||
|
"notification.quoted_update": "{name} ha modificate un message que tu ha citate",
|
||||||
"notification.reblog": "{name} ha impulsate tu message",
|
"notification.reblog": "{name} ha impulsate tu message",
|
||||||
"notification.reblog.name_and_others_with_link": "{name} e <a>{count, plural, one {# altere} other {# alteres}}</a> ha impulsate tu message",
|
"notification.reblog.name_and_others_with_link": "{name} e <a>{count, plural, one {# altere} other {# alteres}}</a> ha impulsate tu message",
|
||||||
"notification.relationships_severance_event": "Connexiones perdite con {name}",
|
"notification.relationships_severance_event": "Connexiones perdite con {name}",
|
||||||
|
|
@ -738,11 +740,18 @@
|
||||||
"privacy.private.short": "Sequitores",
|
"privacy.private.short": "Sequitores",
|
||||||
"privacy.public.long": "Quicunque, sur Mastodon o non",
|
"privacy.public.long": "Quicunque, sur Mastodon o non",
|
||||||
"privacy.public.short": "Public",
|
"privacy.public.short": "Public",
|
||||||
|
"privacy.quote.anyone": "{visibility}, omnes pote citar",
|
||||||
|
"privacy.quote.disabled": "{visibility}, citation disactivate",
|
||||||
|
"privacy.quote.limited": "{visibility}, citation limitate",
|
||||||
"privacy.unlisted.additional": "Isto es exactemente como public, excepte que le message non apparera in fluxos in directo, in hashtags, in Explorar, o in le recerca de Mastodon, mesmo si tu ha optate pro render tote le conto discoperibile.",
|
"privacy.unlisted.additional": "Isto es exactemente como public, excepte que le message non apparera in fluxos in directo, in hashtags, in Explorar, o in le recerca de Mastodon, mesmo si tu ha optate pro render tote le conto discoperibile.",
|
||||||
"privacy.unlisted.long": "Minus fanfares algorithmic",
|
"privacy.unlisted.long": "Minus fanfares algorithmic",
|
||||||
"privacy.unlisted.short": "Public, non listate",
|
"privacy.unlisted.short": "Public, non listate",
|
||||||
"privacy_policy.last_updated": "Ultime actualisation {date}",
|
"privacy_policy.last_updated": "Ultime actualisation {date}",
|
||||||
"privacy_policy.title": "Politica de confidentialitate",
|
"privacy_policy.title": "Politica de confidentialitate",
|
||||||
|
"quote_error.poll": "Non es permittite citar sondages.",
|
||||||
|
"quote_error.quote": "Solmente un citation al vice es permittite.",
|
||||||
|
"quote_error.unauthorized": "Tu non es autorisate a citar iste message.",
|
||||||
|
"quote_error.upload": "Non es permittite citar con annexos multimedial.",
|
||||||
"recommended": "Recommendate",
|
"recommended": "Recommendate",
|
||||||
"refresh": "Refrescar",
|
"refresh": "Refrescar",
|
||||||
"regeneration_indicator.please_stand_by": "Un momento, per favor.",
|
"regeneration_indicator.please_stand_by": "Un momento, per favor.",
|
||||||
|
|
@ -849,9 +858,11 @@
|
||||||
"status.admin_account": "Aperir le interfacie de moderation pro @{name}",
|
"status.admin_account": "Aperir le interfacie de moderation pro @{name}",
|
||||||
"status.admin_domain": "Aperir le interfacie de moderation pro {domain}",
|
"status.admin_domain": "Aperir le interfacie de moderation pro {domain}",
|
||||||
"status.admin_status": "Aperir iste message in le interfacie de moderation",
|
"status.admin_status": "Aperir iste message in le interfacie de moderation",
|
||||||
|
"status.all_disabled": "Impulso e citation es disactivate",
|
||||||
"status.block": "Blocar @{name}",
|
"status.block": "Blocar @{name}",
|
||||||
"status.bookmark": "Adder al marcapaginas",
|
"status.bookmark": "Adder al marcapaginas",
|
||||||
"status.cancel_reblog_private": "Disfacer impulso",
|
"status.cancel_reblog_private": "Disfacer impulso",
|
||||||
|
"status.cannot_quote": "Le autor ha disactivate le citation de iste message",
|
||||||
"status.cannot_reblog": "Iste message non pote esser impulsate",
|
"status.cannot_reblog": "Iste message non pote esser impulsate",
|
||||||
"status.context.load_new_replies": "Nove responsas disponibile",
|
"status.context.load_new_replies": "Nove responsas disponibile",
|
||||||
"status.context.loading": "Cercante plus responsas",
|
"status.context.loading": "Cercante plus responsas",
|
||||||
|
|
@ -880,6 +891,7 @@
|
||||||
"status.mute_conversation": "Silentiar conversation",
|
"status.mute_conversation": "Silentiar conversation",
|
||||||
"status.open": "Expander iste message",
|
"status.open": "Expander iste message",
|
||||||
"status.pin": "Fixar sur profilo",
|
"status.pin": "Fixar sur profilo",
|
||||||
|
"status.quote": "Citar",
|
||||||
"status.quote.cancel": "Cancellar le citation",
|
"status.quote.cancel": "Cancellar le citation",
|
||||||
"status.quote_error.filtered": "Celate a causa de un de tu filtros",
|
"status.quote_error.filtered": "Celate a causa de un de tu filtros",
|
||||||
"status.quote_error.not_available": "Message indisponibile",
|
"status.quote_error.not_available": "Message indisponibile",
|
||||||
|
|
@ -888,6 +900,8 @@
|
||||||
"status.quote_error.pending_approval_popout.title": "Citation pendente? Resta calme",
|
"status.quote_error.pending_approval_popout.title": "Citation pendente? Resta calme",
|
||||||
"status.quote_policy_change": "Cambiar qui pote citar",
|
"status.quote_policy_change": "Cambiar qui pote citar",
|
||||||
"status.quote_post_author": "Ha citate un message de @{name}",
|
"status.quote_post_author": "Ha citate un message de @{name}",
|
||||||
|
"status.quote_private": "Le messages private non pote esser citate",
|
||||||
|
"status.quotes": "{count, plural, one {citation} other {citationes}}",
|
||||||
"status.read_more": "Leger plus",
|
"status.read_more": "Leger plus",
|
||||||
"status.reblog": "Impulsar",
|
"status.reblog": "Impulsar",
|
||||||
"status.reblog_private": "Impulsar con visibilitate original",
|
"status.reblog_private": "Impulsar con visibilitate original",
|
||||||
|
|
@ -897,8 +911,8 @@
|
||||||
"status.redraft": "Deler e reconciper",
|
"status.redraft": "Deler e reconciper",
|
||||||
"status.remove_bookmark": "Remover marcapagina",
|
"status.remove_bookmark": "Remover marcapagina",
|
||||||
"status.remove_favourite": "Remover del favoritos",
|
"status.remove_favourite": "Remover del favoritos",
|
||||||
"status.replied_in_thread": "Respondite in le discussion",
|
"status.replied_in_thread": "Responsa in discussion",
|
||||||
"status.replied_to": "Respondite a {name}",
|
"status.replied_to": "Responsa a {name}",
|
||||||
"status.reply": "Responder",
|
"status.reply": "Responder",
|
||||||
"status.replyAll": "Responder al discussion",
|
"status.replyAll": "Responder al discussion",
|
||||||
"status.report": "Reportar @{name}",
|
"status.report": "Reportar @{name}",
|
||||||
|
|
@ -940,6 +954,7 @@
|
||||||
"upload_button.label": "Adde imagines, un video o un file de audio",
|
"upload_button.label": "Adde imagines, un video o un file de audio",
|
||||||
"upload_error.limit": "Limite de incargamento de files excedite.",
|
"upload_error.limit": "Limite de incargamento de files excedite.",
|
||||||
"upload_error.poll": "Incargamento de files non permittite con sondages.",
|
"upload_error.poll": "Incargamento de files non permittite con sondages.",
|
||||||
|
"upload_error.quote": "Non es permittite incargar files con citationes.",
|
||||||
"upload_form.drag_and_drop.instructions": "Pro prender un annexo multimedial, preme sur le barra de spatios o Enter. Trahente lo, usa le claves de flecha pro displaciar le annexo multimedial in un certe direction. Preme le barra de spatios o Enter de novo pro deponer le annexo multimedial in su nove position, o preme sur Escape pro cancellar.",
|
"upload_form.drag_and_drop.instructions": "Pro prender un annexo multimedial, preme sur le barra de spatios o Enter. Trahente lo, usa le claves de flecha pro displaciar le annexo multimedial in un certe direction. Preme le barra de spatios o Enter de novo pro deponer le annexo multimedial in su nove position, o preme sur Escape pro cancellar.",
|
||||||
"upload_form.drag_and_drop.on_drag_cancel": "Le displaciamento ha essite cancellate. Le annexo multimedial {item} ha essite deponite.",
|
"upload_form.drag_and_drop.on_drag_cancel": "Le displaciamento ha essite cancellate. Le annexo multimedial {item} ha essite deponite.",
|
||||||
"upload_form.drag_and_drop.on_drag_end": "Le annexo multimedial {item} ha essite deponite.",
|
"upload_form.drag_and_drop.on_drag_end": "Le annexo multimedial {item} ha essite deponite.",
|
||||||
|
|
@ -965,14 +980,15 @@
|
||||||
"video.volume_up": "Augmentar le volumine",
|
"video.volume_up": "Augmentar le volumine",
|
||||||
"visibility_modal.button_title": "Definir visibilitate",
|
"visibility_modal.button_title": "Definir visibilitate",
|
||||||
"visibility_modal.header": "Visibilitate e interaction",
|
"visibility_modal.header": "Visibilitate e interaction",
|
||||||
"visibility_modal.helper.direct_quoting": "Le mentiones private non pote esser citate.",
|
"visibility_modal.helper.direct_quoting": "Le mentiones private scribite sur Mastodon non pote esser citate per alteres.",
|
||||||
"visibility_modal.helper.privacy_editing": "Le messages ja publicate non pote cambiar de visibilitate.",
|
"visibility_modal.helper.privacy_editing": "Le messages ja publicate non pote cambiar de visibilitate.",
|
||||||
"visibility_modal.helper.private_quoting": "Le messages reservate al sequitores non pote esser citate.",
|
"visibility_modal.helper.private_quoting": "Le messages limitate al sequitores scribite sur Mastodon non pote esser citate per alteres.",
|
||||||
"visibility_modal.helper.unlisted_quoting": "Quando un persona te cita, su message essera tamben celate del chronologia \"In tendentia\".",
|
"visibility_modal.helper.unlisted_quoting": "Quando un persona te cita, su message essera tamben celate del chronologia \"In tendentia\".",
|
||||||
"visibility_modal.instructions": "Controla qui pote interager con iste message. Le parametros global se trova sub <link>Preferentias > Alteres</link>.",
|
"visibility_modal.instructions": "Controla qui pote interager con iste message. Le parametros global se trova sub <link>Preferentias > Alteres</link>.",
|
||||||
"visibility_modal.privacy_label": "Confidentialitate",
|
"visibility_modal.privacy_label": "Confidentialitate",
|
||||||
"visibility_modal.quote_followers": "Solmente sequitores",
|
"visibility_modal.quote_followers": "Solmente sequitores",
|
||||||
"visibility_modal.quote_label": "Cambiar qui pote citar",
|
"visibility_modal.quote_label": "Cambiar qui pote citar",
|
||||||
"visibility_modal.quote_nobody": "Necuno",
|
"visibility_modal.quote_nobody": "Solo io",
|
||||||
"visibility_modal.quote_public": "Omnes"
|
"visibility_modal.quote_public": "Omnes",
|
||||||
|
"visibility_modal.save": "Salvar"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -483,6 +483,7 @@
|
||||||
"keyboard_shortcuts.home": "Opna heimatímalínu",
|
"keyboard_shortcuts.home": "Opna heimatímalínu",
|
||||||
"keyboard_shortcuts.hotkey": "Flýtilykill",
|
"keyboard_shortcuts.hotkey": "Flýtilykill",
|
||||||
"keyboard_shortcuts.legend": "Birta þessa skýringu",
|
"keyboard_shortcuts.legend": "Birta þessa skýringu",
|
||||||
|
"keyboard_shortcuts.load_more": "Gera \"Hlaða inn meiru\"-hnappinn virkan",
|
||||||
"keyboard_shortcuts.local": "Opna staðværa tímalínu",
|
"keyboard_shortcuts.local": "Opna staðværa tímalínu",
|
||||||
"keyboard_shortcuts.mention": "Minnast á höfund",
|
"keyboard_shortcuts.mention": "Minnast á höfund",
|
||||||
"keyboard_shortcuts.muted": "Opna lista yfir þaggaða notendur",
|
"keyboard_shortcuts.muted": "Opna lista yfir þaggaða notendur",
|
||||||
|
|
@ -619,6 +620,7 @@
|
||||||
"notification.moderation_warning.action_suspend": "Notandaaðgangurinn þinn hefur verið settur í frysti.",
|
"notification.moderation_warning.action_suspend": "Notandaaðgangurinn þinn hefur verið settur í frysti.",
|
||||||
"notification.own_poll": "Könnuninni þinni er lokið",
|
"notification.own_poll": "Könnuninni þinni er lokið",
|
||||||
"notification.poll": "Könnun sem þú greiddir atkvæði í er lokið",
|
"notification.poll": "Könnun sem þú greiddir atkvæði í er lokið",
|
||||||
|
"notification.quoted_update": "{name} breytti færslu sem þú hefur vitnað í",
|
||||||
"notification.reblog": "{name} endurbirti færsluna þína",
|
"notification.reblog": "{name} endurbirti færsluna þína",
|
||||||
"notification.reblog.name_and_others_with_link": "{name} og <a>{count, plural, one {# í viðbót hefur} other {# í viðbót hafa}}</a> endurbirt færsluna þína",
|
"notification.reblog.name_and_others_with_link": "{name} og <a>{count, plural, one {# í viðbót hefur} other {# í viðbót hafa}}</a> endurbirt færsluna þína",
|
||||||
"notification.relationships_severance_event": "Missti tengingar við {name}",
|
"notification.relationships_severance_event": "Missti tengingar við {name}",
|
||||||
|
|
@ -738,11 +740,18 @@
|
||||||
"privacy.private.short": "Fylgjendur",
|
"privacy.private.short": "Fylgjendur",
|
||||||
"privacy.public.long": "Hver sem er, á og utan Mastodon",
|
"privacy.public.long": "Hver sem er, á og utan Mastodon",
|
||||||
"privacy.public.short": "Opinbert",
|
"privacy.public.short": "Opinbert",
|
||||||
|
"privacy.quote.anyone": "{visibility}, hver sem er getur vitnað í færslu",
|
||||||
|
"privacy.quote.disabled": "{visibility}, tilvitnanir eru óvirkar",
|
||||||
|
"privacy.quote.limited": "{visibility}, tilvitnanir eru takmarkaðar",
|
||||||
"privacy.unlisted.additional": "Þetta hegðar sér eins og opinber færsla, fyrir utan að færslan birtist ekki í beinum streymum eða myllumerkjum, né heldur í Mastodon-leitum jafnvel þótt þú hafir valið að falla undir slíkt í notandasniðinu þínu.",
|
"privacy.unlisted.additional": "Þetta hegðar sér eins og opinber færsla, fyrir utan að færslan birtist ekki í beinum streymum eða myllumerkjum, né heldur í Mastodon-leitum jafnvel þótt þú hafir valið að falla undir slíkt í notandasniðinu þínu.",
|
||||||
"privacy.unlisted.long": "Minni stælar í reikniritum",
|
"privacy.unlisted.long": "Minni stælar í reikniritum",
|
||||||
"privacy.unlisted.short": "Hljóðlátt opinbert",
|
"privacy.unlisted.short": "Hljóðlátt opinbert",
|
||||||
"privacy_policy.last_updated": "Síðast uppfært {date}",
|
"privacy_policy.last_updated": "Síðast uppfært {date}",
|
||||||
"privacy_policy.title": "Persónuverndarstefna",
|
"privacy_policy.title": "Persónuverndarstefna",
|
||||||
|
"quote_error.poll": "Ekki er leyft að vitna í kannanir.",
|
||||||
|
"quote_error.quote": "Einungis ein tilvitnun er leyfð í einu.",
|
||||||
|
"quote_error.unauthorized": "Þú hefur ekki heimild til að vitna í þessa færslu.",
|
||||||
|
"quote_error.upload": "Ekki er leyft að vitna í myndviðhengi.",
|
||||||
"recommended": "Mælt með",
|
"recommended": "Mælt með",
|
||||||
"refresh": "Endurlesa",
|
"refresh": "Endurlesa",
|
||||||
"regeneration_indicator.please_stand_by": "Hinkraðu við.",
|
"regeneration_indicator.please_stand_by": "Hinkraðu við.",
|
||||||
|
|
@ -892,6 +901,7 @@
|
||||||
"status.quote_policy_change": "Breyttu því hver getur tilvitnað",
|
"status.quote_policy_change": "Breyttu því hver getur tilvitnað",
|
||||||
"status.quote_post_author": "Vitnaði í færslu frá @{name}",
|
"status.quote_post_author": "Vitnaði í færslu frá @{name}",
|
||||||
"status.quote_private": "Ekki er hægt að vitna í einkafærslur",
|
"status.quote_private": "Ekki er hægt að vitna í einkafærslur",
|
||||||
|
"status.quotes": "{count, plural, one {tilvitnun} other {tilvitnanir}}",
|
||||||
"status.read_more": "Lesa meira",
|
"status.read_more": "Lesa meira",
|
||||||
"status.reblog": "Endurbirting",
|
"status.reblog": "Endurbirting",
|
||||||
"status.reblog_private": "Endurbirta til upphaflegra lesenda",
|
"status.reblog_private": "Endurbirta til upphaflegra lesenda",
|
||||||
|
|
@ -944,6 +954,7 @@
|
||||||
"upload_button.label": "Bæta við myndum, myndskeiði eða hljóðskrá",
|
"upload_button.label": "Bæta við myndum, myndskeiði eða hljóðskrá",
|
||||||
"upload_error.limit": "Fór yfir takmörk á innsendingum skráa.",
|
"upload_error.limit": "Fór yfir takmörk á innsendingum skráa.",
|
||||||
"upload_error.poll": "Innsending skráa er ekki leyfð í könnunum.",
|
"upload_error.poll": "Innsending skráa er ekki leyfð í könnunum.",
|
||||||
|
"upload_error.quote": "Innsending skráa er ekki leyfð í tilvitnunum.",
|
||||||
"upload_form.drag_and_drop.instructions": "Til að taka í myndefnisviðhengi skaltu ýta á bilslána eða Enter. Til að draga geturðu notað örvalyklana til að færa viðhengið í samsvarandi áttir. Ýttu aftur á bilslána eða Enter til að sleppa viðhenginu á nýja staðinn, eða ýttu á Escape til að hætta við.",
|
"upload_form.drag_and_drop.instructions": "Til að taka í myndefnisviðhengi skaltu ýta á bilslána eða Enter. Til að draga geturðu notað örvalyklana til að færa viðhengið í samsvarandi áttir. Ýttu aftur á bilslána eða Enter til að sleppa viðhenginu á nýja staðinn, eða ýttu á Escape til að hætta við.",
|
||||||
"upload_form.drag_and_drop.on_drag_cancel": "Hætt var við að draga. Myndefnisviðhenginu {item} var sleppt.",
|
"upload_form.drag_and_drop.on_drag_cancel": "Hætt var við að draga. Myndefnisviðhenginu {item} var sleppt.",
|
||||||
"upload_form.drag_and_drop.on_drag_end": "Myndefnisviðhenginu {item} var sleppt.",
|
"upload_form.drag_and_drop.on_drag_end": "Myndefnisviðhenginu {item} var sleppt.",
|
||||||
|
|
@ -969,14 +980,15 @@
|
||||||
"video.volume_up": "Hækka hljóðstyrk",
|
"video.volume_up": "Hækka hljóðstyrk",
|
||||||
"visibility_modal.button_title": "Stilla sýnileika",
|
"visibility_modal.button_title": "Stilla sýnileika",
|
||||||
"visibility_modal.header": "Sýnileiki og gagnvirkni",
|
"visibility_modal.header": "Sýnileiki og gagnvirkni",
|
||||||
"visibility_modal.helper.direct_quoting": "Ekki er hægt að vitna í einkaspjall.",
|
"visibility_modal.helper.direct_quoting": "Ekki er hægt að vitna í einkaspjall sem skrifað er á Mastodon.",
|
||||||
"visibility_modal.helper.privacy_editing": "Ekki er hægt að breyta sýnileika birtra færslna.",
|
"visibility_modal.helper.privacy_editing": "Ekki er hægt að breyta sýnileika birtra færslna.",
|
||||||
"visibility_modal.helper.private_quoting": "Ekki er hægt að vitna í færslur sem eingöngu eru til fylgjenda.",
|
"visibility_modal.helper.private_quoting": "Ekki er hægt að vitna í færslur einungis til fylgjenda sem skrifaðar eru á Mastodon.",
|
||||||
"visibility_modal.helper.unlisted_quoting": "Þegar fólk vitnar í þig verða færslurnar þeirr einnig faldar á vinsældatímalínum.",
|
"visibility_modal.helper.unlisted_quoting": "Þegar fólk vitnar í þig verða færslurnar þeirr einnig faldar á vinsældatímalínum.",
|
||||||
"visibility_modal.instructions": "Stýrðu hverjir geta átt við þessa færslu. Víðværar stillingar finnast undir <link>Kjörstillingar > Annað</link>.",
|
"visibility_modal.instructions": "Stýrðu hverjir geta átt við þessa færslu. Víðværar stillingar finnast undir <link>Kjörstillingar > Annað</link>.",
|
||||||
"visibility_modal.privacy_label": "Persónuvernd",
|
"visibility_modal.privacy_label": "Persónuvernd",
|
||||||
"visibility_modal.quote_followers": "Einungis fylgjendur",
|
"visibility_modal.quote_followers": "Einungis fylgjendur",
|
||||||
"visibility_modal.quote_label": "Breyttu því hver getur tilvitnað",
|
"visibility_modal.quote_label": "Breyttu því hver getur tilvitnað",
|
||||||
"visibility_modal.quote_nobody": "Enginn",
|
"visibility_modal.quote_nobody": "Bara ég",
|
||||||
"visibility_modal.quote_public": "Hver sem er"
|
"visibility_modal.quote_public": "Hver sem er",
|
||||||
|
"visibility_modal.save": "Vista"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -483,6 +483,7 @@
|
||||||
"keyboard_shortcuts.home": "Apre la cronologia domestica",
|
"keyboard_shortcuts.home": "Apre la cronologia domestica",
|
||||||
"keyboard_shortcuts.hotkey": "Tasto di scelta rapida",
|
"keyboard_shortcuts.hotkey": "Tasto di scelta rapida",
|
||||||
"keyboard_shortcuts.legend": "Mostra questa legenda",
|
"keyboard_shortcuts.legend": "Mostra questa legenda",
|
||||||
|
"keyboard_shortcuts.load_more": "Evidenzia il pulsante \"Carica altro\"",
|
||||||
"keyboard_shortcuts.local": "Apre la cronologia locale",
|
"keyboard_shortcuts.local": "Apre la cronologia locale",
|
||||||
"keyboard_shortcuts.mention": "Menziona l'autore",
|
"keyboard_shortcuts.mention": "Menziona l'autore",
|
||||||
"keyboard_shortcuts.muted": "Apre l'elenco degli utenti silenziati",
|
"keyboard_shortcuts.muted": "Apre l'elenco degli utenti silenziati",
|
||||||
|
|
@ -619,6 +620,7 @@
|
||||||
"notification.moderation_warning.action_suspend": "Il tuo account è stato sospeso.",
|
"notification.moderation_warning.action_suspend": "Il tuo account è stato sospeso.",
|
||||||
"notification.own_poll": "Il tuo sondaggio è terminato",
|
"notification.own_poll": "Il tuo sondaggio è terminato",
|
||||||
"notification.poll": "Un sondaggio in cui hai votato è terminato",
|
"notification.poll": "Un sondaggio in cui hai votato è terminato",
|
||||||
|
"notification.quoted_update": "{name} ha modificato un post che hai citato",
|
||||||
"notification.reblog": "{name} ha rebloggato il tuo post",
|
"notification.reblog": "{name} ha rebloggato il tuo post",
|
||||||
"notification.reblog.name_and_others_with_link": "{name} e <a>{count, plural, one {# altro} other {altri #}}</a> hanno condiviso il tuo post",
|
"notification.reblog.name_and_others_with_link": "{name} e <a>{count, plural, one {# altro} other {altri #}}</a> hanno condiviso il tuo post",
|
||||||
"notification.relationships_severance_event": "Connessioni perse con {name}",
|
"notification.relationships_severance_event": "Connessioni perse con {name}",
|
||||||
|
|
@ -738,11 +740,18 @@
|
||||||
"privacy.private.short": "Follower",
|
"privacy.private.short": "Follower",
|
||||||
"privacy.public.long": "Chiunque dentro e fuori Mastodon",
|
"privacy.public.long": "Chiunque dentro e fuori Mastodon",
|
||||||
"privacy.public.short": "Pubblico",
|
"privacy.public.short": "Pubblico",
|
||||||
|
"privacy.quote.anyone": "{visibility}, chiunque può citare",
|
||||||
|
"privacy.quote.disabled": "{visibility}, citazioni disabilitate",
|
||||||
|
"privacy.quote.limited": "{visibility}, citazioni limitate",
|
||||||
"privacy.unlisted.additional": "Si comporta esattamente come pubblico, tranne per il fatto che il post non verrà visualizzato nei feed live o negli hashtag, nell'esplorazione o nella ricerca Mastodon, anche se hai attivato l'attivazione a livello di account.",
|
"privacy.unlisted.additional": "Si comporta esattamente come pubblico, tranne per il fatto che il post non verrà visualizzato nei feed live o negli hashtag, nell'esplorazione o nella ricerca Mastodon, anche se hai attivato l'attivazione a livello di account.",
|
||||||
"privacy.unlisted.long": "Meno fanfare algoritmiche",
|
"privacy.unlisted.long": "Meno fanfare algoritmiche",
|
||||||
"privacy.unlisted.short": "Pubblico silenzioso",
|
"privacy.unlisted.short": "Pubblico silenzioso",
|
||||||
"privacy_policy.last_updated": "Ultimo aggiornamento {date}",
|
"privacy_policy.last_updated": "Ultimo aggiornamento {date}",
|
||||||
"privacy_policy.title": "Politica sulla Privacy",
|
"privacy_policy.title": "Politica sulla Privacy",
|
||||||
|
"quote_error.poll": "Nei sondaggi non sono consentite le citazioni.",
|
||||||
|
"quote_error.quote": "È consentita una sola citazione alla volta.",
|
||||||
|
"quote_error.unauthorized": "Non sei autorizzato a citare questo post.",
|
||||||
|
"quote_error.upload": "Le citazioni non sono consentite con gli allegati multimediali.",
|
||||||
"recommended": "Consigliato",
|
"recommended": "Consigliato",
|
||||||
"refresh": "Ricarica",
|
"refresh": "Ricarica",
|
||||||
"regeneration_indicator.please_stand_by": "Si prega di rimanere in attesa.",
|
"regeneration_indicator.please_stand_by": "Si prega di rimanere in attesa.",
|
||||||
|
|
@ -892,6 +901,7 @@
|
||||||
"status.quote_policy_change": "Cambia chi può citare",
|
"status.quote_policy_change": "Cambia chi può citare",
|
||||||
"status.quote_post_author": "Citato un post di @{name}",
|
"status.quote_post_author": "Citato un post di @{name}",
|
||||||
"status.quote_private": "I post privati non possono essere citati",
|
"status.quote_private": "I post privati non possono essere citati",
|
||||||
|
"status.quotes": "{count, plural, one {citazione} other {citazioni}}",
|
||||||
"status.read_more": "Leggi di più",
|
"status.read_more": "Leggi di più",
|
||||||
"status.reblog": "Reblog",
|
"status.reblog": "Reblog",
|
||||||
"status.reblog_private": "Reblog con visibilità originale",
|
"status.reblog_private": "Reblog con visibilità originale",
|
||||||
|
|
@ -906,7 +916,7 @@
|
||||||
"status.reply": "Rispondi",
|
"status.reply": "Rispondi",
|
||||||
"status.replyAll": "Rispondi alla conversazione",
|
"status.replyAll": "Rispondi alla conversazione",
|
||||||
"status.report": "Segnala @{name}",
|
"status.report": "Segnala @{name}",
|
||||||
"status.revoke_quote": "Rimuovi la mia citazione dal post di @{name}",
|
"status.revoke_quote": "Rimuovi il mio post da quello di @{name}",
|
||||||
"status.sensitive_warning": "Contenuto sensibile",
|
"status.sensitive_warning": "Contenuto sensibile",
|
||||||
"status.share": "Condividi",
|
"status.share": "Condividi",
|
||||||
"status.show_less_all": "Mostra meno per tutti",
|
"status.show_less_all": "Mostra meno per tutti",
|
||||||
|
|
@ -944,6 +954,7 @@
|
||||||
"upload_button.label": "Aggiungi un file immagine, video o audio",
|
"upload_button.label": "Aggiungi un file immagine, video o audio",
|
||||||
"upload_error.limit": "Limite di caricamento dei file superato.",
|
"upload_error.limit": "Limite di caricamento dei file superato.",
|
||||||
"upload_error.poll": "Caricamento del file non consentito con i sondaggi.",
|
"upload_error.poll": "Caricamento del file non consentito con i sondaggi.",
|
||||||
|
"upload_error.quote": "Caricamento file non consentito con le citazioni.",
|
||||||
"upload_form.drag_and_drop.instructions": "Per selezionare un allegato multimediale, premi Spazio o Invio. Mentre trascini, usa i tasti con le frecce per spostare l'allegato multimediale in una qualsiasi direzione. Premi di nuovo Spazio o Invio per rilasciare l'allegato multimediale nella sua nuova posizione, oppure premi Esc per annullare.",
|
"upload_form.drag_and_drop.instructions": "Per selezionare un allegato multimediale, premi Spazio o Invio. Mentre trascini, usa i tasti con le frecce per spostare l'allegato multimediale in una qualsiasi direzione. Premi di nuovo Spazio o Invio per rilasciare l'allegato multimediale nella sua nuova posizione, oppure premi Esc per annullare.",
|
||||||
"upload_form.drag_and_drop.on_drag_cancel": "Il trascinamento è stato annullato. L'allegato multimediale {item} è stato eliminato.",
|
"upload_form.drag_and_drop.on_drag_cancel": "Il trascinamento è stato annullato. L'allegato multimediale {item} è stato eliminato.",
|
||||||
"upload_form.drag_and_drop.on_drag_end": "L'allegato multimediale {item} è stato eliminato.",
|
"upload_form.drag_and_drop.on_drag_end": "L'allegato multimediale {item} è stato eliminato.",
|
||||||
|
|
@ -969,14 +980,15 @@
|
||||||
"video.volume_up": "Alza volume",
|
"video.volume_up": "Alza volume",
|
||||||
"visibility_modal.button_title": "Imposta la visibilità",
|
"visibility_modal.button_title": "Imposta la visibilità",
|
||||||
"visibility_modal.header": "Visibilità e interazione",
|
"visibility_modal.header": "Visibilità e interazione",
|
||||||
"visibility_modal.helper.direct_quoting": "Le menzioni private non possono essere citate.",
|
"visibility_modal.helper.direct_quoting": "Le menzioni private scritte su Mastodon non possono essere citate da altri.",
|
||||||
"visibility_modal.helper.privacy_editing": "La visibilità dei post pubblicati non può essere modificata.",
|
"visibility_modal.helper.privacy_editing": "La visibilità dei post pubblicati non può essere modificata.",
|
||||||
"visibility_modal.helper.private_quoting": "I post riservati ai seguaci non possono essere citati.",
|
"visibility_modal.helper.private_quoting": "I post scritti e riservati ai seguaci su Mastodon non possono essere citati da altri.",
|
||||||
"visibility_modal.helper.unlisted_quoting": "Quando le persone ti citano, il loro post verrà nascosto anche dalle timeline di tendenza.",
|
"visibility_modal.helper.unlisted_quoting": "Quando le persone ti citano, il loro post verrà nascosto anche dalle timeline di tendenza.",
|
||||||
"visibility_modal.instructions": "Controlla chi può interagire con questo post. Le impostazioni globali si trovano in <link>Preferenze > Altro</link>.",
|
"visibility_modal.instructions": "Controlla chi può interagire con questo post. Le impostazioni globali si trovano in <link>Preferenze > Altro</link>.",
|
||||||
"visibility_modal.privacy_label": "Privacy",
|
"visibility_modal.privacy_label": "Privacy",
|
||||||
"visibility_modal.quote_followers": "Solo i seguaci",
|
"visibility_modal.quote_followers": "Solo i seguaci",
|
||||||
"visibility_modal.quote_label": "Cambia chi può citare",
|
"visibility_modal.quote_label": "Cambia chi può citare",
|
||||||
"visibility_modal.quote_nobody": "Nessuno",
|
"visibility_modal.quote_nobody": "Solo io",
|
||||||
"visibility_modal.quote_public": "Chiunque"
|
"visibility_modal.quote_public": "Chiunque",
|
||||||
|
"visibility_modal.save": "Salva"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -218,6 +218,7 @@
|
||||||
"domain_pill.who_you_are": "Imi isulay-ik·im yeqqar-d anwa i d kečč·kemmi d wanda i telliḍ, zemren medden ad myigwen yid-k·m deg web anmetti yebnan s <button>tɣeṛɣaṛ yemmugen s ActivityPub</button>.",
|
"domain_pill.who_you_are": "Imi isulay-ik·im yeqqar-d anwa i d kečč·kemmi d wanda i telliḍ, zemren medden ad myigwen yid-k·m deg web anmetti yebnan s <button>tɣeṛɣaṛ yemmugen s ActivityPub</button>.",
|
||||||
"domain_pill.your_handle": "Asulay-ik·im:",
|
"domain_pill.your_handle": "Asulay-ik·im:",
|
||||||
"domain_pill.your_server": "D axxam-inek·inem umḍin, anda i zedɣent akk tsuffaɣ-ik·im. Ur k·m-yeεǧib ara wa? Ssenfel-d iqeddacen melmi i ak·m-yehwa, awi-d daɣen ineḍfaren-ik·im yid-k·m.",
|
"domain_pill.your_server": "D axxam-inek·inem umḍin, anda i zedɣent akk tsuffaɣ-ik·im. Ur k·m-yeεǧib ara wa? Ssenfel-d iqeddacen melmi i ak·m-yehwa, awi-d daɣen ineḍfaren-ik·im yid-k·m.",
|
||||||
|
"dropdown.empty": "Fren taxtiṛit",
|
||||||
"embed.instructions": "Ẓẓu addad-agi deg usmel-inek·inem s wenɣal n tangalt yellan sdaw-agi.",
|
"embed.instructions": "Ẓẓu addad-agi deg usmel-inek·inem s wenɣal n tangalt yellan sdaw-agi.",
|
||||||
"embed.preview": "Akka ara d-iban:",
|
"embed.preview": "Akka ara d-iban:",
|
||||||
"emoji_button.activity": "Aqeddic",
|
"emoji_button.activity": "Aqeddic",
|
||||||
|
|
@ -315,6 +316,7 @@
|
||||||
"hashtag.follow": "Ḍfeṛ ahacṭag",
|
"hashtag.follow": "Ḍfeṛ ahacṭag",
|
||||||
"hashtag.mute": "Sgugem #{hashtag}",
|
"hashtag.mute": "Sgugem #{hashtag}",
|
||||||
"hashtags.and_other": "…d {count, plural, one {}other {# nniḍen}}",
|
"hashtags.and_other": "…d {count, plural, one {}other {# nniḍen}}",
|
||||||
|
"hints.profiles.see_more_posts": "Wali ugar n tsuffaɣ ɣef {domain}",
|
||||||
"home.column_settings.show_quotes": "Sken-d tibdarin",
|
"home.column_settings.show_quotes": "Sken-d tibdarin",
|
||||||
"home.column_settings.show_reblogs": "Ssken-d beṭṭu",
|
"home.column_settings.show_reblogs": "Ssken-d beṭṭu",
|
||||||
"home.column_settings.show_replies": "Ssken-d tiririyin",
|
"home.column_settings.show_replies": "Ssken-d tiririyin",
|
||||||
|
|
@ -322,6 +324,7 @@
|
||||||
"home.pending_critical_update.body": "Ma ulac aɣilif, leqqem aqeddac-ik Mastodon akken kan tzemreḍ !",
|
"home.pending_critical_update.body": "Ma ulac aɣilif, leqqem aqeddac-ik Mastodon akken kan tzemreḍ !",
|
||||||
"home.pending_critical_update.link": "Wali ileqman",
|
"home.pending_critical_update.link": "Wali ileqman",
|
||||||
"home.show_announcements": "Ssken-d ulɣuyen",
|
"home.show_announcements": "Ssken-d ulɣuyen",
|
||||||
|
"ignore_notifications_modal.ignore": "Ttu ilɣa",
|
||||||
"info_button.label": "Tallelt",
|
"info_button.label": "Tallelt",
|
||||||
"interaction_modal.action.favourite": "I wakken ad tkemmleḍ, yessefk ad d-tḥemmleḍ seg umiḍan-ik·im.",
|
"interaction_modal.action.favourite": "I wakken ad tkemmleḍ, yessefk ad d-tḥemmleḍ seg umiḍan-ik·im.",
|
||||||
"interaction_modal.action.follow": "I wakken ad tkemmleḍ, yessefk ad d-tḍefreḍ seg umiḍan-ik·im.",
|
"interaction_modal.action.follow": "I wakken ad tkemmleḍ, yessefk ad d-tḍefreḍ seg umiḍan-ik·im.",
|
||||||
|
|
@ -389,6 +392,7 @@
|
||||||
"lists.delete": "Kkes tabdart",
|
"lists.delete": "Kkes tabdart",
|
||||||
"lists.done": "Immed",
|
"lists.done": "Immed",
|
||||||
"lists.edit": "Ẓreg tabdart",
|
"lists.edit": "Ẓreg tabdart",
|
||||||
|
"lists.find_users_to_add": "Af-d iseqdacen ara ternuḍ",
|
||||||
"lists.list_name": "Isem n tebdart",
|
"lists.list_name": "Isem n tebdart",
|
||||||
"lists.new_list_name": "Isem n tebdart tamaynut",
|
"lists.new_list_name": "Isem n tebdart tamaynut",
|
||||||
"lists.no_lists_yet": "Ulac tibdarin akka tura.",
|
"lists.no_lists_yet": "Ulac tibdarin akka tura.",
|
||||||
|
|
@ -412,6 +416,7 @@
|
||||||
"mute_modal.you_wont_see_mentions": "Ur tezmireḍ ara ad twaliḍ tisuffaɣ anda d-yettwabdar.",
|
"mute_modal.you_wont_see_mentions": "Ur tezmireḍ ara ad twaliḍ tisuffaɣ anda d-yettwabdar.",
|
||||||
"mute_modal.you_wont_see_posts": "Yezmer ad yettwali tisuffaɣ-ik·im, maca ur tettwaliḍ ara tidak-is.",
|
"mute_modal.you_wont_see_posts": "Yezmer ad yettwali tisuffaɣ-ik·im, maca ur tettwaliḍ ara tidak-is.",
|
||||||
"navigation_bar.about": "Ɣef",
|
"navigation_bar.about": "Ɣef",
|
||||||
|
"navigation_bar.account_settings": "Awal n uɛeddi akked tɣellist",
|
||||||
"navigation_bar.administration": "Tadbelt",
|
"navigation_bar.administration": "Tadbelt",
|
||||||
"navigation_bar.advanced_interface": "Ldi deg ugrudem n web leqqayen",
|
"navigation_bar.advanced_interface": "Ldi deg ugrudem n web leqqayen",
|
||||||
"navigation_bar.blocks": "Iseqdacen yettusḥebsen",
|
"navigation_bar.blocks": "Iseqdacen yettusḥebsen",
|
||||||
|
|
@ -449,6 +454,7 @@
|
||||||
"notification.label.private_reply": "Tiririt tusligt",
|
"notification.label.private_reply": "Tiririt tusligt",
|
||||||
"notification.label.reply": "Tiririt",
|
"notification.label.reply": "Tiririt",
|
||||||
"notification.mention": "Abdar",
|
"notification.mention": "Abdar",
|
||||||
|
"notification.mentioned_you": "{name} yebder-ik·em-id",
|
||||||
"notification.moderation-warning.learn_more": "Issin ugar",
|
"notification.moderation-warning.learn_more": "Issin ugar",
|
||||||
"notification.moderation_warning.action_suspend": "Yettwaseḥbes umiḍan-ik.",
|
"notification.moderation_warning.action_suspend": "Yettwaseḥbes umiḍan-ik.",
|
||||||
"notification.own_poll": "Tafrant-ik·im tfuk",
|
"notification.own_poll": "Tafrant-ik·im tfuk",
|
||||||
|
|
@ -461,8 +467,10 @@
|
||||||
"notification_requests.exit_selection": "Immed",
|
"notification_requests.exit_selection": "Immed",
|
||||||
"notification_requests.notifications_from": "Ilɣa sɣur {name}",
|
"notification_requests.notifications_from": "Ilɣa sɣur {name}",
|
||||||
"notification_requests.title": "Ilɣa yettwasizdgen",
|
"notification_requests.title": "Ilɣa yettwasizdgen",
|
||||||
|
"notification_requests.view": "Wali ilɣa",
|
||||||
"notifications.clear": "Sfeḍ ilɣa",
|
"notifications.clear": "Sfeḍ ilɣa",
|
||||||
"notifications.clear_confirmation": "Tebɣiḍ s tidet ad tekkseḍ akk ilɣa-inek·em i lebda?",
|
"notifications.clear_confirmation": "Tebɣiḍ s tidet ad tekkseḍ akk ilɣa-inek·em i lebda?",
|
||||||
|
"notifications.clear_title": "Sfeḍ ilɣa?",
|
||||||
"notifications.column_settings.admin.report": "Ineqqisen imaynuten:",
|
"notifications.column_settings.admin.report": "Ineqqisen imaynuten:",
|
||||||
"notifications.column_settings.alert": "Ilɣa n tnarit",
|
"notifications.column_settings.alert": "Ilɣa n tnarit",
|
||||||
"notifications.column_settings.favourite": "Imenyafen:",
|
"notifications.column_settings.favourite": "Imenyafen:",
|
||||||
|
|
@ -648,6 +656,8 @@
|
||||||
"status.mute_conversation": "Sgugem adiwenni",
|
"status.mute_conversation": "Sgugem adiwenni",
|
||||||
"status.open": "Semɣeṛ tasuffeɣt-ayi",
|
"status.open": "Semɣeṛ tasuffeɣt-ayi",
|
||||||
"status.pin": "Senteḍ-itt deg umaɣnu",
|
"status.pin": "Senteḍ-itt deg umaɣnu",
|
||||||
|
"status.quote": "Tanebdurt",
|
||||||
|
"status.quote.cancel": "Semmet tanebdurt",
|
||||||
"status.quote_post_author": "Yebder-d tasuffeɣt sɣur @{name}",
|
"status.quote_post_author": "Yebder-d tasuffeɣt sɣur @{name}",
|
||||||
"status.read_more": "Issin ugar",
|
"status.read_more": "Issin ugar",
|
||||||
"status.reblog": "Bḍu",
|
"status.reblog": "Bḍu",
|
||||||
|
|
@ -707,5 +717,9 @@
|
||||||
"video.mute": "Sgugem",
|
"video.mute": "Sgugem",
|
||||||
"video.pause": "Sgunfu",
|
"video.pause": "Sgunfu",
|
||||||
"video.play": "Seddu",
|
"video.play": "Seddu",
|
||||||
"video.unmute": "Kkes asgugem"
|
"video.unmute": "Kkes asgugem",
|
||||||
|
"visibility_modal.privacy_label": "Tabaḍnit",
|
||||||
|
"visibility_modal.quote_followers": "Imeḍfaṛen kan",
|
||||||
|
"visibility_modal.quote_label": "Beddel anwa i izemren ad k-id-yebder",
|
||||||
|
"visibility_modal.quote_public": "Yal yiwen"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -482,6 +482,7 @@
|
||||||
"keyboard_shortcuts.home": "홈 타임라인 열기",
|
"keyboard_shortcuts.home": "홈 타임라인 열기",
|
||||||
"keyboard_shortcuts.hotkey": "핫키",
|
"keyboard_shortcuts.hotkey": "핫키",
|
||||||
"keyboard_shortcuts.legend": "이 개요 표시",
|
"keyboard_shortcuts.legend": "이 개요 표시",
|
||||||
|
"keyboard_shortcuts.load_more": "\"더 보기\" 버튼에 포커스",
|
||||||
"keyboard_shortcuts.local": "로컬 타임라인 열기",
|
"keyboard_shortcuts.local": "로컬 타임라인 열기",
|
||||||
"keyboard_shortcuts.mention": "작성자에게 멘션",
|
"keyboard_shortcuts.mention": "작성자에게 멘션",
|
||||||
"keyboard_shortcuts.muted": "뮤트된 사용자 목록 열기",
|
"keyboard_shortcuts.muted": "뮤트된 사용자 목록 열기",
|
||||||
|
|
@ -661,6 +662,7 @@
|
||||||
"notifications.column_settings.mention": "멘션:",
|
"notifications.column_settings.mention": "멘션:",
|
||||||
"notifications.column_settings.poll": "설문 결과:",
|
"notifications.column_settings.poll": "설문 결과:",
|
||||||
"notifications.column_settings.push": "푸시 알림",
|
"notifications.column_settings.push": "푸시 알림",
|
||||||
|
"notifications.column_settings.quote": "인용:",
|
||||||
"notifications.column_settings.reblog": "부스트:",
|
"notifications.column_settings.reblog": "부스트:",
|
||||||
"notifications.column_settings.show": "컬럼에 표시",
|
"notifications.column_settings.show": "컬럼에 표시",
|
||||||
"notifications.column_settings.sound": "효과음 재생",
|
"notifications.column_settings.sound": "효과음 재생",
|
||||||
|
|
@ -736,11 +738,15 @@
|
||||||
"privacy.private.short": "팔로워",
|
"privacy.private.short": "팔로워",
|
||||||
"privacy.public.long": "마스토돈 내외 모두",
|
"privacy.public.long": "마스토돈 내외 모두",
|
||||||
"privacy.public.short": "공개",
|
"privacy.public.short": "공개",
|
||||||
|
"privacy.quote.anyone": "{visibility}, 누구나 인용 가능",
|
||||||
|
"privacy.quote.disabled": "{visibility}, 인용 비활성화",
|
||||||
|
"privacy.quote.limited": "{visibility}, 제한된 인용",
|
||||||
"privacy.unlisted.additional": "공개와 똑같지만 게시물이 실시간 피드나 해시태그, 둘러보기, (계정 설정에서 허용했더라도) 마스토돈 검색에서 제외됩니다.",
|
"privacy.unlisted.additional": "공개와 똑같지만 게시물이 실시간 피드나 해시태그, 둘러보기, (계정 설정에서 허용했더라도) 마스토돈 검색에서 제외됩니다.",
|
||||||
"privacy.unlisted.long": "더 적은 알고리즘 팡파르",
|
"privacy.unlisted.long": "더 적은 알고리즘 팡파르",
|
||||||
"privacy.unlisted.short": "조용한 공개",
|
"privacy.unlisted.short": "조용한 공개",
|
||||||
"privacy_policy.last_updated": "{date}에 마지막으로 업데이트됨",
|
"privacy_policy.last_updated": "{date}에 마지막으로 업데이트됨",
|
||||||
"privacy_policy.title": "개인정보처리방침",
|
"privacy_policy.title": "개인정보처리방침",
|
||||||
|
"quote_error.unauthorized": "이 글을 인용할 권한이 없습니다.",
|
||||||
"recommended": "추천함",
|
"recommended": "추천함",
|
||||||
"refresh": "새로고침",
|
"refresh": "새로고침",
|
||||||
"regeneration_indicator.please_stand_by": "잠시 기다려주세요.",
|
"regeneration_indicator.please_stand_by": "잠시 기다려주세요.",
|
||||||
|
|
@ -847,9 +853,11 @@
|
||||||
"status.admin_account": "@{name}에 대한 중재 화면 열기",
|
"status.admin_account": "@{name}에 대한 중재 화면 열기",
|
||||||
"status.admin_domain": "{domain}에 대한 중재 화면 열기",
|
"status.admin_domain": "{domain}에 대한 중재 화면 열기",
|
||||||
"status.admin_status": "중재 화면에서 이 게시물 열기",
|
"status.admin_status": "중재 화면에서 이 게시물 열기",
|
||||||
|
"status.all_disabled": "부스트와 인용이 비활성화되었습니다",
|
||||||
"status.block": "@{name} 차단",
|
"status.block": "@{name} 차단",
|
||||||
"status.bookmark": "북마크",
|
"status.bookmark": "북마크",
|
||||||
"status.cancel_reblog_private": "부스트 취소",
|
"status.cancel_reblog_private": "부스트 취소",
|
||||||
|
"status.cannot_quote": "작성자가 이 게시물의 인용을 비활성화했습니다",
|
||||||
"status.cannot_reblog": "이 게시물은 부스트 할 수 없습니다",
|
"status.cannot_reblog": "이 게시물은 부스트 할 수 없습니다",
|
||||||
"status.context.load_new_replies": "새 답글 보기",
|
"status.context.load_new_replies": "새 답글 보기",
|
||||||
"status.context.loading": "추가 답글 확인중",
|
"status.context.loading": "추가 답글 확인중",
|
||||||
|
|
@ -878,6 +886,8 @@
|
||||||
"status.mute_conversation": "대화 뮤트",
|
"status.mute_conversation": "대화 뮤트",
|
||||||
"status.open": "상세 정보 표시",
|
"status.open": "상세 정보 표시",
|
||||||
"status.pin": "고정",
|
"status.pin": "고정",
|
||||||
|
"status.quote": "인용",
|
||||||
|
"status.quote.cancel": "인용 취소",
|
||||||
"status.quote_error.filtered": "필터에 의해 가려짐",
|
"status.quote_error.filtered": "필터에 의해 가려짐",
|
||||||
"status.quote_error.not_available": "게시물 사용 불가",
|
"status.quote_error.not_available": "게시물 사용 불가",
|
||||||
"status.quote_error.pending_approval": "게시물 대기중",
|
"status.quote_error.pending_approval": "게시물 대기중",
|
||||||
|
|
@ -956,5 +966,11 @@
|
||||||
"video.skip_forward": "앞으로 건너뛰기",
|
"video.skip_forward": "앞으로 건너뛰기",
|
||||||
"video.unmute": "음소거 해제",
|
"video.unmute": "음소거 해제",
|
||||||
"video.volume_down": "음량 감소",
|
"video.volume_down": "음량 감소",
|
||||||
"video.volume_up": "음량 증가"
|
"video.volume_up": "음량 증가",
|
||||||
|
"visibility_modal.button_title": "공개범위 설정",
|
||||||
|
"visibility_modal.privacy_label": "공개범위",
|
||||||
|
"visibility_modal.quote_followers": "팔로워 전용",
|
||||||
|
"visibility_modal.quote_label": "누가 인용할 수 있는지",
|
||||||
|
"visibility_modal.quote_public": "아무나",
|
||||||
|
"visibility_modal.save": "저장"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -483,6 +483,7 @@
|
||||||
"keyboard_shortcuts.home": "Phah開tshù ê時間線",
|
"keyboard_shortcuts.home": "Phah開tshù ê時間線",
|
||||||
"keyboard_shortcuts.hotkey": "快速key",
|
"keyboard_shortcuts.hotkey": "快速key",
|
||||||
"keyboard_shortcuts.legend": "顯示tsit篇說明",
|
"keyboard_shortcuts.legend": "顯示tsit篇說明",
|
||||||
|
"keyboard_shortcuts.load_more": "Kā焦點suá kàu「載入其他」ê鈕仔",
|
||||||
"keyboard_shortcuts.local": "Phah開本站ê時間線",
|
"keyboard_shortcuts.local": "Phah開本站ê時間線",
|
||||||
"keyboard_shortcuts.mention": "提起作者",
|
"keyboard_shortcuts.mention": "提起作者",
|
||||||
"keyboard_shortcuts.muted": "Phah開消音ê用者列單",
|
"keyboard_shortcuts.muted": "Phah開消音ê用者列單",
|
||||||
|
|
@ -738,11 +739,18 @@
|
||||||
"privacy.private.short": "跟tuè lí ê",
|
"privacy.private.short": "跟tuè lí ê",
|
||||||
"privacy.public.long": "逐ê lâng(無論佇Mastodon以內á是以外)",
|
"privacy.public.long": "逐ê lâng(無論佇Mastodon以內á是以外)",
|
||||||
"privacy.public.short": "公開ê",
|
"privacy.public.short": "公開ê",
|
||||||
|
"privacy.quote.anyone": "{visibility},ta̍k ê lâng lóng ē當引用",
|
||||||
|
"privacy.quote.disabled": "{visibility},停止引用PO文",
|
||||||
|
"privacy.quote.limited": "{visibility},PO文引用受限",
|
||||||
"privacy.unlisted.additional": "Tse ê行為kap公開相siâng,m̄-koh 就算lí佇口座設定phah開有關ê公開功能,PO文mā bē顯示佇即時ê動態、hashtag、探索kap Mastodon ê搜尋結果。",
|
"privacy.unlisted.additional": "Tse ê行為kap公開相siâng,m̄-koh 就算lí佇口座設定phah開有關ê公開功能,PO文mā bē顯示佇即時ê動態、hashtag、探索kap Mastodon ê搜尋結果。",
|
||||||
"privacy.unlisted.long": "減少演算法ê宣傳",
|
"privacy.unlisted.long": "減少演算法ê宣傳",
|
||||||
"privacy.unlisted.short": "恬靜ê公開",
|
"privacy.unlisted.short": "恬靜ê公開",
|
||||||
"privacy_policy.last_updated": "上尾更新tī:{date}",
|
"privacy_policy.last_updated": "上尾更新tī:{date}",
|
||||||
"privacy_policy.title": "隱私權政策",
|
"privacy_policy.title": "隱私權政策",
|
||||||
|
"quote_error.poll": "有投票ê PO文bē當引用。",
|
||||||
|
"quote_error.quote": "Tsi̍t改kan-ta ē當引用tsi̍t篇PO文。",
|
||||||
|
"quote_error.unauthorized": "Lí bô權利引用tsit篇PO文。",
|
||||||
|
"quote_error.upload": "有媒體附件ê PO文無允准引用。",
|
||||||
"recommended": "推薦",
|
"recommended": "推薦",
|
||||||
"refresh": "Koh更新",
|
"refresh": "Koh更新",
|
||||||
"regeneration_indicator.please_stand_by": "請sió等leh。",
|
"regeneration_indicator.please_stand_by": "請sió等leh。",
|
||||||
|
|
@ -849,9 +857,11 @@
|
||||||
"status.admin_account": "Phah開 @{name} ê管理界面",
|
"status.admin_account": "Phah開 @{name} ê管理界面",
|
||||||
"status.admin_domain": "Phah開 {domain} ê管理界面",
|
"status.admin_domain": "Phah開 {domain} ê管理界面",
|
||||||
"status.admin_status": "Tī管理界面內底看tsit篇PO文",
|
"status.admin_status": "Tī管理界面內底看tsit篇PO文",
|
||||||
|
"status.all_disabled": "轉送kap引用停止使用",
|
||||||
"status.block": "封鎖 @{name}",
|
"status.block": "封鎖 @{name}",
|
||||||
"status.bookmark": "冊籤",
|
"status.bookmark": "冊籤",
|
||||||
"status.cancel_reblog_private": "取消轉送",
|
"status.cancel_reblog_private": "取消轉送",
|
||||||
|
"status.cannot_quote": "作者有停止別lâng引用tsit篇PO文",
|
||||||
"status.cannot_reblog": "Tsit篇PO文bē當轉送",
|
"status.cannot_reblog": "Tsit篇PO文bē當轉送",
|
||||||
"status.context.load_new_replies": "有新ê回應",
|
"status.context.load_new_replies": "有新ê回應",
|
||||||
"status.context.loading": "Leh檢查其他ê回應",
|
"status.context.loading": "Leh檢查其他ê回應",
|
||||||
|
|
@ -879,6 +889,8 @@
|
||||||
"status.mute": "消音 @{name}",
|
"status.mute": "消音 @{name}",
|
||||||
"status.mute_conversation": "Kā對話消音",
|
"status.mute_conversation": "Kā對話消音",
|
||||||
"status.open": "Kā PO文展開",
|
"status.open": "Kā PO文展開",
|
||||||
|
"status.quote": "引用",
|
||||||
|
"status.quote.cancel": "取消引用",
|
||||||
"status.quote_error.filtered": "Lí所設定ê過濾器kā tse khàm起來",
|
"status.quote_error.filtered": "Lí所設定ê過濾器kā tse khàm起來",
|
||||||
"status.quote_error.not_available": "鋪文bē當看",
|
"status.quote_error.not_available": "鋪文bē當看",
|
||||||
"status.quote_error.pending_approval": "鋪文當咧送",
|
"status.quote_error.pending_approval": "鋪文當咧送",
|
||||||
|
|
@ -886,6 +898,7 @@
|
||||||
"status.quote_error.pending_approval_popout.title": "Leh送引文?請sió等leh",
|
"status.quote_error.pending_approval_popout.title": "Leh送引文?請sió等leh",
|
||||||
"status.quote_policy_change": "改通引用ê lâng",
|
"status.quote_policy_change": "改通引用ê lâng",
|
||||||
"status.quote_post_author": "引用 @{name} ê PO文ah",
|
"status.quote_post_author": "引用 @{name} ê PO文ah",
|
||||||
|
"status.quote_private": "私人PO文bē當引用",
|
||||||
"status.read_more": "讀詳細",
|
"status.read_more": "讀詳細",
|
||||||
"status.reblog": "轉送",
|
"status.reblog": "轉送",
|
||||||
"status.reblog_private": "照原PO ê通看見ê範圍轉送",
|
"status.reblog_private": "照原PO ê通看見ê範圍轉送",
|
||||||
|
|
@ -937,6 +950,7 @@
|
||||||
"upload_button.label": "加圖片、影片á是聲音檔",
|
"upload_button.label": "加圖片、影片á是聲音檔",
|
||||||
"upload_error.limit": "超過檔案傳起去ê限制",
|
"upload_error.limit": "超過檔案傳起去ê限制",
|
||||||
"upload_error.poll": "Bô允準佇投票ê時kā檔案傳起去。",
|
"upload_error.poll": "Bô允準佇投票ê時kā檔案傳起去。",
|
||||||
|
"upload_error.quote": "引用PO文bē當kā檔案傳起去。",
|
||||||
"upload_form.drag_and_drop.instructions": "Nā beh選媒體附件,請tshi̍h空白key á是Enter key。Giú ê時,請用方向key照指定ê方向suá媒體附件。Beh khǹg媒體附件佇伊ê新位置,請koh tshi̍h空白key á是Enter key,或者tshi̍h Esc key來取消。",
|
"upload_form.drag_and_drop.instructions": "Nā beh選媒體附件,請tshi̍h空白key á是Enter key。Giú ê時,請用方向key照指定ê方向suá媒體附件。Beh khǹg媒體附件佇伊ê新位置,請koh tshi̍h空白key á是Enter key,或者tshi̍h Esc key來取消。",
|
||||||
"upload_form.drag_and_drop.on_drag_cancel": "Suá位取消ah,媒體附件 {item} khǹg落來ah。",
|
"upload_form.drag_and_drop.on_drag_cancel": "Suá位取消ah,媒體附件 {item} khǹg落來ah。",
|
||||||
"upload_form.drag_and_drop.on_drag_end": "媒體附件 {item} khǹg落來ah。",
|
"upload_form.drag_and_drop.on_drag_end": "媒體附件 {item} khǹg落來ah。",
|
||||||
|
|
@ -962,14 +976,12 @@
|
||||||
"video.volume_up": "變khah大聲",
|
"video.volume_up": "變khah大聲",
|
||||||
"visibility_modal.button_title": "設定通看ê程度",
|
"visibility_modal.button_title": "設定通看ê程度",
|
||||||
"visibility_modal.header": "通看ê程度kap互動",
|
"visibility_modal.header": "通看ê程度kap互動",
|
||||||
"visibility_modal.helper.direct_quoting": "私人ê提起bē當引用。",
|
|
||||||
"visibility_modal.helper.privacy_editing": "公開ê PO文bē當改in通看ê程度。",
|
"visibility_modal.helper.privacy_editing": "公開ê PO文bē當改in通看ê程度。",
|
||||||
"visibility_modal.helper.private_quoting": "Bē當引用kan-ta跟tuè ê通看ê PO文。",
|
|
||||||
"visibility_modal.helper.unlisted_quoting": "若別lâng引用lí,in ê PO文mā ē tuì趨勢時間線隱藏。",
|
"visibility_modal.helper.unlisted_quoting": "若別lâng引用lí,in ê PO文mā ē tuì趨勢時間線隱藏。",
|
||||||
"visibility_modal.instructions": "控制ē當kap tsit篇PO文互動ê lâng,Ē當佇 <link>偏愛ê設定>其他</link>tshuē tio̍h全地ê設定。",
|
"visibility_modal.instructions": "控制ē當kap tsit篇PO文互動ê lâng,Ē當佇 <link>偏愛ê設定>其他</link>tshuē tio̍h全地ê設定。",
|
||||||
"visibility_modal.privacy_label": "隱私權",
|
"visibility_modal.privacy_label": "隱私權",
|
||||||
"visibility_modal.quote_followers": "Kan-ta hōo跟tuè ê lâng",
|
"visibility_modal.quote_followers": "Kan-ta hōo跟tuè ê lâng",
|
||||||
"visibility_modal.quote_label": "改通引用ê lâng",
|
"visibility_modal.quote_label": "改通引用ê lâng",
|
||||||
"visibility_modal.quote_nobody": "無半位",
|
"visibility_modal.quote_public": "Ta̍k ê lâng",
|
||||||
"visibility_modal.quote_public": "Ta̍k ê lâng"
|
"visibility_modal.save": "儲存"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -292,6 +292,7 @@
|
||||||
"domain_pill.your_handle": "Jouw fediverse-adres:",
|
"domain_pill.your_handle": "Jouw fediverse-adres:",
|
||||||
"domain_pill.your_server": "Jouw digitale thuis, waar al jouw berichten zich bevinden. Is deze server toch niet naar jouw wens? Dan kun je op elk moment naar een andere server verhuizen en ook jouw volgers overbrengen.",
|
"domain_pill.your_server": "Jouw digitale thuis, waar al jouw berichten zich bevinden. Is deze server toch niet naar jouw wens? Dan kun je op elk moment naar een andere server verhuizen en ook jouw volgers overbrengen.",
|
||||||
"domain_pill.your_username": "Jouw unieke identificatie-adres op deze server. Het is mogelijk dat er gebruikers met dezelfde gebruikersnaam op verschillende servers te vinden zijn.",
|
"domain_pill.your_username": "Jouw unieke identificatie-adres op deze server. Het is mogelijk dat er gebruikers met dezelfde gebruikersnaam op verschillende servers te vinden zijn.",
|
||||||
|
"dropdown.empty": "Selecteer een optie",
|
||||||
"embed.instructions": "Embed dit bericht op jouw website door de onderstaande code te kopiëren.",
|
"embed.instructions": "Embed dit bericht op jouw website door de onderstaande code te kopiëren.",
|
||||||
"embed.preview": "Zo komt het eruit te zien:",
|
"embed.preview": "Zo komt het eruit te zien:",
|
||||||
"emoji_button.activity": "Activiteiten",
|
"emoji_button.activity": "Activiteiten",
|
||||||
|
|
@ -482,6 +483,7 @@
|
||||||
"keyboard_shortcuts.home": "Starttijdlijn tonen",
|
"keyboard_shortcuts.home": "Starttijdlijn tonen",
|
||||||
"keyboard_shortcuts.hotkey": "Sneltoets",
|
"keyboard_shortcuts.hotkey": "Sneltoets",
|
||||||
"keyboard_shortcuts.legend": "Deze legenda tonen",
|
"keyboard_shortcuts.legend": "Deze legenda tonen",
|
||||||
|
"keyboard_shortcuts.load_more": "\"Meer laden\"-knop focussen",
|
||||||
"keyboard_shortcuts.local": "Lokale tijdlijn tonen",
|
"keyboard_shortcuts.local": "Lokale tijdlijn tonen",
|
||||||
"keyboard_shortcuts.mention": "Account vermelden",
|
"keyboard_shortcuts.mention": "Account vermelden",
|
||||||
"keyboard_shortcuts.muted": "Genegeerde gebruikers tonen",
|
"keyboard_shortcuts.muted": "Genegeerde gebruikers tonen",
|
||||||
|
|
@ -618,6 +620,7 @@
|
||||||
"notification.moderation_warning.action_suspend": "Jouw account is opgeschort.",
|
"notification.moderation_warning.action_suspend": "Jouw account is opgeschort.",
|
||||||
"notification.own_poll": "Jouw peiling is beëindigd",
|
"notification.own_poll": "Jouw peiling is beëindigd",
|
||||||
"notification.poll": "Een peiling waaraan jij hebt meegedaan is beëindigd",
|
"notification.poll": "Een peiling waaraan jij hebt meegedaan is beëindigd",
|
||||||
|
"notification.quoted_update": "{name} bewerkte een door jou geciteerd bericht",
|
||||||
"notification.reblog": "{name} boostte jouw bericht",
|
"notification.reblog": "{name} boostte jouw bericht",
|
||||||
"notification.reblog.name_and_others_with_link": "{name} en <a>{count, plural, one {# ander persoon} other {# andere personen}}</a> hebben jouw bericht geboost",
|
"notification.reblog.name_and_others_with_link": "{name} en <a>{count, plural, one {# ander persoon} other {# andere personen}}</a> hebben jouw bericht geboost",
|
||||||
"notification.relationships_severance_event": "Verloren verbindingen met {name}",
|
"notification.relationships_severance_event": "Verloren verbindingen met {name}",
|
||||||
|
|
@ -730,18 +733,25 @@
|
||||||
"poll.votes": "{votes, plural, one {# stem} other {# stemmen}}",
|
"poll.votes": "{votes, plural, one {# stem} other {# stemmen}}",
|
||||||
"poll_button.add_poll": "Peiling toevoegen",
|
"poll_button.add_poll": "Peiling toevoegen",
|
||||||
"poll_button.remove_poll": "Peiling verwijderen",
|
"poll_button.remove_poll": "Peiling verwijderen",
|
||||||
"privacy.change": "Zichtbaarheid van bericht aanpassen",
|
"privacy.change": "Privacy voor een bericht aanpassen",
|
||||||
"privacy.direct.long": "Alleen voor mensen die specifiek in het bericht worden vermeld",
|
"privacy.direct.long": "Alleen voor mensen die specifiek in het bericht worden vermeld",
|
||||||
"privacy.direct.short": "Privébericht",
|
"privacy.direct.short": "Privébericht",
|
||||||
"privacy.private.long": "Alleen jouw volgers",
|
"privacy.private.long": "Alleen jouw volgers",
|
||||||
"privacy.private.short": "Volgers",
|
"privacy.private.short": "Volgers",
|
||||||
"privacy.public.long": "Iedereen op Mastodon en daarbuiten",
|
"privacy.public.long": "Iedereen op Mastodon en daarbuiten",
|
||||||
"privacy.public.short": "Openbaar",
|
"privacy.public.short": "Openbaar",
|
||||||
|
"privacy.quote.anyone": "{visibility}, iedereen kan citeren",
|
||||||
|
"privacy.quote.disabled": "{visibility}, citeren uitgeschakeld",
|
||||||
|
"privacy.quote.limited": "{visibility}, citeren beperkt",
|
||||||
"privacy.unlisted.additional": "Dit is vergelijkbaar met openbaar, behalve dat het bericht niet op openbare tijdlijnen, onder hashtags, verkennen of zoeken verschijnt, zelfs als je je account daarvoor hebt ingesteld.",
|
"privacy.unlisted.additional": "Dit is vergelijkbaar met openbaar, behalve dat het bericht niet op openbare tijdlijnen, onder hashtags, verkennen of zoeken verschijnt, zelfs als je je account daarvoor hebt ingesteld.",
|
||||||
"privacy.unlisted.long": "Voor iedereen zichtbaar, maar niet onder trends, hashtags en op openbare tijdlijnen",
|
"privacy.unlisted.long": "Voor iedereen zichtbaar, maar niet onder trends, hashtags en op openbare tijdlijnen",
|
||||||
"privacy.unlisted.short": "Minder openbaar",
|
"privacy.unlisted.short": "Minder openbaar",
|
||||||
"privacy_policy.last_updated": "Laatst bijgewerkt op {date}",
|
"privacy_policy.last_updated": "Laatst bijgewerkt op {date}",
|
||||||
"privacy_policy.title": "Privacybeleid",
|
"privacy_policy.title": "Privacybeleid",
|
||||||
|
"quote_error.poll": "Het is niet mogelijk om polls te citeren.",
|
||||||
|
"quote_error.quote": "Je kunt maar één bericht per keer citeren.",
|
||||||
|
"quote_error.unauthorized": "Je bent niet gemachtigd om dit bericht te citeren.",
|
||||||
|
"quote_error.upload": "Je kunt geen mediabijlage aan een bericht met een citaat toevoegen.",
|
||||||
"recommended": "Aanbevolen",
|
"recommended": "Aanbevolen",
|
||||||
"refresh": "Vernieuwen",
|
"refresh": "Vernieuwen",
|
||||||
"regeneration_indicator.please_stand_by": "Even geduld alsjeblieft.",
|
"regeneration_indicator.please_stand_by": "Even geduld alsjeblieft.",
|
||||||
|
|
@ -848,9 +858,11 @@
|
||||||
"status.admin_account": "Moderatie-omgeving van @{name} openen",
|
"status.admin_account": "Moderatie-omgeving van @{name} openen",
|
||||||
"status.admin_domain": "Moderatie-omgeving van {domain} openen",
|
"status.admin_domain": "Moderatie-omgeving van {domain} openen",
|
||||||
"status.admin_status": "Dit bericht in de moderatie-omgeving tonen",
|
"status.admin_status": "Dit bericht in de moderatie-omgeving tonen",
|
||||||
|
"status.all_disabled": "Boosts en citaten zijn uitgeschakeld",
|
||||||
"status.block": "@{name} blokkeren",
|
"status.block": "@{name} blokkeren",
|
||||||
"status.bookmark": "Bladwijzer toevoegen",
|
"status.bookmark": "Bladwijzer toevoegen",
|
||||||
"status.cancel_reblog_private": "Niet langer boosten",
|
"status.cancel_reblog_private": "Niet langer boosten",
|
||||||
|
"status.cannot_quote": "Dit account heeft het citeren van dit bericht uitgeschakeld",
|
||||||
"status.cannot_reblog": "Dit bericht kan niet geboost worden",
|
"status.cannot_reblog": "Dit bericht kan niet geboost worden",
|
||||||
"status.context.load_new_replies": "Nieuwe reacties beschikbaar",
|
"status.context.load_new_replies": "Nieuwe reacties beschikbaar",
|
||||||
"status.context.loading": "Op nieuwe reacties aan het controleren",
|
"status.context.loading": "Op nieuwe reacties aan het controleren",
|
||||||
|
|
@ -879,12 +891,17 @@
|
||||||
"status.mute_conversation": "Gesprek negeren",
|
"status.mute_conversation": "Gesprek negeren",
|
||||||
"status.open": "Volledig bericht tonen",
|
"status.open": "Volledig bericht tonen",
|
||||||
"status.pin": "Aan profielpagina vastmaken",
|
"status.pin": "Aan profielpagina vastmaken",
|
||||||
|
"status.quote": "Citeren",
|
||||||
|
"status.quote.cancel": "Citeren annuleren",
|
||||||
"status.quote_error.filtered": "Verborgen door een van je filters",
|
"status.quote_error.filtered": "Verborgen door een van je filters",
|
||||||
"status.quote_error.not_available": "Bericht niet beschikbaar",
|
"status.quote_error.not_available": "Bericht niet beschikbaar",
|
||||||
"status.quote_error.pending_approval": "Bericht in afwachting",
|
"status.quote_error.pending_approval": "Bericht in afwachting",
|
||||||
"status.quote_error.pending_approval_popout.body": "Het kan even duren voordat citaten die in de Fediverse gedeeld worden, worden weergegeven. Omdat verschillende servers niet allemaal hetzelfde protocol gebruiken.",
|
"status.quote_error.pending_approval_popout.body": "Het kan even duren voordat citaten die in de Fediverse gedeeld worden, worden weergegeven. Omdat verschillende servers niet allemaal hetzelfde protocol gebruiken.",
|
||||||
"status.quote_error.pending_approval_popout.title": "Even geduld wanneer het citaat nog moet worden goedgekeurd.",
|
"status.quote_error.pending_approval_popout.title": "Even geduld wanneer het citaat nog moet worden goedgekeurd.",
|
||||||
|
"status.quote_policy_change": "Wijzig wie jou mag citeren",
|
||||||
"status.quote_post_author": "Citeerde een bericht van @{name}",
|
"status.quote_post_author": "Citeerde een bericht van @{name}",
|
||||||
|
"status.quote_private": "Citeren van berichten aan alleen volgers is niet mogelijk",
|
||||||
|
"status.quotes": "{count, plural, one {citaat} other {citaten}}",
|
||||||
"status.read_more": "Meer lezen",
|
"status.read_more": "Meer lezen",
|
||||||
"status.reblog": "Boosten",
|
"status.reblog": "Boosten",
|
||||||
"status.reblog_private": "Boost naar oorspronkelijke ontvangers",
|
"status.reblog_private": "Boost naar oorspronkelijke ontvangers",
|
||||||
|
|
@ -937,6 +954,7 @@
|
||||||
"upload_button.label": "Afbeeldingen, een video- of een geluidsbestand toevoegen",
|
"upload_button.label": "Afbeeldingen, een video- of een geluidsbestand toevoegen",
|
||||||
"upload_error.limit": "Uploadlimiet van bestand overschreden.",
|
"upload_error.limit": "Uploadlimiet van bestand overschreden.",
|
||||||
"upload_error.poll": "Het uploaden van bestanden is bij peilingen niet toegestaan.",
|
"upload_error.poll": "Het uploaden van bestanden is bij peilingen niet toegestaan.",
|
||||||
|
"upload_error.quote": "Je kunt geen bestand aan een bericht met een citaat toevoegen.",
|
||||||
"upload_form.drag_and_drop.instructions": "Druk op spatie of enter om een mediabijlage op te pakken. Gebruik de pijltjestoetsen om de bijlage in een bepaalde richting te verplaatsen. Druk opnieuw op de spatiebalk of enter om de mediabijlage op de nieuwe positie te plaatsen, of druk op escape om te annuleren.",
|
"upload_form.drag_and_drop.instructions": "Druk op spatie of enter om een mediabijlage op te pakken. Gebruik de pijltjestoetsen om de bijlage in een bepaalde richting te verplaatsen. Druk opnieuw op de spatiebalk of enter om de mediabijlage op de nieuwe positie te plaatsen, of druk op escape om te annuleren.",
|
||||||
"upload_form.drag_and_drop.on_drag_cancel": "Slepen is geannuleerd. Mediabijlage {item} is niet verplaatst.",
|
"upload_form.drag_and_drop.on_drag_cancel": "Slepen is geannuleerd. Mediabijlage {item} is niet verplaatst.",
|
||||||
"upload_form.drag_and_drop.on_drag_end": "Mediabijlage {item} is niet verplaatst.",
|
"upload_form.drag_and_drop.on_drag_end": "Mediabijlage {item} is niet verplaatst.",
|
||||||
|
|
@ -959,5 +977,18 @@
|
||||||
"video.skip_forward": "Vooruitspoelen",
|
"video.skip_forward": "Vooruitspoelen",
|
||||||
"video.unmute": "Dempen opheffen",
|
"video.unmute": "Dempen opheffen",
|
||||||
"video.volume_down": "Volume omlaag",
|
"video.volume_down": "Volume omlaag",
|
||||||
"video.volume_up": "Volume omhoog"
|
"video.volume_up": "Volume omhoog",
|
||||||
|
"visibility_modal.button_title": "Privacy instellen",
|
||||||
|
"visibility_modal.header": "Zichtbaarheid en interactie",
|
||||||
|
"visibility_modal.helper.direct_quoting": "Privéberichten afkomstig van Mastodon kunnen niet door anderen worden geciteerd.",
|
||||||
|
"visibility_modal.helper.privacy_editing": "Het is niet mogelijk om de zichtbaarheid van geplaatste berichten te wijzigen.",
|
||||||
|
"visibility_modal.helper.private_quoting": "Berichten aan alleen volgers afkomstig van Mastodon kunnen niet door anderen worden geciteerd.",
|
||||||
|
"visibility_modal.helper.unlisted_quoting": "Wanneer mensen jou citeren, verschijnt hun bericht ook niet onder trends.",
|
||||||
|
"visibility_modal.instructions": "Bepaal wie wat met dit bericht kan doen. De globale instellingen vind je onder <link>Voorkeuren > Overig</link>.",
|
||||||
|
"visibility_modal.privacy_label": "Privacy",
|
||||||
|
"visibility_modal.quote_followers": "Alleen volgers",
|
||||||
|
"visibility_modal.quote_label": "Wijzig wie jou mag citeren",
|
||||||
|
"visibility_modal.quote_nobody": "Alleen ik",
|
||||||
|
"visibility_modal.quote_public": "Iedereen",
|
||||||
|
"visibility_modal.save": "Opslaan"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -292,6 +292,7 @@
|
||||||
"domain_pill.your_handle": "O teu identificador:",
|
"domain_pill.your_handle": "O teu identificador:",
|
||||||
"domain_pill.your_server": "A tua casa digital, onde se encontram todas as tuas publicações. Não gostas deste? Muda de servidor a qualquer momento e leva também os teus seguidores.",
|
"domain_pill.your_server": "A tua casa digital, onde se encontram todas as tuas publicações. Não gostas deste? Muda de servidor a qualquer momento e leva também os teus seguidores.",
|
||||||
"domain_pill.your_username": "O teu identificador único neste servidor. É possível encontrares utilizadores com o mesmo nome de utilizador em diferentes servidores.",
|
"domain_pill.your_username": "O teu identificador único neste servidor. É possível encontrares utilizadores com o mesmo nome de utilizador em diferentes servidores.",
|
||||||
|
"dropdown.empty": "Selecione uma opção",
|
||||||
"embed.instructions": "Incorpora esta publicação no teu site copiando o código abaixo.",
|
"embed.instructions": "Incorpora esta publicação no teu site copiando o código abaixo.",
|
||||||
"embed.preview": "Eis o aspeto que terá:",
|
"embed.preview": "Eis o aspeto que terá:",
|
||||||
"emoji_button.activity": "Atividade",
|
"emoji_button.activity": "Atividade",
|
||||||
|
|
@ -482,6 +483,7 @@
|
||||||
"keyboard_shortcuts.home": "abrir a cronologia na página inicial",
|
"keyboard_shortcuts.home": "abrir a cronologia na página inicial",
|
||||||
"keyboard_shortcuts.hotkey": "Atalho",
|
"keyboard_shortcuts.hotkey": "Atalho",
|
||||||
"keyboard_shortcuts.legend": "mostrar esta legenda",
|
"keyboard_shortcuts.legend": "mostrar esta legenda",
|
||||||
|
"keyboard_shortcuts.load_more": "Focar botão \"Carregar mais\"",
|
||||||
"keyboard_shortcuts.local": "abrir a cronologia local",
|
"keyboard_shortcuts.local": "abrir a cronologia local",
|
||||||
"keyboard_shortcuts.mention": "mencionar o autor",
|
"keyboard_shortcuts.mention": "mencionar o autor",
|
||||||
"keyboard_shortcuts.muted": "abrir a lista dos utilizadores ocultados",
|
"keyboard_shortcuts.muted": "abrir a lista dos utilizadores ocultados",
|
||||||
|
|
@ -737,11 +739,18 @@
|
||||||
"privacy.private.short": "Seguidores",
|
"privacy.private.short": "Seguidores",
|
||||||
"privacy.public.long": "Qualquer pessoa no Mastodon ou não",
|
"privacy.public.long": "Qualquer pessoa no Mastodon ou não",
|
||||||
"privacy.public.short": "Público",
|
"privacy.public.short": "Público",
|
||||||
|
"privacy.quote.anyone": "{visibility}, qualquer pessoa pode citar",
|
||||||
|
"privacy.quote.disabled": "{visibility}, citações desativadas",
|
||||||
|
"privacy.quote.limited": "{visibility}, citações limitadas",
|
||||||
"privacy.unlisted.additional": "Este comportamento é exatamente igual ao do público, exceto que a publicação não aparecerá em cronologias, nas etiquetas, ao explorar ou na pesquisa do Mastodon, mesmo que tenhas optado por participar em toda a tua conta.",
|
"privacy.unlisted.additional": "Este comportamento é exatamente igual ao do público, exceto que a publicação não aparecerá em cronologias, nas etiquetas, ao explorar ou na pesquisa do Mastodon, mesmo que tenhas optado por participar em toda a tua conta.",
|
||||||
"privacy.unlisted.long": "Menos fanfarras algorítmicas",
|
"privacy.unlisted.long": "Menos fanfarras algorítmicas",
|
||||||
"privacy.unlisted.short": "Público silencioso",
|
"privacy.unlisted.short": "Público silencioso",
|
||||||
"privacy_policy.last_updated": "Última atualização em {date}",
|
"privacy_policy.last_updated": "Última atualização em {date}",
|
||||||
"privacy_policy.title": "Política de privacidade",
|
"privacy_policy.title": "Política de privacidade",
|
||||||
|
"quote_error.poll": "Não é permitido citar sondagens.",
|
||||||
|
"quote_error.quote": "Apenas é permitida uma citação de cada vez.",
|
||||||
|
"quote_error.unauthorized": "Não está autorizado a citar esta publicação.",
|
||||||
|
"quote_error.upload": "Não é permitida a citação com anexos de multimédia.",
|
||||||
"recommended": "Recomendado",
|
"recommended": "Recomendado",
|
||||||
"refresh": "Atualizar",
|
"refresh": "Atualizar",
|
||||||
"regeneration_indicator.please_stand_by": "Aguarda um momento.",
|
"regeneration_indicator.please_stand_by": "Aguarda um momento.",
|
||||||
|
|
@ -848,9 +857,11 @@
|
||||||
"status.admin_account": "Abrir a interface de moderação para @{name}",
|
"status.admin_account": "Abrir a interface de moderação para @{name}",
|
||||||
"status.admin_domain": "Abrir interface de moderação para {domain}",
|
"status.admin_domain": "Abrir interface de moderação para {domain}",
|
||||||
"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.all_disabled": "Impulsos e citações estão desativados",
|
||||||
"status.block": "Bloquear @{name}",
|
"status.block": "Bloquear @{name}",
|
||||||
"status.bookmark": "Guardar nos marcadores",
|
"status.bookmark": "Guardar nos marcadores",
|
||||||
"status.cancel_reblog_private": "Retirar impulso",
|
"status.cancel_reblog_private": "Retirar impulso",
|
||||||
|
"status.cannot_quote": "O autor desativou as citações nesta publicação",
|
||||||
"status.cannot_reblog": "Esta publicação não pode ser impulsionada",
|
"status.cannot_reblog": "Esta publicação não pode ser impulsionada",
|
||||||
"status.context.load_new_replies": "Novas respostas disponíveis",
|
"status.context.load_new_replies": "Novas respostas disponíveis",
|
||||||
"status.context.loading": "A verificar por mais respostas",
|
"status.context.loading": "A verificar por mais respostas",
|
||||||
|
|
@ -879,12 +890,16 @@
|
||||||
"status.mute_conversation": "Ocultar conversa",
|
"status.mute_conversation": "Ocultar conversa",
|
||||||
"status.open": "Expandir esta publicação",
|
"status.open": "Expandir esta publicação",
|
||||||
"status.pin": "Afixar no perfil",
|
"status.pin": "Afixar no perfil",
|
||||||
|
"status.quote": "Citação",
|
||||||
|
"status.quote.cancel": "Cancelar citação",
|
||||||
"status.quote_error.filtered": "Oculto devido a um dos seus filtros",
|
"status.quote_error.filtered": "Oculto devido a um dos seus filtros",
|
||||||
"status.quote_error.not_available": "Publicação indisponível",
|
"status.quote_error.not_available": "Publicação indisponível",
|
||||||
"status.quote_error.pending_approval": "Publicação pendente",
|
"status.quote_error.pending_approval": "Publicação pendente",
|
||||||
"status.quote_error.pending_approval_popout.body": "As citações partilhadas no Fediverso podem demorar algum tempo a ser exibidas, uma vez que diferentes servidores têm protocolos diferentes.",
|
"status.quote_error.pending_approval_popout.body": "As citações partilhadas no Fediverso podem demorar algum tempo a ser exibidas, uma vez que diferentes servidores têm protocolos diferentes.",
|
||||||
"status.quote_error.pending_approval_popout.title": "Citação pendente? Mantenha a calma",
|
"status.quote_error.pending_approval_popout.title": "Citação pendente? Mantenha a calma",
|
||||||
|
"status.quote_policy_change": "Alterar quem pode citar",
|
||||||
"status.quote_post_author": "Citou uma publicação de @{name}",
|
"status.quote_post_author": "Citou uma publicação de @{name}",
|
||||||
|
"status.quote_private": "Publicações privadas não podem ser citadas",
|
||||||
"status.read_more": "Ler mais",
|
"status.read_more": "Ler mais",
|
||||||
"status.reblog": "Impulsionar",
|
"status.reblog": "Impulsionar",
|
||||||
"status.reblog_private": "Impulsionar com a visibilidade original",
|
"status.reblog_private": "Impulsionar com a visibilidade original",
|
||||||
|
|
@ -937,6 +952,7 @@
|
||||||
"upload_button.label": "Adicionar imagens, um vídeo ou um ficheiro de som",
|
"upload_button.label": "Adicionar imagens, um vídeo ou um ficheiro de som",
|
||||||
"upload_error.limit": "Limite de envio de ficheiros excedido.",
|
"upload_error.limit": "Limite de envio de ficheiros excedido.",
|
||||||
"upload_error.poll": "Não é permitido o envio de ficheiros em sondagens.",
|
"upload_error.poll": "Não é permitido o envio de ficheiros em sondagens.",
|
||||||
|
"upload_error.quote": "Carregamento de ficheiros não é permitido com citações.",
|
||||||
"upload_form.drag_and_drop.instructions": "Para escolher um anexo multimédia, prima espaço ou enter. Enquanto arrasta, utilize as teclas de setas para mover o anexo multimédia em qualquer direção. Prima espaço ou enter novamente para largar o anexo multimédia na sua nova posição ou prima escape para cancelar.",
|
"upload_form.drag_and_drop.instructions": "Para escolher um anexo multimédia, prima espaço ou enter. Enquanto arrasta, utilize as teclas de setas para mover o anexo multimédia em qualquer direção. Prima espaço ou enter novamente para largar o anexo multimédia na sua nova posição ou prima escape para cancelar.",
|
||||||
"upload_form.drag_and_drop.on_drag_cancel": "O arrastamento foi cancelado. O anexo multimédia {item} foi descartado.",
|
"upload_form.drag_and_drop.on_drag_cancel": "O arrastamento foi cancelado. O anexo multimédia {item} foi descartado.",
|
||||||
"upload_form.drag_and_drop.on_drag_end": "O anexo multimédia {item} foi descartado.",
|
"upload_form.drag_and_drop.on_drag_end": "O anexo multimédia {item} foi descartado.",
|
||||||
|
|
@ -959,5 +975,15 @@
|
||||||
"video.skip_forward": "Saltar para a frente",
|
"video.skip_forward": "Saltar para a frente",
|
||||||
"video.unmute": "Ativar som",
|
"video.unmute": "Ativar som",
|
||||||
"video.volume_down": "Diminuir volume",
|
"video.volume_down": "Diminuir volume",
|
||||||
"video.volume_up": "Aumentar volume"
|
"video.volume_up": "Aumentar volume",
|
||||||
|
"visibility_modal.button_title": "Definir visibilidade",
|
||||||
|
"visibility_modal.header": "Visibilidade e interação",
|
||||||
|
"visibility_modal.helper.privacy_editing": "Publicações publicadas não podem alterar a sua visibilidade.",
|
||||||
|
"visibility_modal.helper.unlisted_quoting": "Quando as pessoas o citarem, as publicações delas serão também ocultadas das tendências.",
|
||||||
|
"visibility_modal.instructions": "Controle quem pode interagir com esta publicação. As configurações globais podem ser encontradas em <link>Preferências > Outros</link>.",
|
||||||
|
"visibility_modal.privacy_label": "Privacidade",
|
||||||
|
"visibility_modal.quote_followers": "Apenas seguidores",
|
||||||
|
"visibility_modal.quote_label": "Altere quem pode citar",
|
||||||
|
"visibility_modal.quote_public": "Todos",
|
||||||
|
"visibility_modal.save": "Guardar"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -965,14 +965,12 @@
|
||||||
"video.volume_up": "Volym upp",
|
"video.volume_up": "Volym upp",
|
||||||
"visibility_modal.button_title": "Ange synlighet",
|
"visibility_modal.button_title": "Ange synlighet",
|
||||||
"visibility_modal.header": "Synlighet och interaktion",
|
"visibility_modal.header": "Synlighet och interaktion",
|
||||||
"visibility_modal.helper.direct_quoting": "Privata omnämnanden kan inte bli citerade.",
|
|
||||||
"visibility_modal.helper.privacy_editing": "Publicerade inlägg kan inte ändra deras synlighet.",
|
"visibility_modal.helper.privacy_editing": "Publicerade inlägg kan inte ändra deras synlighet.",
|
||||||
"visibility_modal.helper.private_quoting": "Inlägg som endast är synliga för följare kan inte citeras.",
|
|
||||||
"visibility_modal.helper.unlisted_quoting": "När folk citerar dig, deras inlägg kommer också att döljas från trendiga tidslinjer.",
|
"visibility_modal.helper.unlisted_quoting": "När folk citerar dig, deras inlägg kommer också att döljas från trendiga tidslinjer.",
|
||||||
"visibility_modal.instructions": "Kontrollera vem som kan interagera med det här inlägget. Globala inställningar kan hittas under <link>Inställningar > Andra</link>.",
|
"visibility_modal.instructions": "Kontrollera vem som kan interagera med det här inlägget. Globala inställningar kan hittas under <link>Inställningar > Andra</link>.",
|
||||||
"visibility_modal.privacy_label": "Integritet",
|
"visibility_modal.privacy_label": "Integritet",
|
||||||
"visibility_modal.quote_followers": "Endast följare",
|
"visibility_modal.quote_followers": "Endast följare",
|
||||||
"visibility_modal.quote_label": "Ändra vem som kan citera",
|
"visibility_modal.quote_label": "Ändra vem som kan citera",
|
||||||
"visibility_modal.quote_nobody": "Ingen",
|
"visibility_modal.quote_public": "Alla",
|
||||||
"visibility_modal.quote_public": "Alla"
|
"visibility_modal.save": "Spara"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -944,6 +944,7 @@
|
||||||
"upload_button.label": "Resim, video veya ses dosyası ekleyin",
|
"upload_button.label": "Resim, video veya ses dosyası ekleyin",
|
||||||
"upload_error.limit": "Dosya yükleme sınırı aşıldı.",
|
"upload_error.limit": "Dosya yükleme sınırı aşıldı.",
|
||||||
"upload_error.poll": "Anketlerde dosya yüklemesine izin verilmez.",
|
"upload_error.poll": "Anketlerde dosya yüklemesine izin verilmez.",
|
||||||
|
"upload_error.quote": "Anketlerde dosya yüklemesine izin verilmez.",
|
||||||
"upload_form.drag_and_drop.instructions": "Bir medya eklentisini taşımak için, boşluk veya enter tuşuna basın. Sürükleme sırasında medya eklentisini herhangi bir yöne hareket ettirmek için ok tuşlarını kullanın. Medya eklentisini yeni konumuna bırakmak için tekrar boşluk veya enter tuşuna basın veya işlemi iptal etmek için escape tuşuna basın.",
|
"upload_form.drag_and_drop.instructions": "Bir medya eklentisini taşımak için, boşluk veya enter tuşuna basın. Sürükleme sırasında medya eklentisini herhangi bir yöne hareket ettirmek için ok tuşlarını kullanın. Medya eklentisini yeni konumuna bırakmak için tekrar boşluk veya enter tuşuna basın veya işlemi iptal etmek için escape tuşuna basın.",
|
||||||
"upload_form.drag_and_drop.on_drag_cancel": "Sürükleme iptal edildi. Medya eklentisi {item} bırakıldı.",
|
"upload_form.drag_and_drop.on_drag_cancel": "Sürükleme iptal edildi. Medya eklentisi {item} bırakıldı.",
|
||||||
"upload_form.drag_and_drop.on_drag_end": "Medya eklentisi {item} bırakıldı.",
|
"upload_form.drag_and_drop.on_drag_end": "Medya eklentisi {item} bırakıldı.",
|
||||||
|
|
@ -969,14 +970,12 @@
|
||||||
"video.volume_up": "Sesi yükselt",
|
"video.volume_up": "Sesi yükselt",
|
||||||
"visibility_modal.button_title": "Görünürlüğü ayarla",
|
"visibility_modal.button_title": "Görünürlüğü ayarla",
|
||||||
"visibility_modal.header": "Görünürlük ve etkileşim",
|
"visibility_modal.header": "Görünürlük ve etkileşim",
|
||||||
"visibility_modal.helper.direct_quoting": "Özel gönderiler alıntılanamaz.",
|
|
||||||
"visibility_modal.helper.privacy_editing": "Yayınlanan gönderilerin görünürlüğü değiştirilemez.",
|
"visibility_modal.helper.privacy_editing": "Yayınlanan gönderilerin görünürlüğü değiştirilemez.",
|
||||||
"visibility_modal.helper.private_quoting": "Sadece takipçilere özel paylaşımlar alıntılanamaz.",
|
|
||||||
"visibility_modal.helper.unlisted_quoting": "İnsanlar sizden alıntı yaptığında, onların gönderileri de trend zaman tünellerinden gizlenecektir.",
|
"visibility_modal.helper.unlisted_quoting": "İnsanlar sizden alıntı yaptığında, onların gönderileri de trend zaman tünellerinden gizlenecektir.",
|
||||||
"visibility_modal.instructions": "Bu gönderiyle kimlerin etkileşimde bulunabileceğini kontrol edin. Genel ayarlara <link>Tercihler > Diğer</link> bölümünden ulaşabilirsiniz.",
|
"visibility_modal.instructions": "Bu gönderiyle kimlerin etkileşimde bulunabileceğini kontrol edin. Genel ayarlara <link>Tercihler > Diğer</link> bölümünden ulaşabilirsiniz.",
|
||||||
"visibility_modal.privacy_label": "Gizlilik",
|
"visibility_modal.privacy_label": "Gizlilik",
|
||||||
"visibility_modal.quote_followers": "Sadece takipçiler",
|
"visibility_modal.quote_followers": "Sadece takipçiler",
|
||||||
"visibility_modal.quote_label": "Kimin alıntı yapabileceğini değiştirin",
|
"visibility_modal.quote_label": "Kimin alıntı yapabileceğini değiştirin",
|
||||||
"visibility_modal.quote_nobody": "Kimseden",
|
"visibility_modal.quote_public": "Herkesten",
|
||||||
"visibility_modal.quote_public": "Herkesten"
|
"visibility_modal.save": "Kaydet"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -924,6 +924,6 @@
|
||||||
"visibility_modal.privacy_label": "Конфіденційність",
|
"visibility_modal.privacy_label": "Конфіденційність",
|
||||||
"visibility_modal.quote_followers": "Тільки для підписників",
|
"visibility_modal.quote_followers": "Тільки для підписників",
|
||||||
"visibility_modal.quote_label": "Змінити хто може цитувати",
|
"visibility_modal.quote_label": "Змінити хто може цитувати",
|
||||||
"visibility_modal.quote_nobody": "Ніхто",
|
"visibility_modal.quote_public": "Будь-хто",
|
||||||
"visibility_modal.quote_public": "Будь-хто"
|
"visibility_modal.save": "Зберегти"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -483,6 +483,7 @@
|
||||||
"keyboard_shortcuts.home": "mở trang chủ",
|
"keyboard_shortcuts.home": "mở trang chủ",
|
||||||
"keyboard_shortcuts.hotkey": "Phím tắt",
|
"keyboard_shortcuts.hotkey": "Phím tắt",
|
||||||
"keyboard_shortcuts.legend": "hiện bảng hướng dẫn này",
|
"keyboard_shortcuts.legend": "hiện bảng hướng dẫn này",
|
||||||
|
"keyboard_shortcuts.load_more": "Mở nút \"Tải thêm\"",
|
||||||
"keyboard_shortcuts.local": "mở máy chủ của bạn",
|
"keyboard_shortcuts.local": "mở máy chủ của bạn",
|
||||||
"keyboard_shortcuts.mention": "nhắc đến ai đó",
|
"keyboard_shortcuts.mention": "nhắc đến ai đó",
|
||||||
"keyboard_shortcuts.muted": "mở danh sách người đã ẩn",
|
"keyboard_shortcuts.muted": "mở danh sách người đã ẩn",
|
||||||
|
|
@ -619,6 +620,7 @@
|
||||||
"notification.moderation_warning.action_suspend": "Tài khoản của bạn đã bị vô hiệu hóa.",
|
"notification.moderation_warning.action_suspend": "Tài khoản của bạn đã bị vô hiệu hóa.",
|
||||||
"notification.own_poll": "Vốt của bạn đã kết thúc",
|
"notification.own_poll": "Vốt của bạn đã kết thúc",
|
||||||
"notification.poll": "Vốt mà bạn tham gia đã kết thúc",
|
"notification.poll": "Vốt mà bạn tham gia đã kết thúc",
|
||||||
|
"notification.quoted_update": "{name} đã chỉnh sửa tút mà bạn trích dẫn",
|
||||||
"notification.reblog": "{name} đăng lại tút của bạn",
|
"notification.reblog": "{name} đăng lại tút của bạn",
|
||||||
"notification.reblog.name_and_others_with_link": "{name} và <a>{count, plural, other {# người khác}}</a> đã đăng lại tút của bạn",
|
"notification.reblog.name_and_others_with_link": "{name} và <a>{count, plural, other {# người khác}}</a> đã đăng lại tút của bạn",
|
||||||
"notification.relationships_severance_event": "Mất kết nối với {name}",
|
"notification.relationships_severance_event": "Mất kết nối với {name}",
|
||||||
|
|
@ -738,11 +740,18 @@
|
||||||
"privacy.private.short": "Người theo dõi",
|
"privacy.private.short": "Người theo dõi",
|
||||||
"privacy.public.long": "Bất cứ ai",
|
"privacy.public.long": "Bất cứ ai",
|
||||||
"privacy.public.short": "Công khai",
|
"privacy.public.short": "Công khai",
|
||||||
|
"privacy.quote.anyone": "{visibility}, mọi người có thể trích dẫn",
|
||||||
|
"privacy.quote.disabled": "{visibility}, tắt trích dẫn",
|
||||||
|
"privacy.quote.limited": "{visibility}, hạn chế trích dẫn",
|
||||||
"privacy.unlisted.additional": "Công khai, nhưng tút sẽ không hiện trong bảng tin, hashtag, khám phá hoặc tìm kiếm Mastodon, kể cả trong cài đặt tài khoản bạn chọn cho phép.",
|
"privacy.unlisted.additional": "Công khai, nhưng tút sẽ không hiện trong bảng tin, hashtag, khám phá hoặc tìm kiếm Mastodon, kể cả trong cài đặt tài khoản bạn chọn cho phép.",
|
||||||
"privacy.unlisted.long": "Ít hướng thuật toán hơn",
|
"privacy.unlisted.long": "Ít hướng thuật toán hơn",
|
||||||
"privacy.unlisted.short": "Hạn chế",
|
"privacy.unlisted.short": "Hạn chế",
|
||||||
"privacy_policy.last_updated": "Cập nhật lần cuối {date}",
|
"privacy_policy.last_updated": "Cập nhật lần cuối {date}",
|
||||||
"privacy_policy.title": "Chính sách bảo mật",
|
"privacy_policy.title": "Chính sách bảo mật",
|
||||||
|
"quote_error.poll": "Không thể trích dẫn vốt.",
|
||||||
|
"quote_error.quote": "Chỉ được trích dẫn một lần.",
|
||||||
|
"quote_error.unauthorized": "Bạn không được cấp quyền trích dẫn tút này.",
|
||||||
|
"quote_error.upload": "Không thể trích dẫn với media đính kèm.",
|
||||||
"recommended": "Đề xuất",
|
"recommended": "Đề xuất",
|
||||||
"refresh": "Làm mới",
|
"refresh": "Làm mới",
|
||||||
"regeneration_indicator.please_stand_by": "Hãy chờ đã.",
|
"regeneration_indicator.please_stand_by": "Hãy chờ đã.",
|
||||||
|
|
@ -892,6 +901,7 @@
|
||||||
"status.quote_policy_change": "Thay đổi người có thể trích dẫn",
|
"status.quote_policy_change": "Thay đổi người có thể trích dẫn",
|
||||||
"status.quote_post_author": "Trích dẫn từ tút của @{name}",
|
"status.quote_post_author": "Trích dẫn từ tút của @{name}",
|
||||||
"status.quote_private": "Không thể trích dẫn nhắn riêng",
|
"status.quote_private": "Không thể trích dẫn nhắn riêng",
|
||||||
|
"status.quotes": "{count, plural, other {trích dẫn}}",
|
||||||
"status.read_more": "Đọc tiếp",
|
"status.read_more": "Đọc tiếp",
|
||||||
"status.reblog": "Đăng lại",
|
"status.reblog": "Đăng lại",
|
||||||
"status.reblog_private": "Đăng lại (Riêng tư)",
|
"status.reblog_private": "Đăng lại (Riêng tư)",
|
||||||
|
|
@ -944,6 +954,7 @@
|
||||||
"upload_button.label": "Thêm media (JPEG, PNG, GIF, WebM, MP4, MOV)",
|
"upload_button.label": "Thêm media (JPEG, PNG, GIF, WebM, MP4, MOV)",
|
||||||
"upload_error.limit": "Tập tin tải lên vượt quá giới hạn cho phép.",
|
"upload_error.limit": "Tập tin tải lên vượt quá giới hạn cho phép.",
|
||||||
"upload_error.poll": "Không cho phép đính kèm tập tin.",
|
"upload_error.poll": "Không cho phép đính kèm tập tin.",
|
||||||
|
"upload_error.quote": "Không cho phép đính kèm tập tin với trích dẫn.",
|
||||||
"upload_form.drag_and_drop.instructions": "Để chọn tập tin đính kèm, hãy nhấn phím cách hoặc phím Enter. Trong khi kéo, sử dụng các phím mũi tên để di chuyển tập tin đính kèm theo bất kỳ hướng nào. Nhấn phím cách hoặc phím Enter một lần nữa để thả tập tin đính kèm vào vị trí mới hoặc nhấn phím thoát để hủy.",
|
"upload_form.drag_and_drop.instructions": "Để chọn tập tin đính kèm, hãy nhấn phím cách hoặc phím Enter. Trong khi kéo, sử dụng các phím mũi tên để di chuyển tập tin đính kèm theo bất kỳ hướng nào. Nhấn phím cách hoặc phím Enter một lần nữa để thả tập tin đính kèm vào vị trí mới hoặc nhấn phím thoát để hủy.",
|
||||||
"upload_form.drag_and_drop.on_drag_cancel": "Kéo thả đã bị hủy bỏ. Tập tin đính kèm {item} bị bỏ qua.",
|
"upload_form.drag_and_drop.on_drag_cancel": "Kéo thả đã bị hủy bỏ. Tập tin đính kèm {item} bị bỏ qua.",
|
||||||
"upload_form.drag_and_drop.on_drag_end": "Tập tin đính kèm {item} bị bỏ qua.",
|
"upload_form.drag_and_drop.on_drag_end": "Tập tin đính kèm {item} bị bỏ qua.",
|
||||||
|
|
@ -969,14 +980,15 @@
|
||||||
"video.volume_up": "Tăng âm lượng",
|
"video.volume_up": "Tăng âm lượng",
|
||||||
"visibility_modal.button_title": "Thay đổi quyền riêng tư",
|
"visibility_modal.button_title": "Thay đổi quyền riêng tư",
|
||||||
"visibility_modal.header": "Hiển thị và tương tác",
|
"visibility_modal.header": "Hiển thị và tương tác",
|
||||||
"visibility_modal.helper.direct_quoting": "Không thể trích dẫn nhắn riêng.",
|
"visibility_modal.helper.direct_quoting": "Nhắn riêng trên Mastodon không thể được người khác trích dẫn.",
|
||||||
"visibility_modal.helper.privacy_editing": "Không thể thay đổi kiểu hiển thị của tút đã đăng.",
|
"visibility_modal.helper.privacy_editing": "Không thể thay đổi kiểu hiển thị của tút đã đăng.",
|
||||||
"visibility_modal.helper.private_quoting": "Không thể trích dẫn những tút chỉ dành cho người theo dõi.",
|
"visibility_modal.helper.private_quoting": "Tút chỉ dành cho người theo dõi trên Mastodon không thể được người khác trích dẫn.",
|
||||||
"visibility_modal.helper.unlisted_quoting": "Khi ai đó trích dẫn bạn, tút của họ cũng sẽ bị ẩn khỏi bảng tin công khai.",
|
"visibility_modal.helper.unlisted_quoting": "Khi ai đó trích dẫn bạn, tút của họ cũng sẽ bị ẩn khỏi bảng tin công khai.",
|
||||||
"visibility_modal.instructions": "Kiểm soát những ai có thể tương tác với tút này. Cài đặt chung trong <link>Thiết lập > Khác</link>.",
|
"visibility_modal.instructions": "Kiểm soát những ai có thể tương tác với tút này. Cài đặt chung trong <link>Thiết lập > Khác</link>.",
|
||||||
"visibility_modal.privacy_label": "Riêng tư",
|
"visibility_modal.privacy_label": "Riêng tư",
|
||||||
"visibility_modal.quote_followers": "Chỉ người theo dõi",
|
"visibility_modal.quote_followers": "Chỉ người theo dõi",
|
||||||
"visibility_modal.quote_label": "Thay đổi người có thể trích dẫn",
|
"visibility_modal.quote_label": "Thay đổi người có thể trích dẫn",
|
||||||
"visibility_modal.quote_nobody": "Không ai",
|
"visibility_modal.quote_nobody": "Chỉ tôi",
|
||||||
"visibility_modal.quote_public": "Bất cứ ai"
|
"visibility_modal.quote_public": "Bất cứ ai",
|
||||||
|
"visibility_modal.save": "Lưu"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -241,6 +241,7 @@
|
||||||
"confirmations.remove_from_followers.message": "{name} 将停止关注您。您确定要继续吗?",
|
"confirmations.remove_from_followers.message": "{name} 将停止关注您。您确定要继续吗?",
|
||||||
"confirmations.remove_from_followers.title": "移除关注者?",
|
"confirmations.remove_from_followers.title": "移除关注者?",
|
||||||
"confirmations.revoke_quote.confirm": "移除嘟文",
|
"confirmations.revoke_quote.confirm": "移除嘟文",
|
||||||
|
"confirmations.revoke_quote.message": "此操作无法撤销。",
|
||||||
"confirmations.revoke_quote.title": "移除嘟文?",
|
"confirmations.revoke_quote.title": "移除嘟文?",
|
||||||
"confirmations.unfollow.confirm": "取消关注",
|
"confirmations.unfollow.confirm": "取消关注",
|
||||||
"confirmations.unfollow.message": "你确定要取消关注 {name} 吗?",
|
"confirmations.unfollow.message": "你确定要取消关注 {name} 吗?",
|
||||||
|
|
@ -494,6 +495,7 @@
|
||||||
"keyboard_shortcuts.unfocus": "取消输入/搜索",
|
"keyboard_shortcuts.unfocus": "取消输入/搜索",
|
||||||
"keyboard_shortcuts.up": "在列表中让光标上移",
|
"keyboard_shortcuts.up": "在列表中让光标上移",
|
||||||
"learn_more_link.got_it": "明白了",
|
"learn_more_link.got_it": "明白了",
|
||||||
|
"learn_more_link.learn_more": "了解更多",
|
||||||
"lightbox.close": "关闭",
|
"lightbox.close": "关闭",
|
||||||
"lightbox.next": "下一个",
|
"lightbox.next": "下一个",
|
||||||
"lightbox.previous": "上一个",
|
"lightbox.previous": "上一个",
|
||||||
|
|
@ -939,5 +941,10 @@
|
||||||
"video.skip_forward": "前进",
|
"video.skip_forward": "前进",
|
||||||
"video.unmute": "恢复提醒",
|
"video.unmute": "恢复提醒",
|
||||||
"video.volume_down": "音量减小",
|
"video.volume_down": "音量减小",
|
||||||
"video.volume_up": "提高音量"
|
"video.volume_up": "提高音量",
|
||||||
|
"visibility_modal.button_title": "设置可见性",
|
||||||
|
"visibility_modal.privacy_label": "隐私",
|
||||||
|
"visibility_modal.quote_label": "更改谁可以引用",
|
||||||
|
"visibility_modal.quote_public": "任何人",
|
||||||
|
"visibility_modal.save": "保存"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -377,6 +377,7 @@
|
||||||
"keyboard_shortcuts.home": "開啟個人時間軸",
|
"keyboard_shortcuts.home": "開啟個人時間軸",
|
||||||
"keyboard_shortcuts.hotkey": "快速鍵",
|
"keyboard_shortcuts.hotkey": "快速鍵",
|
||||||
"keyboard_shortcuts.legend": "顯示這個說明",
|
"keyboard_shortcuts.legend": "顯示這個說明",
|
||||||
|
"keyboard_shortcuts.load_more": "將焦點移至「讀取更多」按鈕",
|
||||||
"keyboard_shortcuts.local": "開啟本站時間軸",
|
"keyboard_shortcuts.local": "開啟本站時間軸",
|
||||||
"keyboard_shortcuts.mention": "提及作者",
|
"keyboard_shortcuts.mention": "提及作者",
|
||||||
"keyboard_shortcuts.muted": "開啟靜音名單",
|
"keyboard_shortcuts.muted": "開啟靜音名單",
|
||||||
|
|
@ -744,5 +745,6 @@
|
||||||
"video.pause": "暫停",
|
"video.pause": "暫停",
|
||||||
"video.play": "播放",
|
"video.play": "播放",
|
||||||
"video.volume_down": "調低音量",
|
"video.volume_down": "調低音量",
|
||||||
"video.volume_up": "調高音量"
|
"video.volume_up": "調高音量",
|
||||||
|
"visibility_modal.save": "儲存"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -483,6 +483,7 @@
|
||||||
"keyboard_shortcuts.home": "開啟首頁時間軸",
|
"keyboard_shortcuts.home": "開啟首頁時間軸",
|
||||||
"keyboard_shortcuts.hotkey": "快速鍵",
|
"keyboard_shortcuts.hotkey": "快速鍵",
|
||||||
"keyboard_shortcuts.legend": "顯示此說明選單",
|
"keyboard_shortcuts.legend": "顯示此說明選單",
|
||||||
|
"keyboard_shortcuts.load_more": "將焦點移至「讀取更多」按鈕",
|
||||||
"keyboard_shortcuts.local": "開啟本站時間軸",
|
"keyboard_shortcuts.local": "開啟本站時間軸",
|
||||||
"keyboard_shortcuts.mention": "提及作者",
|
"keyboard_shortcuts.mention": "提及作者",
|
||||||
"keyboard_shortcuts.muted": "開啟靜音使用者列表",
|
"keyboard_shortcuts.muted": "開啟靜音使用者列表",
|
||||||
|
|
@ -619,6 +620,7 @@
|
||||||
"notification.moderation_warning.action_suspend": "您的帳號已被停權。",
|
"notification.moderation_warning.action_suspend": "您的帳號已被停權。",
|
||||||
"notification.own_poll": "您的投票已結束",
|
"notification.own_poll": "您的投票已結束",
|
||||||
"notification.poll": "您曾投過的投票已經結束",
|
"notification.poll": "您曾投過的投票已經結束",
|
||||||
|
"notification.quoted_update": "{name} 已編輯一則您曾引用之嘟文",
|
||||||
"notification.reblog": "{name} 已轉嘟您的嘟文",
|
"notification.reblog": "{name} 已轉嘟您的嘟文",
|
||||||
"notification.reblog.name_and_others_with_link": "{name} 與<a>{count, plural, other {其他 # 個人}}</a>已轉嘟您的嘟文",
|
"notification.reblog.name_and_others_with_link": "{name} 與<a>{count, plural, other {其他 # 個人}}</a>已轉嘟您的嘟文",
|
||||||
"notification.relationships_severance_event": "與 {name} 失去連結",
|
"notification.relationships_severance_event": "與 {name} 失去連結",
|
||||||
|
|
@ -738,11 +740,18 @@
|
||||||
"privacy.private.short": "跟隨者",
|
"privacy.private.short": "跟隨者",
|
||||||
"privacy.public.long": "所有人 (無論在 Mastodon 上與否)",
|
"privacy.public.long": "所有人 (無論在 Mastodon 上與否)",
|
||||||
"privacy.public.short": "公開",
|
"privacy.public.short": "公開",
|
||||||
|
"privacy.quote.anyone": "{visibility},任何人皆可引用",
|
||||||
|
"privacy.quote.disabled": "{visibility},停用引用嘟文",
|
||||||
|
"privacy.quote.limited": "{visibility},受限的引用嘟文",
|
||||||
"privacy.unlisted.additional": "此與公開嘟文完全相同,但嘟文不會出現於即時內容或主題標籤、探索、及 Mastodon 搜尋中,即使您在帳戶設定中選擇加入。",
|
"privacy.unlisted.additional": "此與公開嘟文完全相同,但嘟文不會出現於即時內容或主題標籤、探索、及 Mastodon 搜尋中,即使您在帳戶設定中選擇加入。",
|
||||||
"privacy.unlisted.long": "悄然無聲",
|
"privacy.unlisted.long": "悄然無聲",
|
||||||
"privacy.unlisted.short": "不公開",
|
"privacy.unlisted.short": "不公開",
|
||||||
"privacy_policy.last_updated": "最後更新:{date}",
|
"privacy_policy.last_updated": "最後更新:{date}",
|
||||||
"privacy_policy.title": "隱私權政策",
|
"privacy_policy.title": "隱私權政策",
|
||||||
|
"quote_error.poll": "無法引用投票嘟文。",
|
||||||
|
"quote_error.quote": "一次僅能引用一則嘟文。",
|
||||||
|
"quote_error.unauthorized": "您不被授權允許引用此嘟文。",
|
||||||
|
"quote_error.upload": "無法引用多媒體內容嘟文。",
|
||||||
"recommended": "推薦設定",
|
"recommended": "推薦設定",
|
||||||
"refresh": "重新整理",
|
"refresh": "重新整理",
|
||||||
"regeneration_indicator.please_stand_by": "請稍候。",
|
"regeneration_indicator.please_stand_by": "請稍候。",
|
||||||
|
|
@ -892,6 +901,7 @@
|
||||||
"status.quote_policy_change": "變更可以引用的人",
|
"status.quote_policy_change": "變更可以引用的人",
|
||||||
"status.quote_post_author": "已引用 @{name} 之嘟文",
|
"status.quote_post_author": "已引用 @{name} 之嘟文",
|
||||||
"status.quote_private": "無法引用私人嘟文",
|
"status.quote_private": "無法引用私人嘟文",
|
||||||
|
"status.quotes": "{count, plural, other {# 則引用嘟文}}",
|
||||||
"status.read_more": "閱讀更多",
|
"status.read_more": "閱讀更多",
|
||||||
"status.reblog": "轉嘟",
|
"status.reblog": "轉嘟",
|
||||||
"status.reblog_private": "依照原嘟可見性轉嘟",
|
"status.reblog_private": "依照原嘟可見性轉嘟",
|
||||||
|
|
@ -944,6 +954,7 @@
|
||||||
"upload_button.label": "上傳圖片、影片、或者音訊檔案",
|
"upload_button.label": "上傳圖片、影片、或者音訊檔案",
|
||||||
"upload_error.limit": "已達到檔案上傳限制。",
|
"upload_error.limit": "已達到檔案上傳限制。",
|
||||||
"upload_error.poll": "不允許於投票時上傳檔案。",
|
"upload_error.poll": "不允許於投票時上傳檔案。",
|
||||||
|
"upload_error.quote": "引用嘟文無法上傳檔案。",
|
||||||
"upload_form.drag_and_drop.instructions": "請按空白鍵或 Enter 鍵取多媒體附加檔案。使用方向鍵移動多媒體附加檔案。按下空白鍵或 Enter 鍵於新位置放置多媒體附加檔案,或按下 ESC 鍵取消。",
|
"upload_form.drag_and_drop.instructions": "請按空白鍵或 Enter 鍵取多媒體附加檔案。使用方向鍵移動多媒體附加檔案。按下空白鍵或 Enter 鍵於新位置放置多媒體附加檔案,或按下 ESC 鍵取消。",
|
||||||
"upload_form.drag_and_drop.on_drag_cancel": "移動已取消。多媒體附加檔案 {item} 已被放置。",
|
"upload_form.drag_and_drop.on_drag_cancel": "移動已取消。多媒體附加檔案 {item} 已被放置。",
|
||||||
"upload_form.drag_and_drop.on_drag_end": "多媒體附加檔案 {item} 已被放置。",
|
"upload_form.drag_and_drop.on_drag_end": "多媒體附加檔案 {item} 已被放置。",
|
||||||
|
|
@ -969,14 +980,15 @@
|
||||||
"video.volume_up": "提高音量",
|
"video.volume_up": "提高音量",
|
||||||
"visibility_modal.button_title": "設定可見性",
|
"visibility_modal.button_title": "設定可見性",
|
||||||
"visibility_modal.header": "可見性與互動",
|
"visibility_modal.header": "可見性與互動",
|
||||||
"visibility_modal.helper.direct_quoting": "無法引用私人提及。",
|
"visibility_modal.helper.direct_quoting": "Mastodon 上發佈之私人提及嘟文無法被其他使用者引用。",
|
||||||
"visibility_modal.helper.privacy_editing": "無法變更已發佈的嘟文之可見性。",
|
"visibility_modal.helper.privacy_editing": "無法變更已發佈的嘟文之可見性。",
|
||||||
"visibility_modal.helper.private_quoting": "無法引用僅追蹤者的嘟文。",
|
"visibility_modal.helper.private_quoting": "Mastodon 上發佈之僅限跟隨者嘟文無法被其他使用者引用。",
|
||||||
"visibility_modal.helper.unlisted_quoting": "當其他人引用您時,他們的嘟文也會自熱門時間軸隱藏。",
|
"visibility_modal.helper.unlisted_quoting": "當其他人引用您時,他們的嘟文也會自熱門時間軸隱藏。",
|
||||||
"visibility_modal.instructions": "控制誰能與此嘟文互動。可在<link>偏好設定 > 其他</link>下找到全域設定。",
|
"visibility_modal.instructions": "控制誰能與此嘟文互動。可在<link>偏好設定 > 其他</link>下找到全域設定。",
|
||||||
"visibility_modal.privacy_label": "隱私權",
|
"visibility_modal.privacy_label": "隱私權",
|
||||||
"visibility_modal.quote_followers": "僅限跟隨者",
|
"visibility_modal.quote_followers": "僅限跟隨者",
|
||||||
"visibility_modal.quote_label": "變更可以引用的人",
|
"visibility_modal.quote_label": "變更可以引用的人",
|
||||||
"visibility_modal.quote_nobody": "沒有人",
|
"visibility_modal.quote_nobody": "僅有我",
|
||||||
"visibility_modal.quote_public": "所有人"
|
"visibility_modal.quote_public": "所有人",
|
||||||
|
"visibility_modal.save": "儲存"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -39,6 +39,8 @@ export type NotificationGroupMention = BaseNotificationWithStatus<'mention'>;
|
||||||
export type NotificationGroupQuote = BaseNotificationWithStatus<'quote'>;
|
export type NotificationGroupQuote = BaseNotificationWithStatus<'quote'>;
|
||||||
export type NotificationGroupPoll = BaseNotificationWithStatus<'poll'>;
|
export type NotificationGroupPoll = BaseNotificationWithStatus<'poll'>;
|
||||||
export type NotificationGroupUpdate = BaseNotificationWithStatus<'update'>;
|
export type NotificationGroupUpdate = BaseNotificationWithStatus<'update'>;
|
||||||
|
export type NotificationGroupQuotedUpdate =
|
||||||
|
BaseNotificationWithStatus<'quoted_update'>;
|
||||||
export type NotificationGroupFollow = BaseNotification<'follow'>;
|
export type NotificationGroupFollow = BaseNotification<'follow'>;
|
||||||
export type NotificationGroupFollowRequest = BaseNotification<'follow_request'>;
|
export type NotificationGroupFollowRequest = BaseNotification<'follow_request'>;
|
||||||
export type NotificationGroupAdminSignUp = BaseNotification<'admin.sign_up'>;
|
export type NotificationGroupAdminSignUp = BaseNotification<'admin.sign_up'>;
|
||||||
|
|
@ -91,6 +93,7 @@ export type NotificationGroup =
|
||||||
| NotificationGroupQuote
|
| NotificationGroupQuote
|
||||||
| NotificationGroupPoll
|
| NotificationGroupPoll
|
||||||
| NotificationGroupUpdate
|
| NotificationGroupUpdate
|
||||||
|
| NotificationGroupQuotedUpdate
|
||||||
| NotificationGroupFollow
|
| NotificationGroupFollow
|
||||||
| NotificationGroupFollowRequest
|
| NotificationGroupFollowRequest
|
||||||
| NotificationGroupModerationWarning
|
| NotificationGroupModerationWarning
|
||||||
|
|
@ -141,7 +144,8 @@ export function createNotificationGroupFromJSON(
|
||||||
case 'mention':
|
case 'mention':
|
||||||
case 'quote':
|
case 'quote':
|
||||||
case 'poll':
|
case 'poll':
|
||||||
case 'update': {
|
case 'update':
|
||||||
|
case 'quoted_update': {
|
||||||
const { status_id: statusId, ...groupWithoutStatus } = group;
|
const { status_id: statusId, ...groupWithoutStatus } = group;
|
||||||
return {
|
return {
|
||||||
statusId: statusId ?? undefined,
|
statusId: statusId ?? undefined,
|
||||||
|
|
@ -215,6 +219,7 @@ export function createNotificationGroupFromNotificationJSON(
|
||||||
case 'quote':
|
case 'quote':
|
||||||
case 'poll':
|
case 'poll':
|
||||||
case 'update':
|
case 'update':
|
||||||
|
case 'quoted_update':
|
||||||
return {
|
return {
|
||||||
...group,
|
...group,
|
||||||
type: notification.type,
|
type: notification.type,
|
||||||
|
|
|
||||||
|
|
@ -526,8 +526,13 @@ export const composeReducer = (state = initialState, action) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (action.status.get('poll')) {
|
if (action.status.get('poll')) {
|
||||||
|
let options = ImmutableList(action.status.get('poll').options.map(x => x.title));
|
||||||
|
if (options.size < action.maxOptions) {
|
||||||
|
options = options.push('');
|
||||||
|
}
|
||||||
|
|
||||||
map.set('poll', ImmutableMap({
|
map.set('poll', ImmutableMap({
|
||||||
options: ImmutableList(action.status.get('poll').options.map(x => x.title)),
|
options: options,
|
||||||
multiple: action.status.get('poll').multiple,
|
multiple: action.status.get('poll').multiple,
|
||||||
expires_in: expiresInFromExpiresAt(action.status.get('poll').expires_at),
|
expires_in: expiresInFromExpiresAt(action.status.get('poll').expires_at),
|
||||||
}));
|
}));
|
||||||
|
|
@ -558,8 +563,13 @@ export const composeReducer = (state = initialState, action) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (action.status.get('poll')) {
|
if (action.status.get('poll')) {
|
||||||
|
let options = ImmutableList(action.status.get('poll').options.map(x => x.title));
|
||||||
|
if (options.size < action.maxOptions) {
|
||||||
|
options = options.push('');
|
||||||
|
}
|
||||||
|
|
||||||
map.set('poll', ImmutableMap({
|
map.set('poll', ImmutableMap({
|
||||||
options: ImmutableList(action.status.get('poll').options.map(x => x.title)),
|
options: options,
|
||||||
multiple: action.status.get('poll').multiple,
|
multiple: action.status.get('poll').multiple,
|
||||||
expires_in: expiresInFromExpiresAt(action.status.get('poll').expires_at),
|
expires_in: expiresInFromExpiresAt(action.status.get('poll').expires_at),
|
||||||
}));
|
}));
|
||||||
|
|
|
||||||
|
|
@ -5668,9 +5668,20 @@ a.status-card {
|
||||||
z-index: 9999;
|
z-index: 9999;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__label.disabled {
|
&__label {
|
||||||
cursor: default;
|
cursor: pointer;
|
||||||
opacity: 0.5;
|
display: block;
|
||||||
|
|
||||||
|
> span {
|
||||||
|
display: block;
|
||||||
|
font-weight: 500;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.disabled {
|
||||||
|
cursor: default;
|
||||||
|
opacity: 0.5;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__button {
|
&__button {
|
||||||
|
|
@ -5988,17 +5999,6 @@ a.status-card {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal-root label {
|
|
||||||
cursor: pointer;
|
|
||||||
display: block;
|
|
||||||
|
|
||||||
> span {
|
|
||||||
display: block;
|
|
||||||
font-weight: 500;
|
|
||||||
margin-bottom: 8px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.video-modal .video-player {
|
.video-modal .video-player {
|
||||||
max-height: 80vh;
|
max-height: 80vh;
|
||||||
max-width: 100vw;
|
max-width: 100vw;
|
||||||
|
|
|
||||||
|
|
@ -68,6 +68,7 @@ export const statusFactory: FactoryFunction<ApiStatusJSON> = ({
|
||||||
url: 'https://example.com/status/1',
|
url: 'https://example.com/status/1',
|
||||||
replies_count: 0,
|
replies_count: 0,
|
||||||
reblogs_count: 0,
|
reblogs_count: 0,
|
||||||
|
quotes_count: 0,
|
||||||
favorites_count: 0,
|
favorites_count: 0,
|
||||||
account: accountFactory(),
|
account: accountFactory(),
|
||||||
media_attachments: [],
|
media_attachments: [],
|
||||||
|
|
|
||||||
|
|
@ -77,6 +77,9 @@ class Notification < ApplicationRecord
|
||||||
quote: {
|
quote: {
|
||||||
filterable: true,
|
filterable: true,
|
||||||
}.freeze,
|
}.freeze,
|
||||||
|
quoted_update: {
|
||||||
|
filterable: false,
|
||||||
|
}.freeze,
|
||||||
}.freeze
|
}.freeze
|
||||||
|
|
||||||
TYPES = PROPERTIES.keys.freeze
|
TYPES = PROPERTIES.keys.freeze
|
||||||
|
|
@ -89,6 +92,7 @@ class Notification < ApplicationRecord
|
||||||
favourite: [favourite: :status],
|
favourite: [favourite: :status],
|
||||||
poll: [poll: :status],
|
poll: [poll: :status],
|
||||||
update: :status,
|
update: :status,
|
||||||
|
quoted_update: :status,
|
||||||
'admin.report': [report: :target_account],
|
'admin.report': [report: :target_account],
|
||||||
}.freeze
|
}.freeze
|
||||||
|
|
||||||
|
|
@ -120,7 +124,7 @@ class Notification < ApplicationRecord
|
||||||
|
|
||||||
def target_status
|
def target_status
|
||||||
case type
|
case type
|
||||||
when :status, :update
|
when :status, :update, :quoted_update
|
||||||
status
|
status
|
||||||
when :reblog
|
when :reblog
|
||||||
status&.reblog
|
status&.reblog
|
||||||
|
|
@ -172,7 +176,7 @@ class Notification < ApplicationRecord
|
||||||
cached_status = cached_statuses_by_id[notification.target_status.id]
|
cached_status = cached_statuses_by_id[notification.target_status.id]
|
||||||
|
|
||||||
case notification.type
|
case notification.type
|
||||||
when :status, :update
|
when :status, :update, :quoted_update
|
||||||
notification.status = cached_status
|
notification.status = cached_status
|
||||||
when :reblog
|
when :reblog
|
||||||
notification.status.reblog = cached_status
|
notification.status.reblog = cached_status
|
||||||
|
|
@ -202,7 +206,9 @@ class Notification < ApplicationRecord
|
||||||
return unless new_record?
|
return unless new_record?
|
||||||
|
|
||||||
case activity_type
|
case activity_type
|
||||||
when 'Status', 'Follow', 'Favourite', 'FollowRequest', 'Poll', 'Report', 'Quote'
|
when 'Status'
|
||||||
|
self.from_account_id = type == :quoted_update ? activity&.quote&.quoted_account_id : activity&.account_id
|
||||||
|
when 'Follow', 'Favourite', 'FollowRequest', 'Poll', 'Report', 'Quote'
|
||||||
self.from_account_id = activity&.account_id
|
self.from_account_id = activity&.account_id
|
||||||
when 'Mention'
|
when 'Mention'
|
||||||
self.from_account_id = activity&.status&.account_id
|
self.from_account_id = activity&.status&.account_id
|
||||||
|
|
|
||||||
|
|
@ -40,6 +40,10 @@ class Quote < ApplicationRecord
|
||||||
validates :approval_uri, absence: true, if: -> { quoted_account&.local? }
|
validates :approval_uri, absence: true, if: -> { quoted_account&.local? }
|
||||||
validate :validate_visibility
|
validate :validate_visibility
|
||||||
|
|
||||||
|
after_create_commit :increment_counter_caches!
|
||||||
|
after_destroy_commit :decrement_counter_caches!
|
||||||
|
after_update_commit :update_counter_caches!
|
||||||
|
|
||||||
def accept!
|
def accept!
|
||||||
update!(state: :accepted)
|
update!(state: :accepted)
|
||||||
end
|
end
|
||||||
|
|
@ -84,4 +88,27 @@ class Quote < ApplicationRecord
|
||||||
def set_activity_uri
|
def set_activity_uri
|
||||||
self.activity_uri = [ActivityPub::TagManager.instance.uri_for(account), '/quote_requests/', SecureRandom.uuid].join
|
self.activity_uri = [ActivityPub::TagManager.instance.uri_for(account), '/quote_requests/', SecureRandom.uuid].join
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def increment_counter_caches!
|
||||||
|
return unless acceptable?
|
||||||
|
|
||||||
|
quoted_status&.increment_count!(:quotes_count)
|
||||||
|
end
|
||||||
|
|
||||||
|
def decrement_counter_caches!
|
||||||
|
return unless acceptable?
|
||||||
|
|
||||||
|
quoted_status&.decrement_count!(:quotes_count)
|
||||||
|
end
|
||||||
|
|
||||||
|
def update_counter_caches!
|
||||||
|
return if legacy? || !state_previously_changed?
|
||||||
|
|
||||||
|
if acceptable?
|
||||||
|
quoted_status&.increment_count!(:quotes_count)
|
||||||
|
else
|
||||||
|
# TODO: are there cases where this would not be correct?
|
||||||
|
quoted_status&.decrement_count!(:quotes_count)
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,6 @@ class RuleTranslation < ApplicationRecord
|
||||||
scope :by_language_length, -> { order(Arel.sql('LENGTH(LANGUAGE)').desc) }
|
scope :by_language_length, -> { order(Arel.sql('LENGTH(LANGUAGE)').desc) }
|
||||||
|
|
||||||
def self.languages
|
def self.languages
|
||||||
RuleTranslation.joins(:rule).merge(Rule.kept).select(:language).distinct.pluck(:language).sort
|
joins(:rule).merge(Rule.kept).distinct.pluck(:language).sort
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
||||||
|
|
@ -301,6 +301,10 @@ class Status < ApplicationRecord
|
||||||
status_stat&.favourites_count || 0
|
status_stat&.favourites_count || 0
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def quotes_count
|
||||||
|
status_stat&.quotes_count || 0
|
||||||
|
end
|
||||||
|
|
||||||
# Reblogs count received from an external instance
|
# Reblogs count received from an external instance
|
||||||
def untrusted_reblogs_count
|
def untrusted_reblogs_count
|
||||||
status_stat&.untrusted_reblogs_count unless local?
|
status_stat&.untrusted_reblogs_count unless local?
|
||||||
|
|
|
||||||
|
|
@ -5,14 +5,15 @@
|
||||||
# Table name: status_stats
|
# Table name: status_stats
|
||||||
#
|
#
|
||||||
# id :bigint(8) not null, primary key
|
# id :bigint(8) not null, primary key
|
||||||
# status_id :bigint(8) not null
|
|
||||||
# replies_count :bigint(8) default(0), not null
|
|
||||||
# reblogs_count :bigint(8) default(0), not null
|
|
||||||
# favourites_count :bigint(8) default(0), not null
|
# favourites_count :bigint(8) default(0), not null
|
||||||
# created_at :datetime not null
|
# quotes_count :bigint(8) default(0), not null
|
||||||
# updated_at :datetime not null
|
# reblogs_count :bigint(8) default(0), not null
|
||||||
|
# replies_count :bigint(8) default(0), not null
|
||||||
# untrusted_favourites_count :bigint(8)
|
# untrusted_favourites_count :bigint(8)
|
||||||
# untrusted_reblogs_count :bigint(8)
|
# untrusted_reblogs_count :bigint(8)
|
||||||
|
# created_at :datetime not null
|
||||||
|
# updated_at :datetime not null
|
||||||
|
# status_id :bigint(8) not null
|
||||||
#
|
#
|
||||||
|
|
||||||
class StatusStat < ApplicationRecord
|
class StatusStat < ApplicationRecord
|
||||||
|
|
@ -34,6 +35,10 @@ class StatusStat < ApplicationRecord
|
||||||
[attributes['favourites_count'], 0].max
|
[attributes['favourites_count'], 0].max
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def quotes_count
|
||||||
|
[attributes['quotes_count'], 0].max
|
||||||
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def clamp_untrusted_counts
|
def clamp_untrusted_counts
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@ class REST::NotificationGroupSerializer < ActiveModel::Serializer
|
||||||
end
|
end
|
||||||
|
|
||||||
def status_type?
|
def status_type?
|
||||||
[:favourite, :reblog, :status, :mention, :poll, :update, :quote].include?(object.type)
|
[:favourite, :reblog, :status, :mention, :poll, :update, :quote, :quoted_update].include?(object.type)
|
||||||
end
|
end
|
||||||
|
|
||||||
def report_type?
|
def report_type?
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ class REST::StatusSerializer < ActiveModel::Serializer
|
||||||
attributes :id, :created_at, :in_reply_to_id, :in_reply_to_account_id,
|
attributes :id, :created_at, :in_reply_to_id, :in_reply_to_account_id,
|
||||||
:sensitive, :spoiler_text, :visibility, :language,
|
:sensitive, :spoiler_text, :visibility, :language,
|
||||||
:uri, :url, :replies_count, :reblogs_count,
|
:uri, :url, :replies_count, :reblogs_count,
|
||||||
:favourites_count, :edited_at
|
:favourites_count, :quotes_count, :edited_at
|
||||||
|
|
||||||
attribute :favourited, if: :current_user?
|
attribute :favourited, if: :current_user?
|
||||||
attribute :reblogged, if: :current_user?
|
attribute :reblogged, if: :current_user?
|
||||||
|
|
@ -99,6 +99,10 @@ class REST::StatusSerializer < ActiveModel::Serializer
|
||||||
object.untrusted_favourites_count || relationships&.attributes_map&.dig(object.id, :favourites_count) || object.favourites_count
|
object.untrusted_favourites_count || relationships&.attributes_map&.dig(object.id, :favourites_count) || object.favourites_count
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def quotes_count
|
||||||
|
relationships&.attributes_map&.dig(object.id, :quotes_count) || object.quotes_count
|
||||||
|
end
|
||||||
|
|
||||||
def favourited
|
def favourited
|
||||||
if relationships
|
if relationships
|
||||||
relationships.favourites_map[object.id] || false
|
relationships.favourites_map[object.id] || false
|
||||||
|
|
|
||||||
|
|
@ -307,7 +307,7 @@ class ActivityPub::ProcessStatusUpdateService < BaseService
|
||||||
@quote_changed = true
|
@quote_changed = true
|
||||||
else
|
else
|
||||||
quote = @status.quote
|
quote = @status.quote
|
||||||
quote.update(approval_uri: approval_uri, state: :pending, legacy: @status_parser.legacy_quote?) if quote.approval_uri != @status_parser.quote_approval_uri
|
quote.update(approval_uri: approval_uri, state: :pending, legacy: @status_parser.legacy_quote?) if quote.approval_uri != approval_uri
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
quote = Quote.create(status: @status, approval_uri: approval_uri, legacy: @status_parser.legacy_quote?)
|
quote = Quote.create(status: @status, approval_uri: approval_uri, legacy: @status_parser.legacy_quote?)
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ class ActivityPub::VerifyQuoteService < BaseService
|
||||||
@fetching_error = nil
|
@fetching_error = nil
|
||||||
|
|
||||||
fetch_quoted_post_if_needed!(fetchable_quoted_uri, prefetched_body: prefetched_quoted_object)
|
fetch_quoted_post_if_needed!(fetchable_quoted_uri, prefetched_body: prefetched_quoted_object)
|
||||||
return handle_local_quote! if quote.quoted_account&.local?
|
return if quote.quoted_account&.local?
|
||||||
return if fast_track_approval! || quote.approval_uri.blank?
|
return if fast_track_approval! || quote.approval_uri.blank?
|
||||||
|
|
||||||
@json = fetch_approval_object(quote.approval_uri, prefetched_body: prefetched_approval)
|
@json = fetch_approval_object(quote.approval_uri, prefetched_body: prefetched_approval)
|
||||||
|
|
@ -35,15 +35,6 @@ class ActivityPub::VerifyQuoteService < BaseService
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def handle_local_quote!
|
|
||||||
@quote.update!(approval_uri: nil)
|
|
||||||
if StatusPolicy.new(@quote.account, @quote.quoted_status).quote?
|
|
||||||
@quote.accept!
|
|
||||||
else
|
|
||||||
@quote.reject!
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
# FEP-044f defines rules that don't require the approval flow
|
# FEP-044f defines rules that don't require the approval flow
|
||||||
def fast_track_approval!
|
def fast_track_approval!
|
||||||
return false if @quote.quoted_status_id.blank?
|
return false if @quote.quoted_status_id.blank?
|
||||||
|
|
|
||||||
|
|
@ -99,6 +99,12 @@ class FanOutOnWriteService < BaseService
|
||||||
[account.id, @status.id, 'Status', 'update']
|
[account.id, @status.id, 'Status', 'update']
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@status.quotes.accepted.find_in_batches do |quotes|
|
||||||
|
LocalNotificationWorker.push_bulk(quotes) do |quote|
|
||||||
|
[quote.account_id, quote.status_id, 'Status', 'quoted_update']
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def deliver_to_all_followers!
|
def deliver_to_all_followers!
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,7 @@ class NotifyService < BaseService
|
||||||
admin.report
|
admin.report
|
||||||
admin.sign_up
|
admin.sign_up
|
||||||
update
|
update
|
||||||
|
quoted_update
|
||||||
poll
|
poll
|
||||||
status
|
status
|
||||||
moderation_warning
|
moderation_warning
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
- content_for :page_title do
|
- content_for :page_title do
|
||||||
= t('admin.domain_blocks.edit')
|
= t('admin.domain_blocks.edit')
|
||||||
|
|
||||||
= simple_form_for @domain_block, url: admin_domain_block_path(@domain_block), method: :put do |form|
|
= simple_form_for @domain_block, url: admin_domain_block_path(@domain_block) do |form|
|
||||||
= render 'shared/error_messages', object: @domain_block
|
= render 'shared/error_messages', object: @domain_block
|
||||||
|
|
||||||
= render form
|
= render form
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
- content_for :page_title do
|
- content_for :page_title do
|
||||||
= t('filters.edit.title')
|
= t('filters.edit.title')
|
||||||
|
|
||||||
= simple_form_for @filter, url: filter_path(@filter), method: :put do |f|
|
= simple_form_for @filter, url: filter_path(@filter) do |f|
|
||||||
= render 'filter_fields', f: f
|
= render 'filter_fields', f: f
|
||||||
|
|
||||||
.actions
|
.actions
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@
|
||||||
= vite_react_refresh_tag
|
= vite_react_refresh_tag
|
||||||
= vite_polyfills_tag
|
= vite_polyfills_tag
|
||||||
-# Needed for the wicg-inert polyfill. It needs to be on it's own <style> tag, with this `id`
|
-# Needed for the wicg-inert polyfill. It needs to be on it's own <style> tag, with this `id`
|
||||||
= vite_stylesheet_tag 'styles/entrypoints/inert.scss', media: 'all', id: 'inert-style'
|
= vite_stylesheet_tag 'styles/entrypoints/inert.scss', media: 'all', id: 'inert-style', crossorigin: 'anonymous'
|
||||||
= vite_typescript_tag 'common.ts', crossorigin: 'anonymous'
|
= vite_typescript_tag 'common.ts', crossorigin: 'anonymous'
|
||||||
|
|
||||||
= vite_preload_file_tag "mastodon/locales/#{I18n.locale}.json"
|
= vite_preload_file_tag "mastodon/locales/#{I18n.locale}.json"
|
||||||
|
|
|
||||||
|
|
@ -17,38 +17,36 @@
|
||||||
|
|
||||||
%h4= t 'preferences.posting_defaults'
|
%h4= t 'preferences.posting_defaults'
|
||||||
|
|
||||||
.fields-row
|
.fields-group
|
||||||
.fields-group.fields-row__column.fields-row__column-6
|
= ff.input :default_privacy,
|
||||||
= ff.input :default_privacy,
|
collection: Status.selectable_visibilities,
|
||||||
collection: Status.selectable_visibilities,
|
selected: current_user.setting_default_privacy,
|
||||||
selected: current_user.setting_default_privacy,
|
hint: false,
|
||||||
hint: false,
|
include_blank: false,
|
||||||
include_blank: false,
|
label_method: ->(visibility) { safe_join([I18n.t("statuses.visibilities.#{visibility}"), I18n.t("statuses.visibilities.#{visibility}_long")], ' - ') },
|
||||||
label_method: ->(visibility) { safe_join([I18n.t("statuses.visibilities.#{visibility}"), I18n.t("statuses.visibilities.#{visibility}_long")], ' - ') },
|
label: I18n.t('simple_form.labels.defaults.setting_default_privacy'),
|
||||||
label: I18n.t('simple_form.labels.defaults.setting_default_privacy'),
|
required: false,
|
||||||
required: false,
|
wrapper: :with_label
|
||||||
wrapper: :with_label
|
|
||||||
|
|
||||||
.fields-group.fields-row__column.fields-row__column-6
|
.fields-group
|
||||||
= ff.input :default_language,
|
= ff.input :default_quote_policy,
|
||||||
collection: [nil] + filterable_languages,
|
collection: %w(public followers nobody),
|
||||||
hint: false,
|
include_blank: false,
|
||||||
include_blank: false,
|
label_method: ->(policy) { I18n.t("statuses.quote_policies.#{policy}") },
|
||||||
label_method: ->(locale) { locale.nil? ? I18n.t('statuses.default_language') : native_locale_name(locale) },
|
label: I18n.t('simple_form.labels.defaults.setting_default_quote_policy'),
|
||||||
label: I18n.t('simple_form.labels.defaults.setting_default_language'),
|
hint: I18n.t('simple_form.hints.defaults.setting_default_quote_policy'),
|
||||||
required: false,
|
required: false,
|
||||||
wrapper: :with_label
|
wrapper: :with_label
|
||||||
|
|
||||||
.fields-row
|
.fields-group
|
||||||
.fields-group.fields-row__column.fields-row__column-6
|
= ff.input :default_language,
|
||||||
= ff.input :default_quote_policy,
|
collection: [nil] + filterable_languages,
|
||||||
collection: %w(public followers nobody),
|
hint: false,
|
||||||
include_blank: false,
|
include_blank: false,
|
||||||
label_method: ->(policy) { I18n.t("statuses.quote_policies.#{policy}") },
|
label_method: ->(locale) { locale.nil? ? I18n.t('statuses.default_language') : native_locale_name(locale) },
|
||||||
label: I18n.t('simple_form.labels.defaults.setting_default_quote_policy'),
|
label: I18n.t('simple_form.labels.defaults.setting_default_language'),
|
||||||
hint: I18n.t('simple_form.hints.defaults.setting_default_quote_policy'),
|
required: false,
|
||||||
required: false,
|
wrapper: :with_label
|
||||||
wrapper: :with_label
|
|
||||||
|
|
||||||
.fields-group
|
.fields-group
|
||||||
= ff.input :default_sensitive,
|
= ff.input :default_sensitive,
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,8 @@ class LocalNotificationWorker
|
||||||
# should replace the previous ones.
|
# should replace the previous ones.
|
||||||
if type == 'update'
|
if type == 'update'
|
||||||
Notification.where(account: receiver, activity: activity, type: 'update').in_batches.delete_all
|
Notification.where(account: receiver, activity: activity, type: 'update').in_batches.delete_all
|
||||||
|
elsif type == 'quoted_update'
|
||||||
|
Notification.where(account: receiver, activity: activity, type: 'quoted_update').in_batches.delete_all
|
||||||
elsif Notification.where(account: receiver, activity: activity, type: type).any?
|
elsif Notification.where(account: receiver, activity: activity, type: type).any?
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
|
||||||
|
|
@ -314,7 +314,6 @@ an:
|
||||||
title: Emojis personalizaus
|
title: Emojis personalizaus
|
||||||
uncategorized: Sin clasificar
|
uncategorized: Sin clasificar
|
||||||
unlist: No listau
|
unlist: No listau
|
||||||
unlisted: Sin listar
|
|
||||||
update_failed_msg: No se podió actualizar ixe emoji
|
update_failed_msg: No se podió actualizar ixe emoji
|
||||||
updated_msg: Emoji actualizau con exito!
|
updated_msg: Emoji actualizau con exito!
|
||||||
upload: Puyar
|
upload: Puyar
|
||||||
|
|
@ -1410,13 +1409,10 @@ an:
|
||||||
reblog: Un boost no puede fixar-se
|
reblog: Un boost no puede fixar-se
|
||||||
title: "%{name}: «%{quote}»"
|
title: "%{name}: «%{quote}»"
|
||||||
visibilities:
|
visibilities:
|
||||||
direct: Directa
|
|
||||||
private: Nomás amostrar a seguidores
|
private: Nomás amostrar a seguidores
|
||||||
private_long: Nomás amostrar a las tuyas seguidores
|
private_long: Nomás amostrar a las tuyas seguidores
|
||||||
public: Publico
|
public: Publico
|
||||||
public_long: Totz pueden veyer
|
|
||||||
unlisted: Publico, pero no amostrar en a historia federada
|
unlisted: Publico, pero no amostrar en a historia federada
|
||||||
unlisted_long: Totz pueden veyer, pero no ye listau en as linias de tiempo publicas
|
|
||||||
statuses_cleanup:
|
statuses_cleanup:
|
||||||
enabled: Borrar automaticament publicacions antigas
|
enabled: Borrar automaticament publicacions antigas
|
||||||
enabled_hint: Elimina automaticament las tuyas publicacions una vegada que aconsigan un branquil de tiempo especificau, de no estar que coincidan con bella d'as excepcions detalladas debaixo
|
enabled_hint: Elimina automaticament las tuyas publicacions una vegada que aconsigan un branquil de tiempo especificau, de no estar que coincidan con bella d'as excepcions detalladas debaixo
|
||||||
|
|
|
||||||
|
|
@ -373,7 +373,6 @@ ar:
|
||||||
title: الإيموجي الخاصة
|
title: الإيموجي الخاصة
|
||||||
uncategorized: غير مصنّف
|
uncategorized: غير مصنّف
|
||||||
unlist: تنحية مِن القائمة
|
unlist: تنحية مِن القائمة
|
||||||
unlisted: غير مدرج
|
|
||||||
update_failed_msg: تعذرت عملية تحديث ذاك الإيموجي
|
update_failed_msg: تعذرت عملية تحديث ذاك الإيموجي
|
||||||
updated_msg: تم تحديث الإيموجي بنجاح!
|
updated_msg: تم تحديث الإيموجي بنجاح!
|
||||||
upload: رفع
|
upload: رفع
|
||||||
|
|
@ -2046,17 +2045,12 @@ ar:
|
||||||
limit: لقد بلغت الحد الأقصى للمنشورات المثبتة
|
limit: لقد بلغت الحد الأقصى للمنشورات المثبتة
|
||||||
ownership: لا يمكن تثبيت منشور نشره شخص آخر
|
ownership: لا يمكن تثبيت منشور نشره شخص آخر
|
||||||
reblog: لا يمكن تثبيت إعادة نشر
|
reblog: لا يمكن تثبيت إعادة نشر
|
||||||
quote_policies:
|
|
||||||
public: الجميع
|
|
||||||
title: '%{name}: "%{quote}"'
|
title: '%{name}: "%{quote}"'
|
||||||
visibilities:
|
visibilities:
|
||||||
direct: مباشرة
|
|
||||||
private: لمتابِعيك فقط
|
private: لمتابِعيك فقط
|
||||||
private_long: اعرضه لمتابعيك فقط
|
private_long: اعرضه لمتابعيك فقط
|
||||||
public: للعامة
|
public: للعامة
|
||||||
public_long: يمكن للجميع رؤية منشوراتك
|
|
||||||
unlisted: غير مُدرَج
|
unlisted: غير مُدرَج
|
||||||
unlisted_long: يُمكن لأيٍ كان رُؤيتَه و لكن لن يُعرَض على الخيوط العامة
|
|
||||||
statuses_cleanup:
|
statuses_cleanup:
|
||||||
enabled: حذف المنشورات القديمة تلقائياً
|
enabled: حذف المنشورات القديمة تلقائياً
|
||||||
enabled_hint: حذف منشوراتك تلقائياً بمجرد أن تصل إلى عتبة عمرية محددة، إلا إذا كانت مطابقة لأحد الاستثناءات أدناه
|
enabled_hint: حذف منشوراتك تلقائياً بمجرد أن تصل إلى عتبة عمرية محددة، إلا إذا كانت مطابقة لأحد الاستثناءات أدناه
|
||||||
|
|
|
||||||
|
|
@ -811,11 +811,8 @@ ast:
|
||||||
reblog: Nun se pue fixar una publicación compartida
|
reblog: Nun se pue fixar una publicación compartida
|
||||||
title: "%{name}: «%{quote}»"
|
title: "%{name}: «%{quote}»"
|
||||||
visibilities:
|
visibilities:
|
||||||
direct: Mensaxe direutu
|
|
||||||
private: Namás siguidores
|
private: Namás siguidores
|
||||||
private_long: Namás los ven los perfiles siguidores
|
private_long: Namás los ven los perfiles siguidores
|
||||||
public_long: Tol mundu pue velos
|
|
||||||
unlisted_long: Tol mundu pue velos, mas nun apaecen nes llinies de tiempu públiques
|
|
||||||
statuses_cleanup:
|
statuses_cleanup:
|
||||||
exceptions: Esceiciones
|
exceptions: Esceiciones
|
||||||
interaction_exceptions: Esceiciones basaes nes interaiciones
|
interaction_exceptions: Esceiciones basaes nes interaiciones
|
||||||
|
|
|
||||||
|
|
@ -283,14 +283,9 @@ az:
|
||||||
default_language: İnterfeys dili ilə eyni
|
default_language: İnterfeys dili ilə eyni
|
||||||
pin_errors:
|
pin_errors:
|
||||||
reblog: Təkrar paylaşım, sancıla bilməz
|
reblog: Təkrar paylaşım, sancıla bilməz
|
||||||
quote_policies:
|
|
||||||
followers: Yalnız izləyiciləriniz
|
|
||||||
public: Hər kəs
|
|
||||||
visibilities:
|
visibilities:
|
||||||
private: Yalnız izləyicilər
|
private: Yalnız izləyicilər
|
||||||
private_long: Yalnız izləyicilər görə bilər
|
private_long: Yalnız izləyicilər görə bilər
|
||||||
public_long: Hər kəs görə bilər
|
|
||||||
unlisted_long: Hər kəs görə bilər, ancaq hər kəsə açıq zaman xətlərində sadalanmır
|
|
||||||
statuses_cleanup:
|
statuses_cleanup:
|
||||||
enabled: Köhnə göndərişləri avtomatik sil
|
enabled: Köhnə göndərişləri avtomatik sil
|
||||||
enabled_hint: Aşağıdakı istisnalardan heç birinə uyuşmadığı müddətcə, göndərişləriniz qeyd edilmiş yaş həddinə çatdıqda avtomatik silinir
|
enabled_hint: Aşağıdakı istisnalardan heç birinə uyuşmadığı müddətcə, göndərişləriniz qeyd edilmiş yaş həddinə çatdıqda avtomatik silinir
|
||||||
|
|
|
||||||
|
|
@ -373,7 +373,6 @@ be:
|
||||||
title: Адвольныя эмодзі
|
title: Адвольныя эмодзі
|
||||||
uncategorized: Без катэгорыі
|
uncategorized: Без катэгорыі
|
||||||
unlist: Прыбраць
|
unlist: Прыбраць
|
||||||
unlisted: Не ў стужках
|
|
||||||
update_failed_msg: Немагчыма абнавіць гэта эмодзі
|
update_failed_msg: Немагчыма абнавіць гэта эмодзі
|
||||||
updated_msg: Смайлік паспяхова абноўлены!
|
updated_msg: Смайлік паспяхова абноўлены!
|
||||||
upload: Запампаваць
|
upload: Запампаваць
|
||||||
|
|
@ -1994,19 +1993,13 @@ be:
|
||||||
limit: Вы ўжо замацавалі максімальную колькасць допісаў
|
limit: Вы ўжо замацавалі максімальную колькасць допісаў
|
||||||
ownership: Немагчыма замацаваць чужы допіс
|
ownership: Немагчыма замацаваць чужы допіс
|
||||||
reblog: Немагчыма замацаваць пашырэнне
|
reblog: Немагчыма замацаваць пашырэнне
|
||||||
quote_policies:
|
|
||||||
followers: Толькі Вашыя падпісчыкі
|
|
||||||
nobody: Ніхто
|
|
||||||
public: Усе
|
|
||||||
title: '%{name}: "%{quote}"'
|
title: '%{name}: "%{quote}"'
|
||||||
visibilities:
|
visibilities:
|
||||||
direct: Асабіста
|
direct: Прыватнае згадванне
|
||||||
private: Для падпісчыкаў
|
private: Для падпісчыкаў
|
||||||
private_long: Паказваць толькі падпісчыкам
|
private_long: Паказваць толькі падпісчыкам
|
||||||
public: Публічны
|
public: Публічны
|
||||||
public_long: Усе могуць бачыць
|
|
||||||
unlisted: Не ў спісе
|
unlisted: Не ў спісе
|
||||||
unlisted_long: Усе могуць пабачыць гэты допіс, але ён не паказваецца ў публічных стужках
|
|
||||||
statuses_cleanup:
|
statuses_cleanup:
|
||||||
enabled: Аўтаматычна выдаляць старыя допісы
|
enabled: Аўтаматычна выдаляць старыя допісы
|
||||||
enabled_hint: Аўтаматычна выдаляць вашыя допісы, калі яны дасягаюць вызначанага тэрміну, акрамя наступных выпадкаў
|
enabled_hint: Аўтаматычна выдаляць вашыя допісы, калі яны дасягаюць вызначанага тэрміну, акрамя наступных выпадкаў
|
||||||
|
|
|
||||||
|
|
@ -359,7 +359,6 @@ bg:
|
||||||
title: Потребителски емоджита
|
title: Потребителски емоджита
|
||||||
uncategorized: Некатегоризирано
|
uncategorized: Некатегоризирано
|
||||||
unlist: Премахване от списъка
|
unlist: Премахване от списъка
|
||||||
unlisted: Извънсписъчно
|
|
||||||
update_failed_msg: Не може да се обнови това емоджи
|
update_failed_msg: Не може да се обнови това емоджи
|
||||||
updated_msg: Успешно осъвременено емоджи!
|
updated_msg: Успешно осъвременено емоджи!
|
||||||
upload: Качване
|
upload: Качване
|
||||||
|
|
@ -1892,19 +1891,12 @@ bg:
|
||||||
limit: Вече сте закачили максималния брой публикации
|
limit: Вече сте закачили максималния брой публикации
|
||||||
ownership: Публикация на някого другиго не може да бъде закачена
|
ownership: Публикация на някого другиго не може да бъде закачена
|
||||||
reblog: Раздуване не може да бъде закачано
|
reblog: Раздуване не може да бъде закачано
|
||||||
quote_policies:
|
|
||||||
followers: Само последователите ви
|
|
||||||
nobody: Никого
|
|
||||||
public: Всеки
|
|
||||||
title: "%{name}: „%{quote}“"
|
title: "%{name}: „%{quote}“"
|
||||||
visibilities:
|
visibilities:
|
||||||
direct: Директно
|
|
||||||
private: Покажи само на последователите си
|
private: Покажи само на последователите си
|
||||||
private_long: Видими само за последователи
|
private_long: Видими само за последователи
|
||||||
public: Публично
|
public: Публично
|
||||||
public_long: Всеки ги вижда
|
|
||||||
unlisted: Публично, но не показвай в публичния канал
|
unlisted: Публично, но не показвай в публичния канал
|
||||||
unlisted_long: Всеки ги вижда, но са скрити от публичните хронологии
|
|
||||||
statuses_cleanup:
|
statuses_cleanup:
|
||||||
enabled: Автоматично изтриване на стари публикации
|
enabled: Автоматично изтриване на стари публикации
|
||||||
enabled_hint: От само себе си трие публикациите ви, щом достигнат указания възрастов праг, освен ако не съвпаднат с някое от изключенията долу
|
enabled_hint: От само себе си трие публикациите ви, щом достигнат указания възрастов праг, освен ако не съвпаднат с някое от изключенията долу
|
||||||
|
|
|
||||||
|
|
@ -183,7 +183,6 @@ bn:
|
||||||
title: স্বনির্ধারিত ইমোজিগুলি
|
title: স্বনির্ধারিত ইমোজিগুলি
|
||||||
uncategorized: শ্রেণীবিহীন
|
uncategorized: শ্রেণীবিহীন
|
||||||
unlist: তালিকামুক্ত
|
unlist: তালিকামুক্ত
|
||||||
unlisted: তালিকামুক্ত
|
|
||||||
update_failed_msg: সেই ইমোজি আপডেট করতে পারেনি
|
update_failed_msg: সেই ইমোজি আপডেট করতে পারেনি
|
||||||
updated_msg: ইমোজি সফলভাবে আপডেট হয়েছে!
|
updated_msg: ইমোজি সফলভাবে আপডেট হয়েছে!
|
||||||
upload: আপলোড
|
upload: আপলোড
|
||||||
|
|
|
||||||
|
|
@ -564,10 +564,7 @@ br:
|
||||||
quoted_status_not_found: War a seblant, n'eus ket eus an embannadenn emaoc'h o klask menegiñ.
|
quoted_status_not_found: War a seblant, n'eus ket eus an embannadenn emaoc'h o klask menegiñ.
|
||||||
pin_errors:
|
pin_errors:
|
||||||
ownership: N'hallit ket spilhennañ embannadurioù ar re all
|
ownership: N'hallit ket spilhennañ embannadurioù ar re all
|
||||||
quote_policies:
|
|
||||||
public: Pep den
|
|
||||||
visibilities:
|
visibilities:
|
||||||
direct: War-eeun
|
|
||||||
public: Publik
|
public: Publik
|
||||||
statuses_cleanup:
|
statuses_cleanup:
|
||||||
keep_direct: Mirout ar c'hannadoù eeun
|
keep_direct: Mirout ar c'hannadoù eeun
|
||||||
|
|
|
||||||
|
|
@ -361,7 +361,6 @@ ca:
|
||||||
title: Emojis personalitzats
|
title: Emojis personalitzats
|
||||||
uncategorized: Sense categoria
|
uncategorized: Sense categoria
|
||||||
unlist: No llistat
|
unlist: No llistat
|
||||||
unlisted: Sense classificar
|
|
||||||
update_failed_msg: No s'ha pogut actualitzar aquest emoji
|
update_failed_msg: No s'ha pogut actualitzar aquest emoji
|
||||||
updated_msg: Emoji s'ha actualitzat correctament!
|
updated_msg: Emoji s'ha actualitzat correctament!
|
||||||
upload: Carrega
|
upload: Carrega
|
||||||
|
|
@ -1881,19 +1880,13 @@ ca:
|
||||||
limit: Ja has fixat el màxim nombre de tuts
|
limit: Ja has fixat el màxim nombre de tuts
|
||||||
ownership: No es pot fixar el tut d'algú altre
|
ownership: No es pot fixar el tut d'algú altre
|
||||||
reblog: No es pot fixar un impuls
|
reblog: No es pot fixar un impuls
|
||||||
quote_policies:
|
|
||||||
followers: Només els vostres seguidors
|
|
||||||
nobody: Ningú
|
|
||||||
public: Tothom
|
|
||||||
title: '%{name}: "%{quote}"'
|
title: '%{name}: "%{quote}"'
|
||||||
visibilities:
|
visibilities:
|
||||||
direct: Directe
|
direct: Menció privada
|
||||||
private: Només seguidors
|
private: Només seguidors
|
||||||
private_long: Mostra només als seguidors
|
private_long: Mostra només als seguidors
|
||||||
public: Públic
|
public: Públic
|
||||||
public_long: Tothom pot veure-ho
|
|
||||||
unlisted: No llistat
|
unlisted: No llistat
|
||||||
unlisted_long: Tothom ho pot veure, però no es mostra en les línies de temps públiques
|
|
||||||
statuses_cleanup:
|
statuses_cleanup:
|
||||||
enabled: Esborra automàticament tuts antics
|
enabled: Esborra automàticament tuts antics
|
||||||
enabled_hint: Suprimeix automàticament els teus tuts quan arribin a un llindar d’edat especificat, tret que coincideixin amb una de les excepcions següents
|
enabled_hint: Suprimeix automàticament els teus tuts quan arribin a un llindar d’edat especificat, tret que coincideixin amb una de les excepcions següents
|
||||||
|
|
|
||||||
|
|
@ -258,7 +258,6 @@ ckb:
|
||||||
title: ئیمۆجی دڵخواز
|
title: ئیمۆجی دڵخواز
|
||||||
uncategorized: هاوپۆل نەکراوە
|
uncategorized: هاوپۆل نەکراوە
|
||||||
unlist: بێ پێرست
|
unlist: بێ پێرست
|
||||||
unlisted: پێرست نەبووە
|
|
||||||
update_failed_msg: نه یتوانی ئه و ئیمۆجییه نوێ بکاتەوە
|
update_failed_msg: نه یتوانی ئه و ئیمۆجییه نوێ بکاتەوە
|
||||||
updated_msg: ئیمۆجی بە سەرکەوتوویی نوێکرایەوە!
|
updated_msg: ئیمۆجی بە سەرکەوتوویی نوێکرایەوە!
|
||||||
upload: بارکردن
|
upload: بارکردن
|
||||||
|
|
@ -942,9 +941,7 @@ ckb:
|
||||||
private: شوێنکەوتوانی تەنها
|
private: شوێنکەوتوانی تەنها
|
||||||
private_long: تەنها بۆ شوێنکەوتوانی پیشان بدە
|
private_long: تەنها بۆ شوێنکەوتوانی پیشان بدە
|
||||||
public: گشتی
|
public: گشتی
|
||||||
public_long: هەموو کەس دەتوانێت ببینێت
|
|
||||||
unlisted: پێرست نەبووە
|
unlisted: پێرست نەبووە
|
||||||
unlisted_long: هەموو کەس دەتوانێت بیبینێت، بەڵام لە هێڵی کاتی گشتی دا نەریزراوە
|
|
||||||
stream_entries:
|
stream_entries:
|
||||||
sensitive_content: ناوەڕۆکی هەستیار
|
sensitive_content: ناوەڕۆکی هەستیار
|
||||||
tags:
|
tags:
|
||||||
|
|
|
||||||
|
|
@ -268,7 +268,6 @@ co:
|
||||||
title: Emoji parsunalizate
|
title: Emoji parsunalizate
|
||||||
uncategorized: Micca categurizatu
|
uncategorized: Micca categurizatu
|
||||||
unlist: Slistà
|
unlist: Slistà
|
||||||
unlisted: Micca listata
|
|
||||||
update_failed_msg: Ùn s’hè micca pussutu mette à ghjornu l’emoji
|
update_failed_msg: Ùn s’hè micca pussutu mette à ghjornu l’emoji
|
||||||
updated_msg: L’emoji hè stata messa à ghjornu!
|
updated_msg: L’emoji hè stata messa à ghjornu!
|
||||||
upload: Caricà
|
upload: Caricà
|
||||||
|
|
@ -924,13 +923,10 @@ co:
|
||||||
reblog: Ùn pudete micca puntarulà una spartera
|
reblog: Ùn pudete micca puntarulà una spartera
|
||||||
title: '%{name}: "%{quote}"'
|
title: '%{name}: "%{quote}"'
|
||||||
visibilities:
|
visibilities:
|
||||||
direct: Direttu
|
|
||||||
private: Solu per l’abbunati
|
private: Solu per l’abbunati
|
||||||
private_long: Mustrà solu à l’abbunati
|
private_long: Mustrà solu à l’abbunati
|
||||||
public: Pubblicu
|
public: Pubblicu
|
||||||
public_long: Tuttu u mondu pò vede
|
|
||||||
unlisted: Micca listatu
|
unlisted: Micca listatu
|
||||||
unlisted_long: Tuttu u mondu pò vede, mà micca indè e linee pubbliche
|
|
||||||
statuses_cleanup:
|
statuses_cleanup:
|
||||||
exceptions: Eccezzione
|
exceptions: Eccezzione
|
||||||
keep_direct: Cunservà i missaghji diretti
|
keep_direct: Cunservà i missaghji diretti
|
||||||
|
|
|
||||||
|
|
@ -373,7 +373,6 @@ cs:
|
||||||
title: Vlastní emoji
|
title: Vlastní emoji
|
||||||
uncategorized: Nezařazeno
|
uncategorized: Nezařazeno
|
||||||
unlist: Neuvést
|
unlist: Neuvést
|
||||||
unlisted: Neuvedeno
|
|
||||||
update_failed_msg: Toto emoji nebylo možné aktualizovat
|
update_failed_msg: Toto emoji nebylo možné aktualizovat
|
||||||
updated_msg: Emoji úspěšně aktualizováno!
|
updated_msg: Emoji úspěšně aktualizováno!
|
||||||
upload: Nahrát
|
upload: Nahrát
|
||||||
|
|
@ -1994,19 +1993,13 @@ cs:
|
||||||
limit: Už jste si připnuli maximální počet příspěvků
|
limit: Už jste si připnuli maximální počet příspěvků
|
||||||
ownership: Nelze připnout příspěvek někoho jiného
|
ownership: Nelze připnout příspěvek někoho jiného
|
||||||
reblog: Boosty nelze připnout
|
reblog: Boosty nelze připnout
|
||||||
quote_policies:
|
|
||||||
followers: Pouze vaši sledující
|
|
||||||
nobody: Nikdo
|
|
||||||
public: Všichni
|
|
||||||
title: "%{name}: „%{quote}“"
|
title: "%{name}: „%{quote}“"
|
||||||
visibilities:
|
visibilities:
|
||||||
direct: Přímé
|
direct: Soukromá zmínka
|
||||||
private: Pouze pro sledující
|
private: Pouze pro sledující
|
||||||
private_long: Zobrazit pouze sledujícím
|
private_long: Zobrazit pouze sledujícím
|
||||||
public: Veřejné
|
public: Veřejné
|
||||||
public_long: Uvidí kdokoliv
|
|
||||||
unlisted: Neuvedené
|
unlisted: Neuvedené
|
||||||
unlisted_long: Uvidí kdokoliv, ale nebude zahrnut ve veřejných časových osách
|
|
||||||
statuses_cleanup:
|
statuses_cleanup:
|
||||||
enabled: Automaticky mazat staré příspěvky
|
enabled: Automaticky mazat staré příspěvky
|
||||||
enabled_hint: Automaticky maže vaše příspěvky poté, co dosáhnou stanoveného stáří, nesplňují-li některou z výjimek níže
|
enabled_hint: Automaticky maže vaše příspěvky poté, co dosáhnou stanoveného stáří, nesplňují-li některou z výjimek níže
|
||||||
|
|
|
||||||
|
|
@ -379,7 +379,6 @@ cy:
|
||||||
title: Emoji cyfaddas
|
title: Emoji cyfaddas
|
||||||
uncategorized: Heb gategori
|
uncategorized: Heb gategori
|
||||||
unlist: Dad-restru
|
unlist: Dad-restru
|
||||||
unlisted: Heb eu rhestru
|
|
||||||
update_failed_msg: Methwyd a diweddaru'r emoji hwnnw
|
update_failed_msg: Methwyd a diweddaru'r emoji hwnnw
|
||||||
updated_msg: Llwyddwyd i ddiweddaru'r emoji!
|
updated_msg: Llwyddwyd i ddiweddaru'r emoji!
|
||||||
upload: Llwytho
|
upload: Llwytho
|
||||||
|
|
@ -2079,19 +2078,12 @@ cy:
|
||||||
limit: Rydych chi eisoes wedi pinio uchafswm nifer y postiadau
|
limit: Rydych chi eisoes wedi pinio uchafswm nifer y postiadau
|
||||||
ownership: Nid oes modd pinio postiad rhywun arall
|
ownership: Nid oes modd pinio postiad rhywun arall
|
||||||
reblog: Nid oes modd pinio hwb
|
reblog: Nid oes modd pinio hwb
|
||||||
quote_policies:
|
|
||||||
followers: Dim ond eich dilynwyr
|
|
||||||
nobody: Neb
|
|
||||||
public: Pawb
|
|
||||||
title: '%{name}: "%{quote}"'
|
title: '%{name}: "%{quote}"'
|
||||||
visibilities:
|
visibilities:
|
||||||
direct: Uniongyrchol
|
|
||||||
private: Dilynwyr yn unig
|
private: Dilynwyr yn unig
|
||||||
private_long: Dangos i ddilynwyr yn unig
|
private_long: Dangos i ddilynwyr yn unig
|
||||||
public: Cyhoeddus
|
public: Cyhoeddus
|
||||||
public_long: Gall pawb weld
|
|
||||||
unlisted: Heb ei restru
|
unlisted: Heb ei restru
|
||||||
unlisted_long: Gall pawb weld, ond heb eu rhestru ar ffrydiau cyhoeddus
|
|
||||||
statuses_cleanup:
|
statuses_cleanup:
|
||||||
enabled: Dileu hen bostiadau'n awtomatig
|
enabled: Dileu hen bostiadau'n awtomatig
|
||||||
enabled_hint: Yn dileu eich postiadau yn awtomatig ar ôl iddyn nhw gyrraedd trothwy oed penodedig, oni bai eu bod yn cyfateb i un o'r eithriadau isod
|
enabled_hint: Yn dileu eich postiadau yn awtomatig ar ôl iddyn nhw gyrraedd trothwy oed penodedig, oni bai eu bod yn cyfateb i un o'r eithriadau isod
|
||||||
|
|
|
||||||
|
|
@ -367,7 +367,6 @@ da:
|
||||||
title: Tilpassede emojier
|
title: Tilpassede emojier
|
||||||
uncategorized: Ukategoriseret
|
uncategorized: Ukategoriseret
|
||||||
unlist: Fjern fra liste
|
unlist: Fjern fra liste
|
||||||
unlisted: Ikke oplistet
|
|
||||||
update_failed_msg: Kunne ikke opdatere denne emoji
|
update_failed_msg: Kunne ikke opdatere denne emoji
|
||||||
updated_msg: Emoji er opdateret!
|
updated_msg: Emoji er opdateret!
|
||||||
upload: Upload
|
upload: Upload
|
||||||
|
|
@ -1908,19 +1907,13 @@ da:
|
||||||
limit: Maksimalt antal indlæg allerede fastgjort
|
limit: Maksimalt antal indlæg allerede fastgjort
|
||||||
ownership: Andres indlæg kan ikke fastgøres
|
ownership: Andres indlæg kan ikke fastgøres
|
||||||
reblog: En fremhævelse kan ikke fastgøres
|
reblog: En fremhævelse kan ikke fastgøres
|
||||||
quote_policies:
|
|
||||||
followers: Kun dine følgere
|
|
||||||
nobody: Ingen
|
|
||||||
public: Alle
|
|
||||||
title: '%{name}: "%{quote}"'
|
title: '%{name}: "%{quote}"'
|
||||||
visibilities:
|
visibilities:
|
||||||
direct: Direkte
|
direct: Privat omtale
|
||||||
private: Kun følgere
|
private: Kun følgere
|
||||||
private_long: Vis kun til følgere
|
private_long: Vis kun til følgere
|
||||||
public: Offentlig
|
public: Offentlig
|
||||||
public_long: Kan ses af alle
|
|
||||||
unlisted: Ikke oplistet
|
unlisted: Ikke oplistet
|
||||||
unlisted_long: Kan ses af alle, men vises ikke på offentlige tidslinjer
|
|
||||||
statuses_cleanup:
|
statuses_cleanup:
|
||||||
enabled: Slet automatisk gamle indlæg
|
enabled: Slet automatisk gamle indlæg
|
||||||
enabled_hint: Sletter automatisk dine indlæg, når disse når en bestemt alder, medmindre de matcher en af undtagelserne nedenfor
|
enabled_hint: Sletter automatisk dine indlæg, når disse når en bestemt alder, medmindre de matcher en af undtagelserne nedenfor
|
||||||
|
|
@ -2020,7 +2013,7 @@ da:
|
||||||
explanation: Der er anmodet om en fuld sikkerhedskopi af din Mastodon-konto.
|
explanation: Der er anmodet om en fuld sikkerhedskopi af din Mastodon-konto.
|
||||||
extra: Sikkerhedskopien kan nu downloades!
|
extra: Sikkerhedskopien kan nu downloades!
|
||||||
subject: Dit arkiv er klar til download
|
subject: Dit arkiv er klar til download
|
||||||
title: Arkiv download
|
title: Arkiv-download
|
||||||
failed_2fa:
|
failed_2fa:
|
||||||
details: 'Her er detaljerne om login-forsøget:'
|
details: 'Her er detaljerne om login-forsøget:'
|
||||||
explanation: Nogen har forsøgt at logge ind på kontoen, men har angivet en ugyldig anden godkendelsesfaktor.
|
explanation: Nogen har forsøgt at logge ind på kontoen, men har angivet en ugyldig anden godkendelsesfaktor.
|
||||||
|
|
|
||||||
|
|
@ -367,7 +367,7 @@ de:
|
||||||
title: Eigene Emojis
|
title: Eigene Emojis
|
||||||
uncategorized: Unkategorisiert
|
uncategorized: Unkategorisiert
|
||||||
unlist: Nicht anzeigen
|
unlist: Nicht anzeigen
|
||||||
unlisted: Nicht sichtbar
|
unlisted: Öffentlich (still)
|
||||||
update_failed_msg: Konnte dieses Emoji nicht bearbeiten
|
update_failed_msg: Konnte dieses Emoji nicht bearbeiten
|
||||||
updated_msg: Emoji erfolgreich bearbeitet!
|
updated_msg: Emoji erfolgreich bearbeitet!
|
||||||
upload: Hochladen
|
upload: Hochladen
|
||||||
|
|
@ -1909,18 +1909,18 @@ de:
|
||||||
ownership: Du kannst nur eigene Beiträge anheften
|
ownership: Du kannst nur eigene Beiträge anheften
|
||||||
reblog: Du kannst keine geteilten Beiträge anheften
|
reblog: Du kannst keine geteilten Beiträge anheften
|
||||||
quote_policies:
|
quote_policies:
|
||||||
followers: Nur meine Follower
|
followers: Nur Follower
|
||||||
nobody: Niemand
|
nobody: Nur ich
|
||||||
public: Alle
|
public: Alle
|
||||||
title: "%{name}: „%{quote}“"
|
title: "%{name}: „%{quote}“"
|
||||||
visibilities:
|
visibilities:
|
||||||
direct: Direktnachricht
|
direct: Private Erwähnung
|
||||||
private: Nur Follower
|
private: Nur Follower
|
||||||
private_long: Nur für deine Follower sichtbar
|
private_long: Nur für deine Follower sichtbar
|
||||||
public: Öffentlich
|
public: Öffentlich
|
||||||
public_long: Für alle sichtbar
|
public_long: Alle in und außerhalb von Mastodon
|
||||||
unlisted: Nicht gelistet
|
unlisted: Nicht gelistet
|
||||||
unlisted_long: Für alle sichtbar (mit Ausnahme von öffentlichen Timelines)
|
unlisted_long: Wird nicht in den Suchergebnissen, Trends oder öffentlichen Timelines von Mastodon angezeigt
|
||||||
statuses_cleanup:
|
statuses_cleanup:
|
||||||
enabled: Alte Beiträge automatisch entfernen
|
enabled: Alte Beiträge automatisch entfernen
|
||||||
enabled_hint: Löscht automatisch deine Beiträge, sobald sie die angegebene Altersgrenze erreicht haben, es sei denn, sie entsprechen einer der unten angegebenen Ausnahmen
|
enabled_hint: Löscht automatisch deine Beiträge, sobald sie die angegebene Altersgrenze erreicht haben, es sei denn, sie entsprechen einer der unten angegebenen Ausnahmen
|
||||||
|
|
|
||||||
|
|
@ -121,6 +121,7 @@ kab:
|
||||||
admin:
|
admin:
|
||||||
nav:
|
nav:
|
||||||
applications: Isnasen
|
applications: Isnasen
|
||||||
|
oauth2_provider: Asaǧǧaw OAuth2
|
||||||
application:
|
application:
|
||||||
title: Tlaq tsiregt n OAuth
|
title: Tlaq tsiregt n OAuth
|
||||||
scopes:
|
scopes:
|
||||||
|
|
|
||||||
|
|
@ -367,7 +367,6 @@ el:
|
||||||
title: Προσαρμοσμένα emoji
|
title: Προσαρμοσμένα emoji
|
||||||
uncategorized: Χωρίς κατηγορία
|
uncategorized: Χωρίς κατηγορία
|
||||||
unlist: Αφαίρεση από λίστα
|
unlist: Αφαίρεση από λίστα
|
||||||
unlisted: Μη καταχωρημένα
|
|
||||||
update_failed_msg: Αδυναμία ενημέρωσης του emoji
|
update_failed_msg: Αδυναμία ενημέρωσης του emoji
|
||||||
updated_msg: Επιτυχής ενημέρωση του emoji!
|
updated_msg: Επιτυχής ενημέρωση του emoji!
|
||||||
upload: Μεταμόρφωση
|
upload: Μεταμόρφωση
|
||||||
|
|
@ -1908,19 +1907,13 @@ el:
|
||||||
limit: Έχεις ήδη καρφιτσώσει το μέγιστο αριθμό επιτρεπτών αναρτήσεων
|
limit: Έχεις ήδη καρφιτσώσει το μέγιστο αριθμό επιτρεπτών αναρτήσεων
|
||||||
ownership: Δεν μπορείς να καρφιτσώσεις ανάρτηση κάποιου άλλου
|
ownership: Δεν μπορείς να καρφιτσώσεις ανάρτηση κάποιου άλλου
|
||||||
reblog: Οι ενισχύσεις δεν καρφιτσώνονται
|
reblog: Οι ενισχύσεις δεν καρφιτσώνονται
|
||||||
quote_policies:
|
|
||||||
followers: Μόνο οι ακόλουθοί σου
|
|
||||||
nobody: Κανένας
|
|
||||||
public: Όλοι
|
|
||||||
title: '%{name}: "%{quote}"'
|
title: '%{name}: "%{quote}"'
|
||||||
visibilities:
|
visibilities:
|
||||||
direct: Άμεση
|
direct: Ιδιωτική επισήμανση
|
||||||
private: Μόνο ακόλουθοι
|
private: Μόνο ακόλουθοι
|
||||||
private_long: Εμφάνιση μόνο σε ακόλουθους
|
private_long: Εμφάνιση μόνο σε ακόλουθους
|
||||||
public: Δημόσιο
|
public: Δημόσιο
|
||||||
public_long: Βλέπει ο οποιοσδήποτε
|
|
||||||
unlisted: Μη καταχωρημένο
|
unlisted: Μη καταχωρημένο
|
||||||
unlisted_long: Βλέπει ο οποιοσδήποτε, αλλά δεν καταχωρείται στις δημόσιες ροές
|
|
||||||
statuses_cleanup:
|
statuses_cleanup:
|
||||||
enabled: Αυτόματη διαγραφή παλιών αναρτήσεων
|
enabled: Αυτόματη διαγραφή παλιών αναρτήσεων
|
||||||
enabled_hint: Διαγράφει αυτόματα τις αναρτήσεις σου μόλις φτάσουν σε ένα καθορισμένο όριο ηλικίας, εκτός αν ταιριάζουν με μία από τις παρακάτω εξαιρέσεις
|
enabled_hint: Διαγράφει αυτόματα τις αναρτήσεις σου μόλις φτάσουν σε ένα καθορισμένο όριο ηλικίας, εκτός αν ταιριάζουν με μία από τις παρακάτω εξαιρέσεις
|
||||||
|
|
|
||||||
|
|
@ -361,7 +361,6 @@ en-GB:
|
||||||
title: Custom emojis
|
title: Custom emojis
|
||||||
uncategorized: Uncategorised
|
uncategorized: Uncategorised
|
||||||
unlist: Unlist
|
unlist: Unlist
|
||||||
unlisted: Unlisted
|
|
||||||
update_failed_msg: Could not update that emoji
|
update_failed_msg: Could not update that emoji
|
||||||
updated_msg: Emoji successfully updated!
|
updated_msg: Emoji successfully updated!
|
||||||
upload: Upload
|
upload: Upload
|
||||||
|
|
@ -1878,17 +1877,12 @@ en-GB:
|
||||||
limit: You have already pinned the maximum number of posts
|
limit: You have already pinned the maximum number of posts
|
||||||
ownership: Someone else's post cannot be pinned
|
ownership: Someone else's post cannot be pinned
|
||||||
reblog: A boost cannot be pinned
|
reblog: A boost cannot be pinned
|
||||||
quote_policies:
|
|
||||||
public: Everyone
|
|
||||||
title: '%{name}: "%{quote}"'
|
title: '%{name}: "%{quote}"'
|
||||||
visibilities:
|
visibilities:
|
||||||
direct: Direct
|
|
||||||
private: Followers-only
|
private: Followers-only
|
||||||
private_long: Only show to followers
|
private_long: Only show to followers
|
||||||
public: Public
|
public: Public
|
||||||
public_long: Everyone can see
|
|
||||||
unlisted: Unlisted
|
unlisted: Unlisted
|
||||||
unlisted_long: Everyone can see, but not listed on public timelines
|
|
||||||
statuses_cleanup:
|
statuses_cleanup:
|
||||||
enabled: Automatically delete old posts
|
enabled: Automatically delete old posts
|
||||||
enabled_hint: Automatically deletes your posts once they reach a specified age threshold, unless they match one of the exceptions below
|
enabled_hint: Automatically deletes your posts once they reach a specified age threshold, unless they match one of the exceptions below
|
||||||
|
|
|
||||||
|
|
@ -367,7 +367,7 @@ en:
|
||||||
title: Custom emojis
|
title: Custom emojis
|
||||||
uncategorized: Uncategorized
|
uncategorized: Uncategorized
|
||||||
unlist: Unlist
|
unlist: Unlist
|
||||||
unlisted: Unlisted
|
unlisted: Quiet public
|
||||||
update_failed_msg: Could not update that emoji
|
update_failed_msg: Could not update that emoji
|
||||||
updated_msg: Emoji successfully updated!
|
updated_msg: Emoji successfully updated!
|
||||||
upload: Upload
|
upload: Upload
|
||||||
|
|
@ -1912,18 +1912,18 @@ en:
|
||||||
ownership: Someone else's post cannot be pinned
|
ownership: Someone else's post cannot be pinned
|
||||||
reblog: A boost cannot be pinned
|
reblog: A boost cannot be pinned
|
||||||
quote_policies:
|
quote_policies:
|
||||||
followers: Only your followers
|
followers: Followers only
|
||||||
nobody: Nobody
|
nobody: Just me
|
||||||
public: Everyone
|
public: Anyone
|
||||||
title: '%{name}: "%{quote}"'
|
title: '%{name}: "%{quote}"'
|
||||||
visibilities:
|
visibilities:
|
||||||
direct: Private mention
|
direct: Private mention
|
||||||
private: Followers-only
|
private: Followers-only
|
||||||
private_long: Only show to followers
|
private_long: Only show to followers
|
||||||
public: Public
|
public: Public
|
||||||
public_long: Everyone can see
|
public_long: Anyone on and off Mastodon
|
||||||
unlisted: Unlisted
|
unlisted: Unlisted
|
||||||
unlisted_long: Everyone can see, but not listed on public timelines
|
unlisted_long: Hidden from Mastodon search results, trending, and public timelines
|
||||||
statuses_cleanup:
|
statuses_cleanup:
|
||||||
enabled: Automatically delete old posts
|
enabled: Automatically delete old posts
|
||||||
enabled_hint: Automatically deletes your posts once they reach a specified age threshold, unless they match one of the exceptions below
|
enabled_hint: Automatically deletes your posts once they reach a specified age threshold, unless they match one of the exceptions below
|
||||||
|
|
|
||||||
|
|
@ -361,7 +361,6 @@ eo:
|
||||||
title: Propraj emoĝioj
|
title: Propraj emoĝioj
|
||||||
uncategorized: Nekategoriigita
|
uncategorized: Nekategoriigita
|
||||||
unlist: Nelistigi
|
unlist: Nelistigi
|
||||||
unlisted: Nelistigita
|
|
||||||
update_failed_msg: Ĝisdatigi tiun emoĝion ne eblis
|
update_failed_msg: Ĝisdatigi tiun emoĝion ne eblis
|
||||||
updated_msg: Emoĝio sukcese ĝisdatigita!
|
updated_msg: Emoĝio sukcese ĝisdatigita!
|
||||||
upload: Alŝuti
|
upload: Alŝuti
|
||||||
|
|
@ -1859,17 +1858,12 @@ eo:
|
||||||
limit: Vi jam atingis la maksimuman nombron de alpinglitaj mesaĝoj
|
limit: Vi jam atingis la maksimuman nombron de alpinglitaj mesaĝoj
|
||||||
ownership: Mesaĝo de iu alia ne povas esti alpinglita
|
ownership: Mesaĝo de iu alia ne povas esti alpinglita
|
||||||
reblog: Diskonigo ne povas esti alpinglita
|
reblog: Diskonigo ne povas esti alpinglita
|
||||||
quote_policies:
|
|
||||||
public: Ĉiuj
|
|
||||||
title: "%{name}: “%{quote}”"
|
title: "%{name}: “%{quote}”"
|
||||||
visibilities:
|
visibilities:
|
||||||
direct: Rekta
|
|
||||||
private: Montri nur al sekvantoj
|
private: Montri nur al sekvantoj
|
||||||
private_long: Montri nur al sekvantoj
|
private_long: Montri nur al sekvantoj
|
||||||
public: Publika
|
public: Publika
|
||||||
public_long: Ĉiuj povas vidi
|
|
||||||
unlisted: Ne enlistigita
|
unlisted: Ne enlistigita
|
||||||
unlisted_long: Ĉiuj povas vidi, sed nelistigita en publikaj templinioj
|
|
||||||
statuses_cleanup:
|
statuses_cleanup:
|
||||||
enabled: Aŭtomate forigi malnovajn postojn
|
enabled: Aŭtomate forigi malnovajn postojn
|
||||||
enabled_hint: Automate forigi viajn mesaĝojn kiam ili atingas la aĝlimon kaj havas escepton
|
enabled_hint: Automate forigi viajn mesaĝojn kiam ili atingas la aĝlimon kaj havas escepton
|
||||||
|
|
|
||||||
|
|
@ -367,7 +367,7 @@ es-AR:
|
||||||
title: Emojis personalizados
|
title: Emojis personalizados
|
||||||
uncategorized: Sin categoría
|
uncategorized: Sin categoría
|
||||||
unlist: No listar
|
unlist: No listar
|
||||||
unlisted: No listado
|
unlisted: Público pero silencioso
|
||||||
update_failed_msg: No se pudo actualizar ese emoji
|
update_failed_msg: No se pudo actualizar ese emoji
|
||||||
updated_msg: "¡Emoji actualizado exitosamente!"
|
updated_msg: "¡Emoji actualizado exitosamente!"
|
||||||
upload: Subir
|
upload: Subir
|
||||||
|
|
@ -1909,18 +1909,18 @@ es-AR:
|
||||||
ownership: No se puede fijar el mensaje de otra cuenta
|
ownership: No se puede fijar el mensaje de otra cuenta
|
||||||
reblog: No se puede fijar una adhesión
|
reblog: No se puede fijar una adhesión
|
||||||
quote_policies:
|
quote_policies:
|
||||||
followers: Solo tus seguidores
|
followers: Solo seguidores
|
||||||
nobody: Nadie
|
nobody: Solo yo
|
||||||
public: Todos
|
public: Cualquier cuenta
|
||||||
title: '%{name}: "%{quote}"'
|
title: '%{name}: "%{quote}"'
|
||||||
visibilities:
|
visibilities:
|
||||||
direct: Directo
|
direct: Mención privada
|
||||||
private: Sólo a seguidores
|
private: Sólo a seguidores
|
||||||
private_long: Sólo mostrar a seguidores
|
private_long: Sólo mostrar a seguidores
|
||||||
public: Público
|
public: Público
|
||||||
public_long: Todos pueden ver
|
public_long: Todo el mundo, dentro y fuera de Mastodon
|
||||||
unlisted: No listado
|
unlisted: No listado
|
||||||
unlisted_long: Todos pueden ver, pero no está listado en las líneas temporales públicas
|
unlisted_long: Oculto de los resultados de búsqueda, tendencias y líneas temporales públicas de Mastodon
|
||||||
statuses_cleanup:
|
statuses_cleanup:
|
||||||
enabled: Eliminar automáticamente mensajes antiguos
|
enabled: Eliminar automáticamente mensajes antiguos
|
||||||
enabled_hint: Elimina automáticamente tus mensajes una vez que alcancen un umbral de edad especificado, a menos que coincidan con una de las excepciones a continuación
|
enabled_hint: Elimina automáticamente tus mensajes una vez que alcancen un umbral de edad especificado, a menos que coincidan con una de las excepciones a continuación
|
||||||
|
|
|
||||||
|
|
@ -367,7 +367,7 @@ es-MX:
|
||||||
title: Emojis personalizados
|
title: Emojis personalizados
|
||||||
uncategorized: Sin clasificar
|
uncategorized: Sin clasificar
|
||||||
unlist: No listado
|
unlist: No listado
|
||||||
unlisted: Sin listar
|
unlisted: Ocultos
|
||||||
update_failed_msg: No se pudo actualizar ese emoji
|
update_failed_msg: No se pudo actualizar ese emoji
|
||||||
updated_msg: "¡Emoji actualizado con éxito!"
|
updated_msg: "¡Emoji actualizado con éxito!"
|
||||||
upload: Subir
|
upload: Subir
|
||||||
|
|
@ -1909,18 +1909,18 @@ es-MX:
|
||||||
ownership: La publicación de alguien más no puede fijarse
|
ownership: La publicación de alguien más no puede fijarse
|
||||||
reblog: No se puede fijar una publicación impulsada
|
reblog: No se puede fijar una publicación impulsada
|
||||||
quote_policies:
|
quote_policies:
|
||||||
followers: Solo tus seguidores
|
followers: Solo seguidores
|
||||||
nobody: Nadie
|
nobody: Solo yo
|
||||||
public: Cualquiera
|
public: Cualquiera
|
||||||
title: "%{name}: «%{quote}»"
|
title: "%{name}: «%{quote}»"
|
||||||
visibilities:
|
visibilities:
|
||||||
direct: Directa
|
direct: Mención privada
|
||||||
private: Sólo mostrar a seguidores
|
private: Sólo mostrar a seguidores
|
||||||
private_long: Solo mostrar a tus seguidores
|
private_long: Solo mostrar a tus seguidores
|
||||||
public: Público
|
public: Público
|
||||||
public_long: Todos pueden ver
|
public_long: Cualquiera dentro y fuera de Mastodon
|
||||||
unlisted: Público, pero no mostrar en la historia federada
|
unlisted: Público, pero no mostrar en la historia federada
|
||||||
unlisted_long: Todos pueden ver, pero no está listado en las líneas de tiempo públicas
|
unlisted_long: Ocultado de los resultados de búsqueda de Mastodon, tendencias y cronologías públicas
|
||||||
statuses_cleanup:
|
statuses_cleanup:
|
||||||
enabled: Borrar automáticamente publicaciones antiguas
|
enabled: Borrar automáticamente publicaciones antiguas
|
||||||
enabled_hint: Elimina automáticamente tus publicaciones una vez que alcancen un umbral de tiempo especificado, a menos que coincidan con alguna de las excepciones detalladas debajo
|
enabled_hint: Elimina automáticamente tus publicaciones una vez que alcancen un umbral de tiempo especificado, a menos que coincidan con alguna de las excepciones detalladas debajo
|
||||||
|
|
|
||||||
|
|
@ -367,7 +367,7 @@ es:
|
||||||
title: Emojis personalizados
|
title: Emojis personalizados
|
||||||
uncategorized: Sin clasificar
|
uncategorized: Sin clasificar
|
||||||
unlist: No listado
|
unlist: No listado
|
||||||
unlisted: Sin listar
|
unlisted: Ocultos
|
||||||
update_failed_msg: No se pudo actualizar ese emoji
|
update_failed_msg: No se pudo actualizar ese emoji
|
||||||
updated_msg: "¡Emoji actualizado con éxito!"
|
updated_msg: "¡Emoji actualizado con éxito!"
|
||||||
upload: Subir
|
upload: Subir
|
||||||
|
|
@ -1909,18 +1909,18 @@ es:
|
||||||
ownership: La publicación de otra persona no puede fijarse
|
ownership: La publicación de otra persona no puede fijarse
|
||||||
reblog: Una publicación impulsada no puede fijarse
|
reblog: Una publicación impulsada no puede fijarse
|
||||||
quote_policies:
|
quote_policies:
|
||||||
followers: Solo tus seguidores
|
followers: Solo seguidores
|
||||||
nobody: Nadie
|
nobody: Solo yo
|
||||||
public: Cualquiera
|
public: Cualquiera
|
||||||
title: "%{name}: «%{quote}»"
|
title: "%{name}: «%{quote}»"
|
||||||
visibilities:
|
visibilities:
|
||||||
direct: Directa
|
direct: Mención privada
|
||||||
private: Solo seguidores
|
private: Solo seguidores
|
||||||
private_long: Solo mostrar a tus seguidores
|
private_long: Solo mostrar a tus seguidores
|
||||||
public: Pública
|
public: Pública
|
||||||
public_long: Todos pueden ver
|
public_long: Cualquiera dentro y fuera de Mastodon
|
||||||
unlisted: Pública, pero no mostrar en la historia federada
|
unlisted: Pública, pero no mostrar en la historia federada
|
||||||
unlisted_long: Todos pueden ver, pero no está listado en las líneas de tiempo públicas
|
unlisted_long: Ocultado de los resultados de búsqueda de Mastodon, tendencias y cronologías públicas
|
||||||
statuses_cleanup:
|
statuses_cleanup:
|
||||||
enabled: Borrar automáticamente publicaciones antiguas
|
enabled: Borrar automáticamente publicaciones antiguas
|
||||||
enabled_hint: Elimina automáticamente tus publicaciones una vez que alcancen un umbral de tiempo especificado, a menos que coincidan con alguna de las excepciones detalladas debajo
|
enabled_hint: Elimina automáticamente tus publicaciones una vez que alcancen un umbral de tiempo especificado, a menos que coincidan con alguna de las excepciones detalladas debajo
|
||||||
|
|
|
||||||
|
|
@ -367,7 +367,6 @@ et:
|
||||||
title: Emotikonid
|
title: Emotikonid
|
||||||
uncategorized: Kategoriseerimata
|
uncategorized: Kategoriseerimata
|
||||||
unlist: Loetlemata
|
unlist: Loetlemata
|
||||||
unlisted: Ajajooneväline
|
|
||||||
update_failed_msg: Ei saanud seda emotikoni uuendada
|
update_failed_msg: Ei saanud seda emotikoni uuendada
|
||||||
updated_msg: Emotikoni uuendamine õnnestus!
|
updated_msg: Emotikoni uuendamine õnnestus!
|
||||||
upload: Lae üles
|
upload: Lae üles
|
||||||
|
|
@ -1892,17 +1891,12 @@ et:
|
||||||
limit: Kinnitatud on juba maksimaalne arv postitusi
|
limit: Kinnitatud on juba maksimaalne arv postitusi
|
||||||
ownership: Kellegi teise postitust ei saa kinnitada
|
ownership: Kellegi teise postitust ei saa kinnitada
|
||||||
reblog: Jagamist ei saa kinnitada
|
reblog: Jagamist ei saa kinnitada
|
||||||
quote_policies:
|
|
||||||
public: Kõik
|
|
||||||
title: '%{name}: "%{quote}"'
|
title: '%{name}: "%{quote}"'
|
||||||
visibilities:
|
visibilities:
|
||||||
direct: Otsene
|
|
||||||
private: Ainult jälgijatele
|
private: Ainult jälgijatele
|
||||||
private_long: Näevad ainult jälgijad
|
private_long: Näevad ainult jälgijad
|
||||||
public: Avalik
|
public: Avalik
|
||||||
public_long: Postitused on kõigile näha
|
|
||||||
unlisted: Ajajooneväline
|
unlisted: Ajajooneväline
|
||||||
unlisted_long: Kõigile näha, kuid ei näidata avalikel ajajoontel
|
|
||||||
statuses_cleanup:
|
statuses_cleanup:
|
||||||
enabled: Vanade postituste automaatne kustutamine
|
enabled: Vanade postituste automaatne kustutamine
|
||||||
enabled_hint: Kustutab automaatselt postitused, mis ületavad määratud ajalimiiti, välja arvatud allpool toodud erandite puhul
|
enabled_hint: Kustutab automaatselt postitused, mis ületavad määratud ajalimiiti, välja arvatud allpool toodud erandite puhul
|
||||||
|
|
|
||||||
|
|
@ -350,7 +350,6 @@ eu:
|
||||||
title: Emoji pertsonalak
|
title: Emoji pertsonalak
|
||||||
uncategorized: Kategoriarik gabe
|
uncategorized: Kategoriarik gabe
|
||||||
unlist: Kendu zerrendatik
|
unlist: Kendu zerrendatik
|
||||||
unlisted: Zerrendatu gabea
|
|
||||||
update_failed_msg: Ezin izan da emoji hori eguneratu
|
update_failed_msg: Ezin izan da emoji hori eguneratu
|
||||||
updated_msg: Emoji-a ongi eguneratu da!
|
updated_msg: Emoji-a ongi eguneratu da!
|
||||||
upload: Igo
|
upload: Igo
|
||||||
|
|
@ -1741,17 +1740,12 @@ eu:
|
||||||
limit: Gehienez finkatu daitekeen bidalketa kopurua finkatu duzu jada
|
limit: Gehienez finkatu daitekeen bidalketa kopurua finkatu duzu jada
|
||||||
ownership: Ezin duzu beste norbaiten bidalketa bat finkatu
|
ownership: Ezin duzu beste norbaiten bidalketa bat finkatu
|
||||||
reblog: Bultzada bat ezin da finkatu
|
reblog: Bultzada bat ezin da finkatu
|
||||||
quote_policies:
|
|
||||||
public: Guztiak
|
|
||||||
title: '%{name}: "%{quote}"'
|
title: '%{name}: "%{quote}"'
|
||||||
visibilities:
|
visibilities:
|
||||||
direct: Zuzena
|
|
||||||
private: Jarraitzaileak soilik
|
private: Jarraitzaileak soilik
|
||||||
private_long: Erakutsi jarraitzaileei soilik
|
private_long: Erakutsi jarraitzaileei soilik
|
||||||
public: Publikoa
|
public: Publikoa
|
||||||
public_long: Edonork ikusi dezake
|
|
||||||
unlisted: Zerrendatu gabea
|
unlisted: Zerrendatu gabea
|
||||||
unlisted_long: Edonork ikusi dezake, baina ez da denbora-lerro publikoetan agertzen
|
|
||||||
statuses_cleanup:
|
statuses_cleanup:
|
||||||
enabled: Ezabatu bidalketa zaharrak automatikoki
|
enabled: Ezabatu bidalketa zaharrak automatikoki
|
||||||
enabled_hint: Zure bidalketa zaharrak automatikoki ezabatzen ditu zehazturiko denbora mugara iristean, beheko baldintza bat betetzen ez bada
|
enabled_hint: Zure bidalketa zaharrak automatikoki ezabatzen ditu zehazturiko denbora mugara iristean, beheko baldintza bat betetzen ez bada
|
||||||
|
|
|
||||||
|
|
@ -367,7 +367,6 @@ fa:
|
||||||
title: شکلکهای سفارشی
|
title: شکلکهای سفارشی
|
||||||
uncategorized: دستهبندی نشده
|
uncategorized: دستهبندی نشده
|
||||||
unlist: نافهرست
|
unlist: نافهرست
|
||||||
unlisted: فهرست نشده
|
|
||||||
update_failed_msg: این شکلک نتوانست بهروز شود
|
update_failed_msg: این شکلک نتوانست بهروز شود
|
||||||
updated_msg: شکلک با موفقیت بهروز شد!
|
updated_msg: شکلک با موفقیت بهروز شد!
|
||||||
upload: بارگذاری
|
upload: بارگذاری
|
||||||
|
|
@ -1908,19 +1907,12 @@ fa:
|
||||||
limit: از این بیشتر نمیشود نوشتههای ثابت داشت
|
limit: از این بیشتر نمیشود نوشتههای ثابت داشت
|
||||||
ownership: نوشتههای دیگران را نمیتوان ثابت کرد
|
ownership: نوشتههای دیگران را نمیتوان ثابت کرد
|
||||||
reblog: تقویت نمیتواند سنجاق شود
|
reblog: تقویت نمیتواند سنجاق شود
|
||||||
quote_policies:
|
|
||||||
followers: تنها پیگیرندگانتان
|
|
||||||
nobody: هیچکس
|
|
||||||
public: هرکسی
|
|
||||||
title: "%{name}: «%{quote}»"
|
title: "%{name}: «%{quote}»"
|
||||||
visibilities:
|
visibilities:
|
||||||
direct: مستقیم
|
|
||||||
private: خصوصی
|
private: خصوصی
|
||||||
private_long: تنها پیگیران شما میبینند
|
private_long: تنها پیگیران شما میبینند
|
||||||
public: عمومی
|
public: عمومی
|
||||||
public_long: همه میتوانند ببینند
|
|
||||||
unlisted: فهرست نشده
|
unlisted: فهرست نشده
|
||||||
unlisted_long: عمومی، ولی در فهرست نوشتهها نمایش نمییابد
|
|
||||||
statuses_cleanup:
|
statuses_cleanup:
|
||||||
enabled: حذف خودکار فرستههای قدیمی
|
enabled: حذف خودکار فرستههای قدیمی
|
||||||
enabled_hint: فرستههایتان را هنگام رسیدن به کرانهٔ سن خاصی به صورت خودکار حذف میکند، مگر این که با یکی از استثناهای زیر مطابق باشند
|
enabled_hint: فرستههایتان را هنگام رسیدن به کرانهٔ سن خاصی به صورت خودکار حذف میکند، مگر این که با یکی از استثناهای زیر مطابق باشند
|
||||||
|
|
|
||||||
|
|
@ -367,7 +367,7 @@ fi:
|
||||||
title: Mukautetut emojit
|
title: Mukautetut emojit
|
||||||
uncategorized: Luokittelematon
|
uncategorized: Luokittelematon
|
||||||
unlist: Poista listasta
|
unlist: Poista listasta
|
||||||
unlisted: Ei listassa
|
unlisted: Vaivihkaisesti julkinen
|
||||||
update_failed_msg: Emojin päivitys epäonnistui
|
update_failed_msg: Emojin päivitys epäonnistui
|
||||||
updated_msg: Emojin päivitys onnistui!
|
updated_msg: Emojin päivitys onnistui!
|
||||||
upload: Lähetä
|
upload: Lähetä
|
||||||
|
|
@ -1909,18 +1909,18 @@ fi:
|
||||||
ownership: Muiden julkaisuja ei voi kiinnittää
|
ownership: Muiden julkaisuja ei voi kiinnittää
|
||||||
reblog: Tehostusta ei voi kiinnittää
|
reblog: Tehostusta ei voi kiinnittää
|
||||||
quote_policies:
|
quote_policies:
|
||||||
followers: Vain seuraajasi
|
followers: Vain seuraajat
|
||||||
nobody: Ei kukaan
|
nobody: Vain minä
|
||||||
public: Kaikki
|
public: Kuka tahansa
|
||||||
title: "%{name}: ”%{quote}”"
|
title: "%{name}: ”%{quote}”"
|
||||||
visibilities:
|
visibilities:
|
||||||
direct: Suoraan
|
direct: Yksityismaininta
|
||||||
private: Vain seuraajat
|
private: Vain seuraajat
|
||||||
private_long: Näytä vain seuraajille
|
private_long: Näytä vain seuraajille
|
||||||
public: Julkinen
|
public: Julkinen
|
||||||
public_long: Kaikki voivat nähdä
|
public_long: Kuka tahansa Mastodonissa ja sen ulkopuolella
|
||||||
unlisted: Listaamaton
|
unlisted: Listaamaton
|
||||||
unlisted_long: Kaikki voivat nähdä, mutta ei näytetä julkisilla aikajanoilla
|
unlisted_long: Piilotettu Mastodonin hakutuloksista, trendeistä ja julkisilta aikajanoilta
|
||||||
statuses_cleanup:
|
statuses_cleanup:
|
||||||
enabled: Poista vanhat julkaisut automaattisesti
|
enabled: Poista vanhat julkaisut automaattisesti
|
||||||
enabled_hint: Poistaa julkaisusi automaattisesti, kun ne saavuttavat valitun ikäkynnyksen, ellei jokin alla olevista poikkeuksista tule kyseeseen
|
enabled_hint: Poistaa julkaisusi automaattisesti, kun ne saavuttavat valitun ikäkynnyksen, ellei jokin alla olevista poikkeuksista tule kyseeseen
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user