mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 07:08:07 +01:00
Merge branch 'glitch' into develop
This commit is contained in:
commit
08e538f8a4
269 changed files with 3138 additions and 3878 deletions
15
.github/renovate.json5
vendored
15
.github/renovate.json5
vendored
|
@ -87,6 +87,7 @@
|
|||
},
|
||||
{
|
||||
// Update devDependencies every week, with one grouped PR
|
||||
matchManagers: ['npm'],
|
||||
matchDepTypes: 'devDependencies',
|
||||
matchUpdateTypes: ['patch', 'minor'],
|
||||
groupName: 'devDependencies (non-major)',
|
||||
|
@ -95,8 +96,7 @@
|
|||
{
|
||||
// Group all eslint-related packages with `eslint` in the same PR
|
||||
matchManagers: ['npm'],
|
||||
matchPackageNames: ['eslint'],
|
||||
matchPackagePrefixes: ['eslint-', '@typescript-eslint/'],
|
||||
matchPackageNames: ['eslint', 'eslint-*', '@typescript-eslint/*'],
|
||||
matchUpdateTypes: ['patch', 'minor'],
|
||||
groupName: 'eslint (non-major)',
|
||||
},
|
||||
|
@ -112,7 +112,8 @@
|
|||
},
|
||||
{
|
||||
// Update @types/* packages every week, with one grouped PR
|
||||
matchPackagePrefixes: '@types/',
|
||||
matchManagers: ['npm'],
|
||||
matchPackageNames: '@types/*',
|
||||
matchUpdateTypes: ['patch', 'minor'],
|
||||
groupName: 'DefinitelyTyped types (non-major)',
|
||||
extends: ['schedule:weekly'],
|
||||
|
@ -129,23 +130,21 @@
|
|||
{
|
||||
// Group all RuboCop packages with `rubocop` in the same PR
|
||||
matchManagers: ['bundler'],
|
||||
matchPackageNames: ['rubocop'],
|
||||
matchPackagePrefixes: ['rubocop-'],
|
||||
matchPackageNames: ['rubocop', 'rubocop-*'],
|
||||
matchUpdateTypes: ['patch', 'minor'],
|
||||
groupName: 'RuboCop (non-major)',
|
||||
},
|
||||
{
|
||||
// Group all RSpec packages with `rspec` in the same PR
|
||||
matchManagers: ['bundler'],
|
||||
matchPackageNames: ['rspec'],
|
||||
matchPackagePrefixes: ['rspec-'],
|
||||
matchPackageNames: ['rspec', 'rspec-*'],
|
||||
matchUpdateTypes: ['patch', 'minor'],
|
||||
groupName: 'RSpec (non-major)',
|
||||
},
|
||||
{
|
||||
// Group all opentelemetry-ruby packages in the same PR
|
||||
matchManagers: ['bundler'],
|
||||
matchPackagePrefixes: ['opentelemetry-'],
|
||||
matchPackageNames: ['opentelemetry-*'],
|
||||
matchUpdateTypes: ['patch', 'minor'],
|
||||
groupName: 'opentelemetry-ruby (non-major)',
|
||||
},
|
||||
|
|
2
.github/workflows/build-container-image.yml
vendored
2
.github/workflows/build-container-image.yml
vendored
|
@ -85,7 +85,7 @@ jobs:
|
|||
tags: ${{ inputs.tags }}
|
||||
labels: ${{ inputs.labels }}
|
||||
|
||||
- uses: docker/build-push-action@v5
|
||||
- uses: docker/build-push-action@v6
|
||||
with:
|
||||
context: .
|
||||
file: ${{ inputs.file_to_build }}
|
||||
|
|
2
.github/workflows/crowdin-download.yml
vendored
2
.github/workflows/crowdin-download.yml
vendored
|
@ -26,7 +26,7 @@ jobs:
|
|||
|
||||
# Download the translation files from Crowdin
|
||||
- name: crowdin action
|
||||
uses: crowdin/github-action@v1
|
||||
uses: crowdin/github-action@v2
|
||||
with:
|
||||
config: crowdin-glitch.yml
|
||||
upload_sources: false
|
||||
|
|
2
.github/workflows/crowdin-upload.yml
vendored
2
.github/workflows/crowdin-upload.yml
vendored
|
@ -26,7 +26,7 @@ jobs:
|
|||
uses: actions/checkout@v4
|
||||
|
||||
- name: crowdin action
|
||||
uses: crowdin/github-action@v1
|
||||
uses: crowdin/github-action@v2
|
||||
with:
|
||||
config: crowdin-glitch.yml
|
||||
upload_sources: true
|
||||
|
|
1
.github/workflows/rebase-needed.yml
vendored
1
.github/workflows/rebase-needed.yml
vendored
|
@ -10,6 +10,7 @@ permissions:
|
|||
jobs:
|
||||
label-rebase-needed:
|
||||
runs-on: ubuntu-latest
|
||||
if: github.repository == 'mastodon/mastodon'
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
|
|
|
@ -40,7 +40,6 @@ Style/FetchEnvVar:
|
|||
- 'config/environments/production.rb'
|
||||
- 'config/initializers/2_limited_federation_mode.rb'
|
||||
- 'config/initializers/3_omniauth.rb'
|
||||
- 'config/initializers/blacklists.rb'
|
||||
- 'config/initializers/cache_buster.rb'
|
||||
- 'config/initializers/devise.rb'
|
||||
- 'config/initializers/paperclip.rb'
|
||||
|
|
|
@ -191,7 +191,7 @@ FROM build AS libvips
|
|||
|
||||
# libvips version to compile, change with [--build-arg VIPS_VERSION="8.15.2"]
|
||||
# renovate: datasource=github-releases depName=libvips packageName=libvips/libvips
|
||||
ARG VIPS_VERSION=8.15.2
|
||||
ARG VIPS_VERSION=8.15.3
|
||||
# libvips download URL, change with [--build-arg VIPS_URL="https://github.com/libvips/libvips/releases/download"]
|
||||
ARG VIPS_URL=https://github.com/libvips/libvips/releases/download
|
||||
|
||||
|
|
10
Gemfile.lock
10
Gemfile.lock
|
@ -168,7 +168,7 @@ GEM
|
|||
climate_control (1.2.0)
|
||||
cocoon (1.2.15)
|
||||
color_diff (0.1)
|
||||
concurrent-ruby (1.3.3)
|
||||
concurrent-ruby (1.3.4)
|
||||
connection_pool (2.4.1)
|
||||
cose (1.3.0)
|
||||
cbor (~> 0.5.9)
|
||||
|
@ -460,8 +460,9 @@ GEM
|
|||
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||
sidekiq (>= 3.5)
|
||||
statsd-ruby (~> 1.4, >= 1.4.0)
|
||||
oj (3.16.4)
|
||||
oj (3.16.5)
|
||||
bigdecimal (>= 3.0)
|
||||
ostruct (>= 0.2)
|
||||
omniauth (2.1.2)
|
||||
hashie (>= 3.4.6)
|
||||
rack (>= 2.2.3)
|
||||
|
@ -582,6 +583,7 @@ GEM
|
|||
opentelemetry-semantic_conventions (1.10.1)
|
||||
opentelemetry-api (~> 1.0)
|
||||
orm_adapter (0.5.0)
|
||||
ostruct (0.6.0)
|
||||
ox (2.14.18)
|
||||
parallel (1.25.1)
|
||||
parser (3.3.4.0)
|
||||
|
@ -601,7 +603,7 @@ GEM
|
|||
actionmailer (>= 3)
|
||||
net-smtp
|
||||
premailer (~> 1.7, >= 1.7.9)
|
||||
propshaft (0.9.0)
|
||||
propshaft (0.9.1)
|
||||
actionpack (>= 7.0.0)
|
||||
activesupport (>= 7.0.0)
|
||||
rack
|
||||
|
@ -904,7 +906,7 @@ GEM
|
|||
xorcist (1.1.3)
|
||||
xpath (3.2.0)
|
||||
nokogiri (~> 1.8)
|
||||
zeitwerk (2.6.16)
|
||||
zeitwerk (2.6.17)
|
||||
|
||||
PLATFORMS
|
||||
ruby
|
||||
|
|
|
@ -187,4 +187,15 @@ class Auth::SessionsController < Devise::SessionsController
|
|||
def second_factor_attempts_key(user)
|
||||
"2fa_auth_attempts:#{user.id}:#{Time.now.utc.hour}"
|
||||
end
|
||||
|
||||
def respond_to_on_destroy
|
||||
respond_to do |format|
|
||||
format.json do
|
||||
render json: {
|
||||
redirect_to: after_sign_out_path_for(resource_name),
|
||||
}, status: 200
|
||||
end
|
||||
format.all { super }
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -15,6 +15,7 @@ import type { NotificationGap } from 'flavours/glitch/reducers/notification_grou
|
|||
import {
|
||||
selectSettingsNotificationsExcludedTypes,
|
||||
selectSettingsNotificationsQuickFilterActive,
|
||||
selectSettingsNotificationsShows,
|
||||
} from 'flavours/glitch/selectors/settings';
|
||||
import type { AppDispatch } from 'flavours/glitch/store';
|
||||
import {
|
||||
|
@ -46,7 +47,7 @@ function dispatchAssociatedRecords(
|
|||
fetchedAccounts.push(notification.moderation_warning.target_account);
|
||||
}
|
||||
|
||||
if ('status' in notification) {
|
||||
if ('status' in notification && notification.status) {
|
||||
fetchedStatuses.push(notification.status);
|
||||
}
|
||||
});
|
||||
|
@ -104,7 +105,31 @@ export const fetchNotificationsGap = createDataLoadingThunk(
|
|||
|
||||
export const processNewNotificationForGroups = createAppAsyncThunk(
|
||||
'notificationGroups/processNew',
|
||||
(notification: ApiNotificationJSON, { dispatch }) => {
|
||||
(notification: ApiNotificationJSON, { dispatch, getState }) => {
|
||||
const state = getState();
|
||||
const activeFilter = selectSettingsNotificationsQuickFilterActive(state);
|
||||
const notificationShows = selectSettingsNotificationsShows(state);
|
||||
|
||||
const showInColumn =
|
||||
activeFilter === 'all'
|
||||
? notificationShows[notification.type]
|
||||
: activeFilter === notification.type;
|
||||
|
||||
if (!showInColumn) return;
|
||||
|
||||
if (
|
||||
(notification.type === 'mention' || notification.type === 'update') &&
|
||||
notification.status?.filtered
|
||||
) {
|
||||
const filters = notification.status.filtered.filter((result) =>
|
||||
result.filter.context.includes('notifications'),
|
||||
);
|
||||
|
||||
if (filters.some((result) => result.filter.filter_action === 'hide')) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
dispatchAssociatedRecords(dispatch, [notification]);
|
||||
|
||||
return notification;
|
||||
|
|
|
@ -104,7 +104,7 @@ export const connectTimelineStream = (timelineId, channelName, params = {}, opti
|
|||
const notificationJSON = JSON.parse(data.payload);
|
||||
dispatch(updateNotifications(notificationJSON, messages, locale));
|
||||
// TODO: remove this once the groups feature replaces the previous one
|
||||
if(getState().notificationGroups.groups.length > 0) {
|
||||
if(getState().settings.getIn(['notifications', 'groupingBeta'], false)) {
|
||||
dispatch(processNewNotificationForGroups(notificationJSON));
|
||||
}
|
||||
break;
|
||||
|
|
|
@ -2,8 +2,8 @@ import { apiRequestGet, apiRequestPut } from 'flavours/glitch/api';
|
|||
import type { NotificationPolicyJSON } from 'flavours/glitch/api_types/notification_policies';
|
||||
|
||||
export const apiGetNotificationPolicy = () =>
|
||||
apiRequestGet<NotificationPolicyJSON>('/v2/notifications/policy');
|
||||
apiRequestGet<NotificationPolicyJSON>('v2/notifications/policy');
|
||||
|
||||
export const apiUpdateNotificationsPolicy = (
|
||||
policy: Partial<NotificationPolicyJSON>,
|
||||
) => apiRequestPut<NotificationPolicyJSON>('/v2/notifications/policy', policy);
|
||||
) => apiRequestPut<NotificationPolicyJSON>('v2/notifications/policy', policy);
|
||||
|
|
|
@ -62,12 +62,12 @@ export interface BaseNotificationGroupJSON {
|
|||
|
||||
interface NotificationGroupWithStatusJSON extends BaseNotificationGroupJSON {
|
||||
type: NotificationWithStatusType;
|
||||
status_id: string;
|
||||
status_id: string | null;
|
||||
}
|
||||
|
||||
interface NotificationWithStatusJSON extends BaseNotificationJSON {
|
||||
type: NotificationWithStatusType;
|
||||
status: ApiStatusJSON;
|
||||
status: ApiStatusJSON | null;
|
||||
}
|
||||
|
||||
interface ReportNotificationGroupJSON extends BaseNotificationGroupJSON {
|
||||
|
|
|
@ -58,6 +58,29 @@ export interface ApiPreviewCardJSON {
|
|||
authors: ApiPreviewCardAuthorJSON[];
|
||||
}
|
||||
|
||||
export type FilterContext =
|
||||
| 'home'
|
||||
| 'notifications'
|
||||
| 'public'
|
||||
| 'thread'
|
||||
| 'account';
|
||||
|
||||
export interface ApiFilterJSON {
|
||||
id: string;
|
||||
title: string;
|
||||
context: FilterContext;
|
||||
expires_at: string;
|
||||
filter_action: 'warn' | 'hide';
|
||||
keywords?: unknown[]; // TODO: FilterKeywordSerializer
|
||||
statuses?: unknown[]; // TODO: FilterStatusSerializer
|
||||
}
|
||||
|
||||
export interface ApiFilterResultJSON {
|
||||
filter: ApiFilterJSON;
|
||||
keyword_matches: string[];
|
||||
status_matches: string[];
|
||||
}
|
||||
|
||||
export interface ApiStatusJSON {
|
||||
id: string;
|
||||
created_at: string;
|
||||
|
@ -80,8 +103,7 @@ export interface ApiStatusJSON {
|
|||
bookmarked?: boolean;
|
||||
pinned?: boolean;
|
||||
|
||||
// filtered: FilterResult[]
|
||||
filtered: unknown; // TODO
|
||||
filtered?: ApiFilterResultJSON[];
|
||||
content?: string;
|
||||
text?: string;
|
||||
|
||||
|
|
|
@ -1,12 +1,15 @@
|
|||
import { FormattedMessage } from 'react-intl';
|
||||
|
||||
import classNames from 'classnames';
|
||||
|
||||
interface Props {
|
||||
resource: JSX.Element;
|
||||
url: string;
|
||||
className?: string;
|
||||
}
|
||||
|
||||
export const TimelineHint: React.FC<Props> = ({ resource, url }) => (
|
||||
<div className='timeline-hint'>
|
||||
export const TimelineHint: React.FC<Props> = ({ className, resource, url }) => (
|
||||
<div className={classNames('timeline-hint', className)}>
|
||||
<strong>
|
||||
<FormattedMessage
|
||||
id='timeline_hint.remote_resource_not_displayed'
|
||||
|
|
|
@ -47,14 +47,18 @@ class ColumnSettings extends PureComponent {
|
|||
|
||||
return (
|
||||
<div className='column-settings'>
|
||||
{alertsEnabled && browserSupport && browserPermission === 'denied' && (
|
||||
<span className='warning-hint'><FormattedMessage id='notifications.permission_denied' defaultMessage='Desktop notifications are unavailable due to previously denied browser permissions request' /></span>
|
||||
)}
|
||||
|
||||
<section>
|
||||
<ClearColumnButton onClick={onClear} />
|
||||
</section>
|
||||
|
||||
{alertsEnabled && browserSupport && browserPermission === 'denied' && (
|
||||
<section>
|
||||
<span className='warning-hint'>
|
||||
<FormattedMessage id='notifications.permission_denied' defaultMessage='Desktop notifications are unavailable due to previously denied browser permissions request' />
|
||||
</span>
|
||||
</section>
|
||||
)}
|
||||
|
||||
{alertsEnabled && browserSupport && browserPermission === 'default' && (
|
||||
<section>
|
||||
<span className='warning-hint'>
|
||||
|
|
|
@ -37,7 +37,11 @@ export const NotificationMention: React.FC<{
|
|||
unread: boolean;
|
||||
}> = ({ notification, unread }) => {
|
||||
const [isDirect, isReply] = useAppSelector((state) => {
|
||||
const status = state.statuses.get(notification.statusId) as Status;
|
||||
const status = state.statuses.get(notification.statusId) as
|
||||
| Status
|
||||
| undefined;
|
||||
|
||||
if (!status) return [false, false] as const;
|
||||
|
||||
return [
|
||||
status.get('visibility') === 'direct',
|
||||
|
|
|
@ -26,7 +26,7 @@ export const NotificationWithStatus: React.FC<{
|
|||
icon: IconProp;
|
||||
iconId: string;
|
||||
accountIds: string[];
|
||||
statusId: string;
|
||||
statusId: string | undefined;
|
||||
count: number;
|
||||
labelRenderer: LabelRenderer;
|
||||
unread: boolean;
|
||||
|
@ -80,6 +80,8 @@ export const NotificationWithStatus: React.FC<{
|
|||
[dispatch, statusId],
|
||||
);
|
||||
|
||||
if (!statusId) return null;
|
||||
|
||||
return (
|
||||
<HotKeys handlers={handlers}>
|
||||
<div
|
||||
|
|
|
@ -670,7 +670,7 @@ class Status extends ImmutablePureComponent {
|
|||
const isIndexable = !status.getIn(['account', 'noindex']);
|
||||
|
||||
if (!isLocal) {
|
||||
remoteHint = <TimelineHint url={status.get('url')} resource={<FormattedMessage id='timeline_hint.resources.replies' defaultMessage='Some replies' />} />;
|
||||
remoteHint = <TimelineHint className={classNames(!!descendants && 'timeline-hint--with-descendants')} url={status.get('url')} resource={<FormattedMessage id='timeline_hint.resources.replies' defaultMessage='Some replies' />} />;
|
||||
}
|
||||
|
||||
const handlers = {
|
||||
|
|
|
@ -25,7 +25,7 @@ export const ConfirmLogOutModal: React.FC<BaseConfirmationModalProps> = ({
|
|||
const intl = useIntl();
|
||||
|
||||
const onConfirm = useCallback(() => {
|
||||
logOut();
|
||||
void logOut();
|
||||
}, []);
|
||||
|
||||
return (
|
||||
|
|
|
@ -60,7 +60,7 @@ export const IgnoreNotificationsModal = ({ filterType }) => {
|
|||
<div className='safety-action-modal__bullet-points'>
|
||||
<div>
|
||||
<div className='safety-action-modal__bullet-points__icon'><Icon icon={InventoryIcon} /></div>
|
||||
<div><FormattedMessage id='ignore_notifications_modal.filter_to_review_separately' defaultMessage='You can review filtered notifications speparately' /></div>
|
||||
<div><FormattedMessage id='ignore_notifications_modal.filter_to_review_separately' defaultMessage='You can review filtered notifications separately' /></div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
|
|
|
@ -21,7 +21,7 @@ interface BaseNotificationGroup
|
|||
interface BaseNotificationWithStatus<Type extends NotificationWithStatusType>
|
||||
extends BaseNotificationGroup {
|
||||
type: Type;
|
||||
statusId: string;
|
||||
statusId: string | undefined;
|
||||
}
|
||||
|
||||
interface BaseNotification<Type extends NotificationType>
|
||||
|
@ -129,7 +129,7 @@ export function createNotificationGroupFromJSON(
|
|||
case 'update': {
|
||||
const { status_id: statusId, ...groupWithoutStatus } = group;
|
||||
return {
|
||||
statusId,
|
||||
statusId: statusId ?? undefined,
|
||||
sampleAccountIds,
|
||||
...groupWithoutStatus,
|
||||
};
|
||||
|
@ -187,7 +187,7 @@ export function createNotificationGroupFromNotificationJSON(
|
|||
case 'mention':
|
||||
case 'poll':
|
||||
case 'update':
|
||||
return { ...group, statusId: notification.status.id };
|
||||
return { ...group, statusId: notification.status?.id };
|
||||
case 'admin.report':
|
||||
return { ...group, report: createReportFromJSON(notification.report) };
|
||||
case 'severed_relationships':
|
||||
|
|
|
@ -387,12 +387,14 @@ export const notificationGroupsReducer = createReducer<NotificationGroupsState>(
|
|||
})
|
||||
.addCase(processNewNotificationForGroups.fulfilled, (state, action) => {
|
||||
const notification = action.payload;
|
||||
processNewNotification(
|
||||
usePendingItems ? state.pendingGroups : state.groups,
|
||||
notification,
|
||||
);
|
||||
updateLastReadId(state);
|
||||
trimNotifications(state);
|
||||
if (notification) {
|
||||
processNewNotification(
|
||||
usePendingItems ? state.pendingGroups : state.groups,
|
||||
notification,
|
||||
);
|
||||
updateLastReadId(state);
|
||||
trimNotifications(state);
|
||||
}
|
||||
})
|
||||
.addCase(disconnectTimeline, (state, action) => {
|
||||
if (action.payload.timeline === 'home') {
|
||||
|
|
|
@ -65,16 +65,16 @@ $content-width: 840px;
|
|||
background: $ui-base-color;
|
||||
}
|
||||
|
||||
.fa-times {
|
||||
.material-close {
|
||||
display: none;
|
||||
}
|
||||
|
||||
&.active {
|
||||
.fa-times {
|
||||
.material-close {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.fa-bars {
|
||||
.material-menu {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
@ -718,7 +718,7 @@ body,
|
|||
top: 15px;
|
||||
|
||||
.avatar {
|
||||
border-radius: 4px;
|
||||
border-radius: var(--avatar-border-radius);
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
}
|
||||
|
@ -769,7 +769,7 @@ body,
|
|||
top: 15px;
|
||||
|
||||
.avatar {
|
||||
border-radius: 4px;
|
||||
border-radius: var(--avatar-border-radius);
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
}
|
||||
|
@ -893,6 +893,7 @@ a.name-tag,
|
|||
|
||||
.account {
|
||||
padding: 0;
|
||||
border: none;
|
||||
|
||||
&__avatar-wrapper {
|
||||
margin-inline-start: 0;
|
||||
|
@ -1616,7 +1617,7 @@ a.sparkline {
|
|||
position: absolute;
|
||||
inset-inline-start: 15px;
|
||||
top: 15px;
|
||||
border-radius: 4px;
|
||||
border-radius: var(--avatar-border-radius);
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
}
|
||||
|
|
|
@ -426,10 +426,17 @@ body > [data-popper-placement] {
|
|||
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:active,
|
||||
&:active {
|
||||
background: var(--dropdown-border-color);
|
||||
|
||||
.autosuggest-account .display-name__account {
|
||||
color: inherit;
|
||||
}
|
||||
}
|
||||
|
||||
&.selected {
|
||||
background: $ui-highlight-color;
|
||||
color: $primary-text-color;
|
||||
color: $ui-button-color;
|
||||
|
||||
.autosuggest-account .display-name__account {
|
||||
color: inherit;
|
||||
|
@ -465,7 +472,7 @@ body > [data-popper-placement] {
|
|||
display: block;
|
||||
line-height: 16px;
|
||||
font-size: 12px;
|
||||
color: $dark-text-color;
|
||||
color: $ui-primary-color;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1996,6 +2003,7 @@ body > [data-popper-placement] {
|
|||
|
||||
.account {
|
||||
padding: 10px; // glitch: reduced padding
|
||||
border-bottom: 1px solid var(--background-border-color);
|
||||
|
||||
.account__display-name {
|
||||
flex: 1 1 auto;
|
||||
|
@ -2184,13 +2192,14 @@ body > [data-popper-placement] {
|
|||
.account__avatar {
|
||||
display: block;
|
||||
position: relative;
|
||||
border-radius: var(--avatar-border-radius);
|
||||
|
||||
img {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
border-radius: 4px;
|
||||
border-radius: var(--avatar-border-radius);
|
||||
}
|
||||
|
||||
&-inline {
|
||||
|
@ -3024,7 +3033,7 @@ $ui-header-logo-wordmark-width: 99px;
|
|||
overflow: hidden;
|
||||
}
|
||||
|
||||
@media screen and (width >= 631px) {
|
||||
@media screen and (width > $mobile-breakpoint) {
|
||||
.columns-area {
|
||||
padding: 0;
|
||||
}
|
||||
|
@ -4459,6 +4468,10 @@ a.status-card {
|
|||
}
|
||||
}
|
||||
|
||||
.timeline-hint--with-descendants {
|
||||
border-top: 1px solid var(--background-border-color);
|
||||
}
|
||||
|
||||
.regeneration-indicator {
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
|
@ -4748,10 +4761,19 @@ a.status-card {
|
|||
opacity: 1;
|
||||
z-index: 1;
|
||||
position: relative;
|
||||
border-left: 1px solid var(--background-border-color);
|
||||
border-right: 1px solid var(--background-border-color);
|
||||
border-bottom: 1px solid var(--background-border-color);
|
||||
|
||||
@media screen and (max-width: $no-gap-breakpoint) {
|
||||
border-left: 0;
|
||||
border-right: 0;
|
||||
}
|
||||
|
||||
&.collapsed {
|
||||
max-height: 0;
|
||||
opacity: 0.5;
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
&.animating {
|
||||
|
@ -4778,13 +4800,7 @@ a.status-card {
|
|||
}
|
||||
|
||||
.column-header__collapsible-inner {
|
||||
border: 1px solid var(--background-border-color);
|
||||
border-top: 0;
|
||||
|
||||
@media screen and (max-width: $no-gap-breakpoint) {
|
||||
border-left: 0;
|
||||
border-right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.column-header__setting-btn {
|
||||
|
@ -6207,7 +6223,7 @@ a.status-card {
|
|||
user-select: text;
|
||||
display: flex;
|
||||
|
||||
@media screen and (width <= 630px) {
|
||||
@media screen and (width <= $mobile-breakpoint) {
|
||||
margin-top: auto;
|
||||
}
|
||||
}
|
||||
|
@ -6566,7 +6582,7 @@ a.status-card {
|
|||
border-radius: 0 0 16px 16px;
|
||||
border-top: 0;
|
||||
|
||||
@media screen and (max-width: $no-gap-breakpoint) {
|
||||
@media screen and (max-width: $mobile-breakpoint) {
|
||||
border-radius: 0;
|
||||
border-bottom: 0;
|
||||
padding-bottom: 32px;
|
||||
|
@ -7925,9 +7941,18 @@ img.modal-warning {
|
|||
}
|
||||
|
||||
.scrollable .account-card__title__avatar {
|
||||
img,
|
||||
img {
|
||||
border: 2px solid var(--background-color);
|
||||
}
|
||||
|
||||
.account__avatar {
|
||||
border-color: lighten($ui-base-color, 8%);
|
||||
border: none;
|
||||
}
|
||||
}
|
||||
|
||||
.scrollable .account-card__header {
|
||||
img {
|
||||
border-radius: 4px;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -8531,7 +8556,8 @@ noscript {
|
|||
|
||||
.account__avatar {
|
||||
background: var(--background-color);
|
||||
border: 2px solid var(--background-border-color);
|
||||
border: 1px solid var(--background-border-color);
|
||||
border-radius: var(--avatar-border-radius);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -9660,8 +9686,9 @@ noscript {
|
|||
backdrop-filter: var(--background-filter);
|
||||
border: 1px solid var(--modal-border-color);
|
||||
padding: 24px;
|
||||
box-sizing: border-box;
|
||||
|
||||
@media screen and (max-width: $no-gap-breakpoint) {
|
||||
@media screen and (max-width: $mobile-breakpoint) {
|
||||
border-radius: 16px 16px 0 0;
|
||||
border-bottom: 0;
|
||||
padding-bottom: 32px;
|
||||
|
|
|
@ -81,7 +81,7 @@
|
|||
height: 100%;
|
||||
display: block;
|
||||
margin: 0;
|
||||
border-radius: 4px;
|
||||
border-radius: var(--avatar-border-radius);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -291,6 +291,10 @@ code {
|
|||
flex: 0;
|
||||
}
|
||||
|
||||
.input.select.select--languages {
|
||||
min-width: 32ch;
|
||||
}
|
||||
|
||||
.required abbr {
|
||||
text-decoration: none;
|
||||
color: lighten($error-value-color, 12%);
|
||||
|
@ -309,7 +313,7 @@ code {
|
|||
margin-bottom: 10px;
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
border-radius: 4px;
|
||||
border-radius: var(--avatar-border-radius);
|
||||
background: url('images/void.png');
|
||||
|
||||
&[src$='missing.png'] {
|
||||
|
|
|
@ -52,10 +52,6 @@ html {
|
|||
color: darken($action-button-color, 25%);
|
||||
}
|
||||
|
||||
.account__header__bar .avatar .account__avatar {
|
||||
border-color: $white;
|
||||
}
|
||||
|
||||
.getting-started__footer a {
|
||||
color: $ui-secondary-color;
|
||||
text-decoration: underline;
|
||||
|
@ -622,3 +618,9 @@ a.sparkline {
|
|||
.report-dialog-modal__textarea {
|
||||
background: darken($ui-base-color, 10%);
|
||||
}
|
||||
|
||||
.autosuggest-account {
|
||||
.display-name__account {
|
||||
color: $dark-text-color;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -54,5 +54,23 @@ table {
|
|||
}
|
||||
|
||||
html {
|
||||
scrollbar-color: lighten($ui-base-color, 4%) rgba($base-overlay-background, 0.1);
|
||||
scrollbar-color: var(--background-border-color);
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 4px;
|
||||
height: 4px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background-color: $ui-highlight-color;
|
||||
opacity: .25;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background-color: var(--background-border-color);
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-corner {
|
||||
background: transparent;
|
||||
}
|
||||
|
|
|
@ -88,6 +88,7 @@ $media-modal-media-max-width: 100%;
|
|||
$media-modal-media-max-height: 80%;
|
||||
|
||||
$no-gap-breakpoint: 1175px;
|
||||
$mobile-breakpoint: 630px;
|
||||
|
||||
$font-sans-serif: 'mastodon-font-sans-serif' !default;
|
||||
$font-display: 'mastodon-font-display' !default;
|
||||
|
@ -114,4 +115,5 @@ $dismiss-overlay-width: 4rem;
|
|||
--surface-background-color: #{darken($ui-base-color, 4%)};
|
||||
--surface-variant-background-color: #{$ui-base-color};
|
||||
--surface-variant-active-background-color: #{lighten($ui-base-color, 4%)};
|
||||
--avatar-border-radius: 8px;
|
||||
}
|
||||
|
|
|
@ -1,38 +1,20 @@
|
|||
import { signOutLink } from 'flavours/glitch/utils/backend_links';
|
||||
import api from 'flavours/glitch/api';
|
||||
|
||||
export const logOut = () => {
|
||||
const form = document.createElement('form');
|
||||
export async function logOut() {
|
||||
try {
|
||||
const response = await api(false).delete<{ redirect_to?: string }>(
|
||||
'/auth/sign_out',
|
||||
{ headers: { Accept: 'application/json' }, withCredentials: true },
|
||||
);
|
||||
|
||||
const methodInput = document.createElement('input');
|
||||
methodInput.setAttribute('name', '_method');
|
||||
methodInput.setAttribute('value', 'delete');
|
||||
methodInput.setAttribute('type', 'hidden');
|
||||
form.appendChild(methodInput);
|
||||
|
||||
const csrfToken = document.querySelector<HTMLMetaElement>(
|
||||
'meta[name=csrf-token]',
|
||||
);
|
||||
|
||||
const csrfParam = document.querySelector<HTMLMetaElement>(
|
||||
'meta[name=csrf-param]',
|
||||
);
|
||||
|
||||
if (csrfParam && csrfToken) {
|
||||
const csrfInput = document.createElement('input');
|
||||
csrfInput.setAttribute('name', csrfParam.content);
|
||||
csrfInput.setAttribute('value', csrfToken.content);
|
||||
csrfInput.setAttribute('type', 'hidden');
|
||||
form.appendChild(csrfInput);
|
||||
if (response.status === 200 && response.data.redirect_to)
|
||||
window.location.href = response.data.redirect_to;
|
||||
else
|
||||
console.error(
|
||||
'Failed to log out, got an unexpected non-redirect response from the server',
|
||||
response,
|
||||
);
|
||||
} catch (error) {
|
||||
console.error('Failed to log out, response was an error', error);
|
||||
}
|
||||
|
||||
const submitButton = document.createElement('input');
|
||||
submitButton.setAttribute('type', 'submit');
|
||||
form.appendChild(submitButton);
|
||||
|
||||
form.method = 'post';
|
||||
form.action = signOutLink;
|
||||
form.style.display = 'none';
|
||||
|
||||
document.body.appendChild(form);
|
||||
submitButton.click();
|
||||
};
|
||||
}
|
||||
|
|
|
@ -15,6 +15,7 @@ import type { NotificationGap } from 'mastodon/reducers/notification_groups';
|
|||
import {
|
||||
selectSettingsNotificationsExcludedTypes,
|
||||
selectSettingsNotificationsQuickFilterActive,
|
||||
selectSettingsNotificationsShows,
|
||||
} from 'mastodon/selectors/settings';
|
||||
import type { AppDispatch } from 'mastodon/store';
|
||||
import {
|
||||
|
@ -46,7 +47,7 @@ function dispatchAssociatedRecords(
|
|||
fetchedAccounts.push(notification.moderation_warning.target_account);
|
||||
}
|
||||
|
||||
if ('status' in notification) {
|
||||
if ('status' in notification && notification.status) {
|
||||
fetchedStatuses.push(notification.status);
|
||||
}
|
||||
});
|
||||
|
@ -104,7 +105,31 @@ export const fetchNotificationsGap = createDataLoadingThunk(
|
|||
|
||||
export const processNewNotificationForGroups = createAppAsyncThunk(
|
||||
'notificationGroups/processNew',
|
||||
(notification: ApiNotificationJSON, { dispatch }) => {
|
||||
(notification: ApiNotificationJSON, { dispatch, getState }) => {
|
||||
const state = getState();
|
||||
const activeFilter = selectSettingsNotificationsQuickFilterActive(state);
|
||||
const notificationShows = selectSettingsNotificationsShows(state);
|
||||
|
||||
const showInColumn =
|
||||
activeFilter === 'all'
|
||||
? notificationShows[notification.type]
|
||||
: activeFilter === notification.type;
|
||||
|
||||
if (!showInColumn) return;
|
||||
|
||||
if (
|
||||
(notification.type === 'mention' || notification.type === 'update') &&
|
||||
notification.status?.filtered
|
||||
) {
|
||||
const filters = notification.status.filtered.filter((result) =>
|
||||
result.filter.context.includes('notifications'),
|
||||
);
|
||||
|
||||
if (filters.some((result) => result.filter.filter_action === 'hide')) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
dispatchAssociatedRecords(dispatch, [notification]);
|
||||
|
||||
return notification;
|
||||
|
|
|
@ -104,7 +104,7 @@ export const connectTimelineStream = (timelineId, channelName, params = {}, opti
|
|||
const notificationJSON = JSON.parse(data.payload);
|
||||
dispatch(updateNotifications(notificationJSON, messages, locale));
|
||||
// TODO: remove this once the groups feature replaces the previous one
|
||||
if(getState().notificationGroups.groups.length > 0) {
|
||||
if(getState().settings.getIn(['notifications', 'groupingBeta'], false)) {
|
||||
dispatch(processNewNotificationForGroups(notificationJSON));
|
||||
}
|
||||
break;
|
||||
|
|
|
@ -2,8 +2,8 @@ import { apiRequestGet, apiRequestPut } from 'mastodon/api';
|
|||
import type { NotificationPolicyJSON } from 'mastodon/api_types/notification_policies';
|
||||
|
||||
export const apiGetNotificationPolicy = () =>
|
||||
apiRequestGet<NotificationPolicyJSON>('/v2/notifications/policy');
|
||||
apiRequestGet<NotificationPolicyJSON>('v2/notifications/policy');
|
||||
|
||||
export const apiUpdateNotificationsPolicy = (
|
||||
policy: Partial<NotificationPolicyJSON>,
|
||||
) => apiRequestPut<NotificationPolicyJSON>('/v2/notifications/policy', policy);
|
||||
) => apiRequestPut<NotificationPolicyJSON>('v2/notifications/policy', policy);
|
||||
|
|
|
@ -60,12 +60,12 @@ export interface BaseNotificationGroupJSON {
|
|||
|
||||
interface NotificationGroupWithStatusJSON extends BaseNotificationGroupJSON {
|
||||
type: NotificationWithStatusType;
|
||||
status_id: string;
|
||||
status_id: string | null;
|
||||
}
|
||||
|
||||
interface NotificationWithStatusJSON extends BaseNotificationJSON {
|
||||
type: NotificationWithStatusType;
|
||||
status: ApiStatusJSON;
|
||||
status: ApiStatusJSON | null;
|
||||
}
|
||||
|
||||
interface ReportNotificationGroupJSON extends BaseNotificationGroupJSON {
|
||||
|
|
|
@ -58,6 +58,29 @@ export interface ApiPreviewCardJSON {
|
|||
authors: ApiPreviewCardAuthorJSON[];
|
||||
}
|
||||
|
||||
export type FilterContext =
|
||||
| 'home'
|
||||
| 'notifications'
|
||||
| 'public'
|
||||
| 'thread'
|
||||
| 'account';
|
||||
|
||||
export interface ApiFilterJSON {
|
||||
id: string;
|
||||
title: string;
|
||||
context: FilterContext;
|
||||
expires_at: string;
|
||||
filter_action: 'warn' | 'hide';
|
||||
keywords?: unknown[]; // TODO: FilterKeywordSerializer
|
||||
statuses?: unknown[]; // TODO: FilterStatusSerializer
|
||||
}
|
||||
|
||||
export interface ApiFilterResultJSON {
|
||||
filter: ApiFilterJSON;
|
||||
keyword_matches: string[];
|
||||
status_matches: string[];
|
||||
}
|
||||
|
||||
export interface ApiStatusJSON {
|
||||
id: string;
|
||||
created_at: string;
|
||||
|
@ -80,8 +103,7 @@ export interface ApiStatusJSON {
|
|||
bookmarked?: boolean;
|
||||
pinned?: boolean;
|
||||
|
||||
// filtered: FilterResult[]
|
||||
filtered: unknown; // TODO
|
||||
filtered?: ApiFilterResultJSON[];
|
||||
content?: string;
|
||||
text?: string;
|
||||
|
||||
|
|
|
@ -1,12 +1,15 @@
|
|||
import { FormattedMessage } from 'react-intl';
|
||||
|
||||
import classNames from 'classnames';
|
||||
|
||||
interface Props {
|
||||
resource: JSX.Element;
|
||||
url: string;
|
||||
className?: string;
|
||||
}
|
||||
|
||||
export const TimelineHint: React.FC<Props> = ({ resource, url }) => (
|
||||
<div className='timeline-hint'>
|
||||
export const TimelineHint: React.FC<Props> = ({ className, resource, url }) => (
|
||||
<div className={classNames('timeline-hint', className)}>
|
||||
<strong>
|
||||
<FormattedMessage
|
||||
id='timeline_hint.remote_resource_not_displayed'
|
||||
|
|
|
@ -45,14 +45,18 @@ class ColumnSettings extends PureComponent {
|
|||
|
||||
return (
|
||||
<div className='column-settings'>
|
||||
{alertsEnabled && browserSupport && browserPermission === 'denied' && (
|
||||
<span className='warning-hint'><FormattedMessage id='notifications.permission_denied' defaultMessage='Desktop notifications are unavailable due to previously denied browser permissions request' /></span>
|
||||
)}
|
||||
|
||||
<section>
|
||||
<ClearColumnButton onClick={onClear} />
|
||||
</section>
|
||||
|
||||
{alertsEnabled && browserSupport && browserPermission === 'denied' && (
|
||||
<section>
|
||||
<span className='warning-hint'>
|
||||
<FormattedMessage id='notifications.permission_denied' defaultMessage='Desktop notifications are unavailable due to previously denied browser permissions request' />
|
||||
</span>
|
||||
</section>
|
||||
)}
|
||||
|
||||
{alertsEnabled && browserSupport && browserPermission === 'default' && (
|
||||
<section>
|
||||
<span className='warning-hint'>
|
||||
|
|
|
@ -37,7 +37,11 @@ export const NotificationMention: React.FC<{
|
|||
unread: boolean;
|
||||
}> = ({ notification, unread }) => {
|
||||
const [isDirect, isReply] = useAppSelector((state) => {
|
||||
const status = state.statuses.get(notification.statusId) as Status;
|
||||
const status = state.statuses.get(notification.statusId) as
|
||||
| Status
|
||||
| undefined;
|
||||
|
||||
if (!status) return [false, false] as const;
|
||||
|
||||
return [
|
||||
status.get('visibility') === 'direct',
|
||||
|
|
|
@ -23,7 +23,7 @@ export const NotificationWithStatus: React.FC<{
|
|||
icon: IconProp;
|
||||
iconId: string;
|
||||
accountIds: string[];
|
||||
statusId: string;
|
||||
statusId: string | undefined;
|
||||
count: number;
|
||||
labelRenderer: LabelRenderer;
|
||||
unread: boolean;
|
||||
|
@ -76,6 +76,8 @@ export const NotificationWithStatus: React.FC<{
|
|||
[dispatch, statusId],
|
||||
);
|
||||
|
||||
if (!statusId) return null;
|
||||
|
||||
return (
|
||||
<HotKeys handlers={handlers}>
|
||||
<div
|
||||
|
|
|
@ -629,7 +629,7 @@ class Status extends ImmutablePureComponent {
|
|||
const isIndexable = !status.getIn(['account', 'noindex']);
|
||||
|
||||
if (!isLocal) {
|
||||
remoteHint = <TimelineHint url={status.get('url')} resource={<FormattedMessage id='timeline_hint.resources.replies' defaultMessage='Some replies' />} />;
|
||||
remoteHint = <TimelineHint className={classNames(!!descendants && 'timeline-hint--with-descendants')} url={status.get('url')} resource={<FormattedMessage id='timeline_hint.resources.replies' defaultMessage='Some replies' />} />;
|
||||
}
|
||||
|
||||
const handlers = {
|
||||
|
|
|
@ -25,7 +25,7 @@ export const ConfirmLogOutModal: React.FC<BaseConfirmationModalProps> = ({
|
|||
const intl = useIntl();
|
||||
|
||||
const onConfirm = useCallback(() => {
|
||||
logOut();
|
||||
void logOut();
|
||||
}, []);
|
||||
|
||||
return (
|
||||
|
|
|
@ -60,7 +60,7 @@ export const IgnoreNotificationsModal = ({ filterType }) => {
|
|||
<div className='safety-action-modal__bullet-points'>
|
||||
<div>
|
||||
<div className='safety-action-modal__bullet-points__icon'><Icon icon={InventoryIcon} /></div>
|
||||
<div><FormattedMessage id='ignore_notifications_modal.filter_to_review_separately' defaultMessage='You can review filtered notifications speparately' /></div>
|
||||
<div><FormattedMessage id='ignore_notifications_modal.filter_to_review_separately' defaultMessage='You can review filtered notifications separately' /></div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
|
|
|
@ -336,7 +336,6 @@
|
|||
"notification.admin.sign_up": "{name} se rechistró",
|
||||
"notification.follow": "{name} t'empecipió a seguir",
|
||||
"notification.follow_request": "{name} ha solicitau seguir-te",
|
||||
"notification.mention": "{name} t'ha mencionau",
|
||||
"notification.own_poll": "La tuya enqüesta ha rematau",
|
||||
"notification.reblog": "{name} ha retutau la tuya publicación",
|
||||
"notification.status": "{name} acaba de publicar",
|
||||
|
|
|
@ -464,7 +464,6 @@
|
|||
"notification.favourite": "أضاف {name} منشورك إلى مفضلته",
|
||||
"notification.follow": "يتابعك {name}",
|
||||
"notification.follow_request": "لقد طلب {name} متابعتك",
|
||||
"notification.mention": "{name} ذكرك",
|
||||
"notification.moderation-warning.learn_more": "اعرف المزيد",
|
||||
"notification.moderation_warning": "لقد تلقيت تحذيرًا بالإشراف",
|
||||
"notification.moderation_warning.action_delete_statuses": "تم إزالة بعض مشاركاتك.",
|
||||
|
@ -528,7 +527,6 @@
|
|||
"notifications.policy.filter_not_following_title": "أشخاص لا تتابعهم",
|
||||
"notifications.policy.filter_private_mentions_hint": "تمت تصفيته إلا إذا أن يكون ردًا على ذكرك أو إذا كنت تتابع الحساب",
|
||||
"notifications.policy.filter_private_mentions_title": "إشارات خاصة غير مرغوب فيها",
|
||||
"notifications.policy.title": "تصفية الإشعارات من…",
|
||||
"notifications_permission_banner.enable": "تفعيل إشعارات سطح المكتب",
|
||||
"notifications_permission_banner.how_to_control": "لتلقي الإشعارات عندما لا يكون ماستدون مفتوح، قم بتفعيل إشعارات سطح المكتب، يمكنك التحكم بدقة في أنواع التفاعلات التي تولد إشعارات سطح المكتب من خلال زر الـ{icon} أعلاه بمجرد تفعيلها.",
|
||||
"notifications_permission_banner.title": "لا تفوت شيئاً أبداً",
|
||||
|
|
|
@ -11,14 +11,13 @@
|
|||
"about.not_available": "Esta información nun ta disponible nesti sirvidor.",
|
||||
"about.powered_by": "Una rede social descentralizada que tien la teunoloxía de {mastodon}",
|
||||
"about.rules": "Normes del sirvidor",
|
||||
"account.account_note_header": "Nota personal",
|
||||
"account.add_or_remove_from_list": "Amestar o quitar de les llistes",
|
||||
"account.badges.group": "Grupu",
|
||||
"account.block": "Bloquiar a @{name}",
|
||||
"account.block_domain": "Bloquiar el dominiu {domain}",
|
||||
"account.block_short": "Bloquiar",
|
||||
"account.blocked": "Perfil bloquiáu",
|
||||
"account.browse_more_on_origin_server": "Restolar más nel perfil orixinal",
|
||||
"account.copy": "Copiar I'enllaz al perfil",
|
||||
"account.direct": "Mentar a @{name} per privao",
|
||||
"account.disable_notifications": "Dexar d'avisame cuando @{name} espublice artículos",
|
||||
"account.domain_blocked": "Dominiu bloquiáu",
|
||||
|
@ -30,9 +29,7 @@
|
|||
"account.follow": "Siguir",
|
||||
"account.followers": "Siguidores",
|
||||
"account.followers.empty": "Naide sigue a esti perfil.",
|
||||
"account.following": "Siguiendo",
|
||||
"account.follows.empty": "Esti perfil nun sigue a naide.",
|
||||
"account.go_to_profile": "Dir al perfil",
|
||||
"account.hide_reblogs": "Anubrir los artículos compartíos de @{name}",
|
||||
"account.in_memoriam": "N'alcordanza.",
|
||||
"account.joined_short": "Data de xunión",
|
||||
|
@ -41,15 +38,16 @@
|
|||
"account.mention": "Mentar a @{name}",
|
||||
"account.moved_to": "{name} indicó qu'agora la so cuenta nueva ye:",
|
||||
"account.mute": "Desactivar los avisos de @{name}",
|
||||
"account.no_bio": "Nun se fornió nenguna descripción.",
|
||||
"account.open_original_page": "Abrir la páxina orixinal",
|
||||
"account.posts": "Artículos",
|
||||
"account.posts_with_replies": "Artículos y rempuestes",
|
||||
"account.report": "Informar de @{name}",
|
||||
"account.requested_follow": "{name} solicitó siguite",
|
||||
"account.share": "Compartir el perfil de @{name}",
|
||||
"account.show_reblogs": "Amosar los artículos compartíos de @{name}",
|
||||
"account.unblock": "Desbloquiar a @{name}",
|
||||
"account.unblock_domain": "Desbloquiar el dominiu «{domain}»",
|
||||
"account.unblock_short": "Desbloquiar",
|
||||
"account.unendorse": "Dexar de destacar nel perfil",
|
||||
"account.unfollow": "Dexar de siguir",
|
||||
"account.unmute": "Activar los avisos de @{name}",
|
||||
|
@ -150,7 +148,6 @@
|
|||
"empty_column.account_timeline": "¡Equí nun hai nengún artículu!",
|
||||
"empty_column.blocks": "Nun bloquiesti a nengún perfil.",
|
||||
"empty_column.bookmarked_statuses": "Nun tienes nengún artículu en Marcadores. Cuando amiestes dalgún, apaez equí.",
|
||||
"empty_column.community": "La llinia de tiempu llocal ta balera. ¡Espubliza daqué públicamente pa comenzar l'alderique!",
|
||||
"empty_column.direct": "Nun tienes nenguna mención privada. Cuando unvies o recibas dalguna, apaez equí.",
|
||||
"empty_column.domain_blocks": "Nun hai nengún dominiu bloquiáu.",
|
||||
"empty_column.explore_statuses": "Agora nun hai nada en tendencia. ¡Volvi equí dempués!",
|
||||
|
@ -186,6 +183,7 @@
|
|||
"filter_modal.select_filter.subtitle": "Usa una categoría esistente o créala",
|
||||
"filter_modal.select_filter.title": "Peñerar esti artículu",
|
||||
"filter_modal.title.status": "Peñera d'un artículu",
|
||||
"firehose.all": "Tolos sirvidores",
|
||||
"firehose.local": "Esti sirvidor",
|
||||
"firehose.remote": "Otros sirvidores",
|
||||
"follow_request.authorize": "Autorizar",
|
||||
|
@ -195,6 +193,7 @@
|
|||
"follow_suggestions.friends_of_friends_longer": "Ye popular ente los perfiles que sigues",
|
||||
"follow_suggestions.personalized_suggestion": "Suxerencia personalizada",
|
||||
"follow_suggestions.popular_suggestion": "Suxerencia popular",
|
||||
"follow_suggestions.popular_suggestion_longer": "Ye popular na instancia {domain}",
|
||||
"follow_suggestions.similar_to_recently_followed_longer": "Aseméyase a los perfiles que siguiesti apocayá",
|
||||
"follow_suggestions.view_all": "Ver too",
|
||||
"follow_suggestions.who_to_follow": "A quién siguir",
|
||||
|
@ -296,7 +295,6 @@
|
|||
"notification.admin.sign_up": "{name} rexistróse",
|
||||
"notification.follow": "{name} siguióte",
|
||||
"notification.follow_request": "{name} solicitó siguite",
|
||||
"notification.mention": "{name} mentóte",
|
||||
"notification.reblog": "{name} compartió'l to artículu",
|
||||
"notification.status": "{name} ta acabante d'espublizar",
|
||||
"notification.update": "{name} editó un artículu",
|
||||
|
@ -354,7 +352,6 @@
|
|||
"relative_time.seconds": "{number} s",
|
||||
"relative_time.today": "güei",
|
||||
"reply_indicator.cancel": "Encaboxar",
|
||||
"reply_indicator.poll": "Encuesta",
|
||||
"report.block": "Bloquiar",
|
||||
"report.categories.spam": "Spam",
|
||||
"report.categories.violation": "El conteníu incumple una o más normes del sirvidor",
|
||||
|
|
|
@ -481,7 +481,6 @@
|
|||
"notification.favourite": "Ваш допіс упадабаны {name}",
|
||||
"notification.follow": "{name} падпісаўся на вас",
|
||||
"notification.follow_request": "{name} адправіў запыт на падпіску",
|
||||
"notification.mention": "{name} згадаў вас",
|
||||
"notification.moderation-warning.learn_more": "Даведацца больш",
|
||||
"notification.moderation_warning": "Вы атрымалі папярэджанне аб мадэрацыі",
|
||||
"notification.moderation_warning.action_delete_statuses": "Некаторыя вашыя допісы былі выдаленыя.",
|
||||
|
@ -493,7 +492,6 @@
|
|||
"notification.moderation_warning.action_suspend": "Ваш уліковы запіс быў прыпынены.",
|
||||
"notification.own_poll": "Ваша апытанне скончылася",
|
||||
"notification.poll": "Апытанне, дзе вы прынялі ўдзел, скончылася",
|
||||
"notification.private_mention": "{name} згадаў вас асабіста",
|
||||
"notification.reblog": "{name} пашырыў ваш допіс",
|
||||
"notification.relationships_severance_event": "Страціў сувязь з {name}",
|
||||
"notification.relationships_severance_event.account_suspension": "Адміністратар з {from} прыпыніў працу {target}, што азначае, што вы больш не можаце атрымліваць ад іх абнаўлення ці ўзаемадзейнічаць з імі.",
|
||||
|
@ -552,7 +550,6 @@
|
|||
"notifications.policy.filter_not_following_title": "Людзі, на якіх вы не падпісаны",
|
||||
"notifications.policy.filter_private_mentions_hint": "Фільтруецца за выключэннем адказу на вашае згадванне ці калі вы падпісаны на адпраўніка",
|
||||
"notifications.policy.filter_private_mentions_title": "Непажаданыя асаблівыя згадванні",
|
||||
"notifications.policy.title": "Адфільтроўваць апавяшчэнні ад…",
|
||||
"notifications_permission_banner.enable": "Уключыць апавяшчэнні на працоўным стале",
|
||||
"notifications_permission_banner.how_to_control": "Каб атрымліваць апавяшчэнні, калі Mastodon не адкрыты, уключыце апавяшчэнні працоўнага стала. Вы зможаце дакладна кантраляваць, якія падзеі будуць ствараць апавяшчэнні з дапамогай {icon} кнопкі, як толькі яны будуць уключаны.",
|
||||
"notifications_permission_banner.title": "Не прапусціце нічога",
|
||||
|
|
|
@ -482,7 +482,8 @@
|
|||
"notification.favourite": "{name} направи любима публикацията ви",
|
||||
"notification.follow": "{name} ви последва",
|
||||
"notification.follow_request": "{name} поиска да ви последва",
|
||||
"notification.mention": "{name} ви спомена",
|
||||
"notification.label.mention": "Споменаване",
|
||||
"notification.mention": "Споменаване",
|
||||
"notification.moderation-warning.learn_more": "Научете повече",
|
||||
"notification.moderation_warning": "Получихте предупреждение за модериране",
|
||||
"notification.moderation_warning.action_delete_statuses": "Някои от публикациите ви са премахнати.",
|
||||
|
@ -494,7 +495,6 @@
|
|||
"notification.moderation_warning.action_suspend": "Вашият акаунт е спрян.",
|
||||
"notification.own_poll": "Анкетата ви приключи",
|
||||
"notification.poll": "Анкета, в която гласувахте, приключи",
|
||||
"notification.private_mention": "{name} лично ви спомена",
|
||||
"notification.reblog": "{name} подсили ваша публикация",
|
||||
"notification.relationships_severance_event": "Изгуби се връзката с {name}",
|
||||
"notification.relationships_severance_event.account_suspension": "Администратор от {from} спря {target}, което значи че повече не може да получавате новости от тях или да взаимодействате с тях.",
|
||||
|
@ -505,10 +505,15 @@
|
|||
"notification.update": "{name} промени публикация",
|
||||
"notification_requests.accept": "Приемам",
|
||||
"notification_requests.dismiss": "Отхвърлям",
|
||||
"notification_requests.enter_selection_mode": "Изберете",
|
||||
"notification_requests.exit_selection_mode": "Отказ",
|
||||
"notification_requests.explainer_for_limited_account": "Известията от този акаунт са прецедени, защото акаунтът е ограничен от модератор.",
|
||||
"notification_requests.explainer_for_limited_remote_account": "Известията от този акаунт са прецедени, защото акаунтът или сървърът му е ограничен от модератор.",
|
||||
"notification_requests.maximize": "Максимизиране",
|
||||
"notification_requests.minimize_banner": "Минимизиране на банера за филтрирани известия",
|
||||
"notification_requests.notifications_from": "Известия от {name}",
|
||||
"notification_requests.title": "Филтрирани известия",
|
||||
"notification_requests.view": "Преглед на известията",
|
||||
"notifications.clear": "Изчистване на известията",
|
||||
"notifications.clear_confirmation": "Наистина ли искате да изчистите завинаги всичките си известия?",
|
||||
"notifications.clear_title": "Изчиствате ли известията?",
|
||||
|
@ -545,6 +550,11 @@
|
|||
"notifications.permission_denied": "Известията на работния плот не са налични поради предварително отказана заявка за разрешение в браузъра",
|
||||
"notifications.permission_denied_alert": "Известията на работния плот не могат да се включат, тъй като разрешението на браузъра е отказвано преди",
|
||||
"notifications.permission_required": "Известията на работния плот ги няма, щото няма дадено нужното позволение.",
|
||||
"notifications.policy.accept": "Приемам",
|
||||
"notifications.policy.accept_hint": "Показване в известия",
|
||||
"notifications.policy.filter": "Филтър",
|
||||
"notifications.policy.filter_limited_accounts_hint": "Ограничено от модераторите на сървъра",
|
||||
"notifications.policy.filter_limited_accounts_title": "Модерирани акаунти",
|
||||
"notifications.policy.filter_new_accounts.hint": "Сътворено през {days, plural, one {последния ден} other {последните # дена}}",
|
||||
"notifications.policy.filter_new_accounts_title": "Нови акаунти",
|
||||
"notifications.policy.filter_not_followers_hint": "Включително хора, които са ви последвали по-малко от {days, plural, one {ден} other {# дни}}",
|
||||
|
@ -553,7 +563,6 @@
|
|||
"notifications.policy.filter_not_following_title": "Хора, които не следвате",
|
||||
"notifications.policy.filter_private_mentions_hint": "Филтрирано, освен ако е отговор към ваше собствено споменаване или ако следвате подателя",
|
||||
"notifications.policy.filter_private_mentions_title": "Непоискани частни споменавания",
|
||||
"notifications.policy.title": "Да се филтрират известия от…",
|
||||
"notifications_permission_banner.enable": "Включване на известията на работния плот",
|
||||
"notifications_permission_banner.how_to_control": "За да получавате известия, когато Mastodon не е отворен, включете известията на работния плот. Може да управлявате точно кои видове взаимодействия пораждат известия на работния плот чрез бутона {icon} по-горе, след като бъдат включени.",
|
||||
"notifications_permission_banner.title": "Никога не пропускайте нищо",
|
||||
|
|
|
@ -314,7 +314,6 @@
|
|||
"not_signed_in_indicator.not_signed_in": "You need to sign in to access this resource.",
|
||||
"notification.follow": "{name} আপনাকে অনুসরণ করেছেন",
|
||||
"notification.follow_request": "{name} আপনাকে অনুসরণ করার জন্য অনুরধ করেছে",
|
||||
"notification.mention": "{name} আপনাকে উল্লেখ করেছেন",
|
||||
"notification.own_poll": "আপনার পোল শেষ হয়েছে",
|
||||
"notification.reblog": "{name} আপনার কার্যক্রমে সমর্থন দেখিয়েছেন",
|
||||
"notifications.clear": "প্রজ্ঞাপনগুলো মুছে ফেলতে",
|
||||
|
|
|
@ -390,7 +390,6 @@
|
|||
"notification.admin.sign_up": "{name} en·he deus lakaet e·hec'h anv",
|
||||
"notification.follow": "heuliañ a ra {name} ac'hanoc'h",
|
||||
"notification.follow_request": "Gant {name} eo bet goulennet ho heuliañ",
|
||||
"notification.mention": "Gant {name} oc'h bet meneget",
|
||||
"notification.moderation-warning.learn_more": "Gouzout hiroc'h",
|
||||
"notification.own_poll": "Echu eo ho sontadeg",
|
||||
"notification.reblog": "Gant {name} eo bet skignet ho toud",
|
||||
|
|
|
@ -356,6 +356,16 @@
|
|||
"home.pending_critical_update.link": "Veure actualitzacions",
|
||||
"home.pending_critical_update.title": "Actualització de seguretat crítica disponible!",
|
||||
"home.show_announcements": "Mostra els anuncis",
|
||||
"ignore_notifications_modal.disclaimer": "Mastodon no pot informar als usuaris de que heu ignorat notificacions seves.\nIgnorar notificacions no evitarà que se segueixin enviant els missatges.",
|
||||
"ignore_notifications_modal.filter_to_act_users": "Encara podreu acceptar, rebutjar o reportar usuaris",
|
||||
"ignore_notifications_modal.filter_to_avoid_confusion": "Filtrar ajuda a evitar potencials confusions",
|
||||
"ignore_notifications_modal.filter_to_review_separately": "Podeu revisar separadament notificacions filtrades",
|
||||
"ignore_notifications_modal.ignore": "Ignora les notificacions",
|
||||
"ignore_notifications_modal.limited_accounts_title": "Voleu ignorar les notificacions dels comptes moderats?",
|
||||
"ignore_notifications_modal.new_accounts_title": "Voleu ignorar les notificacions dels comptes nous?",
|
||||
"ignore_notifications_modal.not_followers_title": "Voleu ignorar les notificacions de qui no us segueix?",
|
||||
"ignore_notifications_modal.not_following_title": "Voleu ignorar les notificacions de qui no seguiu?",
|
||||
"ignore_notifications_modal.private_mentions_title": "Voleu ignorar les notificacions de mencions privades no sol·licitades?",
|
||||
"interaction_modal.description.favourite": "Amb un compte a Mastodon pots afavorir aquest tut perquè l'autor sàpiga que t'ha agradat i desar-lo per a més endavant.",
|
||||
"interaction_modal.description.follow": "Amb un compte a Mastodon, pots seguir a {name} per a rebre els seus tuts en la teva línia de temps d'Inici.",
|
||||
"interaction_modal.description.reblog": "Amb un compte a Mastodon, pots impulsar aquest tut per a compartir-lo amb els teus seguidors.",
|
||||
|
@ -482,7 +492,11 @@
|
|||
"notification.favourite": "{name} ha afavorit el teu tut",
|
||||
"notification.follow": "{name} et segueix",
|
||||
"notification.follow_request": "{name} ha sol·licitat de seguir-te",
|
||||
"notification.mention": "{name} t'ha esmentat",
|
||||
"notification.label.mention": "Menció",
|
||||
"notification.label.private_mention": "Menció privada",
|
||||
"notification.label.private_reply": "Resposta en privat",
|
||||
"notification.label.reply": "Resposta",
|
||||
"notification.mention": "Menció",
|
||||
"notification.moderation-warning.learn_more": "Per a saber-ne més",
|
||||
"notification.moderation_warning": "Heu rebut un avís de moderació",
|
||||
"notification.moderation_warning.action_delete_statuses": "S'han eliminat algunes de les vostres publicacions.",
|
||||
|
@ -494,7 +508,6 @@
|
|||
"notification.moderation_warning.action_suspend": "S'ha suspès el vostre compte.",
|
||||
"notification.own_poll": "La teva enquesta ha finalitzat",
|
||||
"notification.poll": "Ha finalitzat una enquesta que heu respost",
|
||||
"notification.private_mention": "{name} us ha esmentat en privat",
|
||||
"notification.reblog": "{name} t'ha impulsat",
|
||||
"notification.relationships_severance_event": "S'han perdut les connexions amb {name}",
|
||||
"notification.relationships_severance_event.account_suspension": "Un administrador de {from} ha suspès {target}; això vol dir que ja no en podreu rebre actualitzacions o interactuar-hi.",
|
||||
|
@ -504,7 +517,15 @@
|
|||
"notification.status": "{name} acaba de publicar",
|
||||
"notification.update": "{name} ha editat un tut",
|
||||
"notification_requests.accept": "Accepta",
|
||||
"notification_requests.accept_all": "Accepta-ho tot",
|
||||
"notification_requests.accept_multiple": "{count, plural, one {Accepta # petició} other {Accepta # peticions}}",
|
||||
"notification_requests.confirm_accept_all.button": "Accepta-ho tot",
|
||||
"notification_requests.confirm_accept_all.message": "Esteu a punt d'acceptar {count, plural, one {una petició de notificació} other {# peticions de notificació}}. N'esteu segurs de continuar?",
|
||||
"notification_requests.confirm_accept_all.title": "Accepteu peticions de notificació?",
|
||||
"notification_requests.confirm_dismiss_all.button": "Descarta-les totes",
|
||||
"notification_requests.dismiss": "Ignora",
|
||||
"notification_requests.explainer_for_limited_account": "S'han filtrat les notificacions d'aquest compte perquè un moderador l'ha limitat.",
|
||||
"notification_requests.explainer_for_limited_remote_account": "S'han filtrat les notificacions d'aquest compte perquè un moderador ha limitat el compte o el seu servidor.",
|
||||
"notification_requests.maximize": "Maximitza",
|
||||
"notification_requests.minimize_banner": "Minimitza el bàner de notificacions filtrades",
|
||||
"notification_requests.notifications_from": "Notificacions de {name}",
|
||||
|
@ -545,6 +566,8 @@
|
|||
"notifications.permission_denied": "Les notificacions d’escriptori no estan disponibles perquè prèviament s’ha denegat el permís al navegador",
|
||||
"notifications.permission_denied_alert": "No es poden activar les notificacions de l'escriptori perquè abans s'ha denegat el permís del navegador",
|
||||
"notifications.permission_required": "Les notificacions d'escriptori no estan disponibles perquè el permís requerit no ha estat concedit.",
|
||||
"notifications.policy.filter_limited_accounts_hint": "Limitat pels moderadors del servidor",
|
||||
"notifications.policy.filter_limited_accounts_title": "Comptes moderats",
|
||||
"notifications.policy.filter_new_accounts.hint": "Creat {days, plural, one {ahir} other {durant els # dies passats}}",
|
||||
"notifications.policy.filter_new_accounts_title": "Comptes nous",
|
||||
"notifications.policy.filter_not_followers_hint": "Incloent les persones que us segueixen fa menys {days, plural, one {d'un dia} other {de # dies}}",
|
||||
|
@ -553,7 +576,6 @@
|
|||
"notifications.policy.filter_not_following_title": "Persones que no seguiu",
|
||||
"notifications.policy.filter_private_mentions_hint": "Filtrat si no és que és en resposta a una menció vostra o si seguiu el remitent",
|
||||
"notifications.policy.filter_private_mentions_title": "Mencions privades no sol·licitades",
|
||||
"notifications.policy.title": "Filtra les notificacions de…",
|
||||
"notifications_permission_banner.enable": "Activa les notificacions d’escriptori",
|
||||
"notifications_permission_banner.how_to_control": "Per a rebre notificacions quan Mastodon no és obert cal activar les notificacions d’escriptori. Pots controlar amb precisió quins tipus d’interaccions generen notificacions d’escriptori després d’activar el botó {icon} de dalt.",
|
||||
"notifications_permission_banner.title": "No et perdis mai res",
|
||||
|
@ -794,6 +816,7 @@
|
|||
"timeline_hint.remote_resource_not_displayed": "No es mostren {resource} d'altres servidors.",
|
||||
"timeline_hint.resources.followers": "Seguidors",
|
||||
"timeline_hint.resources.follows": "Seguiments",
|
||||
"timeline_hint.resources.replies": "Algunes respostes",
|
||||
"timeline_hint.resources.statuses": "Tuts més antics",
|
||||
"trends.counter_by_accounts": "{count, plural, one {{counter} persona} other {{counter} persones}} en {days, plural, one {el passat dia} other {els passats {days} dies}}",
|
||||
"trends.trending_now": "És tendència",
|
||||
|
|
|
@ -385,7 +385,6 @@
|
|||
"notification.admin.sign_up": "{name} تۆمارکرا",
|
||||
"notification.follow": "{name} دوای تۆ کەوت",
|
||||
"notification.follow_request": "{name} داوای کردووە کە شوێنت بکەوێت",
|
||||
"notification.mention": "{name} باسی ئێوەی کرد",
|
||||
"notification.own_poll": "ڕاپرسیەکەت کۆتایی هات",
|
||||
"notification.reblog": "{name} نووسراوەکەتی دووبارە توتاند",
|
||||
"notification.status": "{name} تازە بڵاوکرایەوە",
|
||||
|
|
|
@ -236,7 +236,6 @@
|
|||
"not_signed_in_indicator.not_signed_in": "You need to sign in to access this resource.",
|
||||
"notification.follow": "{name} v'hà seguitatu",
|
||||
"notification.follow_request": "{name} vole abbunassi à u vostru contu",
|
||||
"notification.mention": "{name} v'hà mintuvatu",
|
||||
"notification.own_poll": "U vostru scandagliu hè compiu",
|
||||
"notification.reblog": "{name} hà spartutu u vostru statutu",
|
||||
"notification.status": "{name} hà appena pubblicatu",
|
||||
|
|
|
@ -477,7 +477,6 @@
|
|||
"notification.favourite": "Uživatel {name} si oblíbil váš příspěvek",
|
||||
"notification.follow": "Uživatel {name} vás začal sledovat",
|
||||
"notification.follow_request": "Uživatel {name} požádal o povolení vás sledovat",
|
||||
"notification.mention": "Uživatel {name} vás zmínil",
|
||||
"notification.moderation-warning.learn_more": "Zjistit více",
|
||||
"notification.moderation_warning": "Obdrželi jste moderační varování",
|
||||
"notification.moderation_warning.action_delete_statuses": "Některé z vašich příspěvků byly odstraněny.",
|
||||
|
@ -489,7 +488,6 @@
|
|||
"notification.moderation_warning.action_suspend": "Váš účet byl pozastaven.",
|
||||
"notification.own_poll": "Vaše anketa skončila",
|
||||
"notification.poll": "Anketa, ve které jste hlasovali, skončila",
|
||||
"notification.private_mention": "{name} vás soukromě zmínil",
|
||||
"notification.reblog": "Uživatel {name} boostnul váš příspěvek",
|
||||
"notification.relationships_severance_event": "Kontakt ztracen s {name}",
|
||||
"notification.relationships_severance_event.account_suspension": "Administrátor z {from} pozastavil {target}, což znamená, že již od nich nemůžete přijímat aktualizace nebo s nimi interagovat.",
|
||||
|
@ -548,7 +546,6 @@
|
|||
"notifications.policy.filter_not_following_title": "Lidé, které nesledujete",
|
||||
"notifications.policy.filter_private_mentions_hint": "Vyfiltrováno, pokud to není odpověď na vaši zmínku nebo pokud sledujete odesílatele",
|
||||
"notifications.policy.filter_private_mentions_title": "Nevyžádané soukromé zmínky",
|
||||
"notifications.policy.title": "Vyfiltrovat oznámení od…",
|
||||
"notifications_permission_banner.enable": "Povolit oznámení na ploše",
|
||||
"notifications_permission_banner.how_to_control": "Chcete-li dostávat oznámení, i když nemáte Mastodon otevřený, povolte oznámení na ploše. Můžete si zvolit, o kterých druzích interakcí chcete být oznámením na ploše informování pod tlačítkem {icon} výše.",
|
||||
"notifications_permission_banner.title": "Nenechte si nic uniknout",
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
"about.not_available": "Nid yw'r wybodaeth hon ar gael ar y gweinydd hwn.",
|
||||
"about.powered_by": "Cyfrwng cymdeithasol datganoledig wedi ei yrru gan {mastodon}",
|
||||
"about.rules": "Rheolau'r gweinydd",
|
||||
"account.account_note_header": "Nodyn personol",
|
||||
"account.add_or_remove_from_list": "Ychwanegu neu Ddileu o'r rhestrau",
|
||||
"account.badges.bot": "Bot",
|
||||
"account.badges.group": "Grŵp",
|
||||
|
@ -299,6 +300,7 @@
|
|||
"filter_modal.select_filter.subtitle": "Defnyddiwch gategori sy'n bodoli eisoes neu crëu un newydd",
|
||||
"filter_modal.select_filter.title": "Hidlo'r postiad hwn",
|
||||
"filter_modal.title.status": "Hidlo postiad",
|
||||
"filtered_notifications_banner.pending_requests": "Gan {count, plural, =0 {no one} one {un person} two {# berson} few {# pherson} other {# person}} efallai eich bod yn eu hadnabod",
|
||||
"filtered_notifications_banner.title": "Hysbysiadau wedi'u hidlo",
|
||||
"firehose.all": "Popeth",
|
||||
"firehose.local": "Gweinydd hwn",
|
||||
|
@ -354,6 +356,17 @@
|
|||
"home.pending_critical_update.link": "Gweld y diweddariadau",
|
||||
"home.pending_critical_update.title": "Mae diweddariad diogelwch hanfodol ar gael!",
|
||||
"home.show_announcements": "Dangos cyhoeddiadau",
|
||||
"ignore_notifications_modal.disclaimer": "Ni all Mastodon hysbysu defnyddwyr eich bod wedi anwybyddu eu hysbysiadau. Ni fydd anwybyddu hysbysiadau yn atal y negeseuon eu hunain rhag cael eu hanfon.",
|
||||
"ignore_notifications_modal.filter_instead": "Hidlo yn lle hynny",
|
||||
"ignore_notifications_modal.filter_to_act_users": "Byddwch yn dal i allu derbyn, gwrthod neu adrodd ar ddefnyddwyr",
|
||||
"ignore_notifications_modal.filter_to_avoid_confusion": "Mae hidlo yn helpu i osgoi dryswch posibl",
|
||||
"ignore_notifications_modal.filter_to_review_separately": "Gallwch adolygu hysbysiadau wedi'u hidlo ar wahân",
|
||||
"ignore_notifications_modal.ignore": "Anwybyddu hysbysiadau",
|
||||
"ignore_notifications_modal.limited_accounts_title": "Anwybyddu hysbysiadau o gyfrifon wedi'u cymedroli?",
|
||||
"ignore_notifications_modal.new_accounts_title": "Anwybyddu hysbysiadau o gyfrifon newydd?",
|
||||
"ignore_notifications_modal.not_followers_title": "Anwybyddu hysbysiadau gan bobl nad ydynt yn eich dilyn?",
|
||||
"ignore_notifications_modal.not_following_title": "Anwybyddu hysbysiadau gan bobl nad ydych yn eu dilyn?",
|
||||
"ignore_notifications_modal.private_mentions_title": "Anwybyddu hysbysiadau o Grybwylliadau Preifat digymell?",
|
||||
"interaction_modal.description.favourite": "Gyda chyfrif ar Mastodon, gallwch chi hoffi'r postiad hwn er mwyn roi gwybod i'r awdur eich bod chi'n ei werthfawrogi ac yn ei gadw ar gyfer nes ymlaen.",
|
||||
"interaction_modal.description.follow": "Gyda chyfrif ar Mastodon, gallwch ddilyn {name} i dderbyn eu postiadau yn eich llif cartref.",
|
||||
"interaction_modal.description.reblog": "Gyda chyfrif ar Mastodon, gallwch hybu'r postiad hwn i'w rannu â'ch dilynwyr.",
|
||||
|
@ -472,6 +485,7 @@
|
|||
"navigation_bar.security": "Diogelwch",
|
||||
"not_signed_in_indicator.not_signed_in": "Rhaid i chi fewngofnodi i weld yr adnodd hwn.",
|
||||
"notification.admin.report": "Adroddwyd ar {name} {target}",
|
||||
"notification.admin.report_account": "{name} reported {count, plural, one {un post} other {# postsiadau}} from {target} for {category}",
|
||||
"notification.admin.report_account_other": "Adroddodd {name} {count, plural, one {un post} two {# bost} few {# phost} other {# post}} gan {target}",
|
||||
"notification.admin.report_statuses": "Adroddodd {name} {target} ar gyfer {category}",
|
||||
"notification.admin.report_statuses_other": "Adroddodd {name} {target}",
|
||||
|
@ -479,7 +493,11 @@
|
|||
"notification.favourite": "Hoffodd {name} eich postiad",
|
||||
"notification.follow": "Dilynodd {name} chi",
|
||||
"notification.follow_request": "Mae {name} wedi gwneud cais i'ch dilyn",
|
||||
"notification.mention": "Crybwyllodd {name} amdanoch chi",
|
||||
"notification.label.mention": "Crybwyll",
|
||||
"notification.label.private_mention": "Crybwyll preifat",
|
||||
"notification.label.private_reply": "Ateb preifat",
|
||||
"notification.label.reply": "Ateb",
|
||||
"notification.mention": "Crybwyll",
|
||||
"notification.moderation-warning.learn_more": "Dysgu mwy",
|
||||
"notification.moderation_warning": "Rydych wedi derbyn rhybudd gan gymedrolwr",
|
||||
"notification.moderation_warning.action_delete_statuses": "Mae rhai o'ch postiadau wedi'u dileu.",
|
||||
|
@ -491,7 +509,6 @@
|
|||
"notification.moderation_warning.action_suspend": "Mae eich cyfrif wedi'i hatal.",
|
||||
"notification.own_poll": "Mae eich pleidlais wedi dod i ben",
|
||||
"notification.poll": "Mae arolwg y gwnaethoch bleidleisio ynddo wedi dod i ben",
|
||||
"notification.private_mention": "Mae {name} wedi eich crybwyll yn breifat",
|
||||
"notification.reblog": "Hybodd {name} eich post",
|
||||
"notification.relationships_severance_event": "Wedi colli cysylltiad â {name}",
|
||||
"notification.relationships_severance_event.account_suspension": "Mae gweinyddwr o {from} wedi atal {target}, sy'n golygu na allwch dderbyn diweddariadau ganddynt mwyach na rhyngweithio â nhw.",
|
||||
|
@ -501,10 +518,26 @@
|
|||
"notification.status": "{name} newydd ei bostio",
|
||||
"notification.update": "Golygodd {name} bostiad",
|
||||
"notification_requests.accept": "Derbyn",
|
||||
"notification_requests.accept_all": "Derbyn y cyfan",
|
||||
"notification_requests.accept_multiple": "{count, plural, one {Derbyn # cais} other {Derbyn # cais}}",
|
||||
"notification_requests.confirm_accept_all.button": "Derbyn y cyfan",
|
||||
"notification_requests.confirm_accept_all.message": "Rydych ar fin derbyn {count, plural, one {un cais hysbysu} other {# cais hysbysiad}}. A ydych yn siŵr eich bod am fwrw ymlaen?",
|
||||
"notification_requests.confirm_accept_all.title": "Derbyn ceisiadau hysbysu?",
|
||||
"notification_requests.confirm_dismiss_all.button": "Diystyru pob un",
|
||||
"notification_requests.confirm_dismiss_all.message": "Rydych ar fin diystyru {count, plural, one {un cais hysbysu} other {# cais hysbysiad}}. Ni fyddwch yn gallu cyrchu {count, plural, one {it} other {them}} yn hawdd eto. A ydych yn siŵr eich bod am fwrw ymlaen?",
|
||||
"notification_requests.confirm_dismiss_all.title": "Diystyru ceisiadau hysbysu?",
|
||||
"notification_requests.dismiss": "Cau",
|
||||
"notification_requests.dismiss_all": "Diystyru pob un",
|
||||
"notification_requests.dismiss_multiple": "{count, plural, one {Diystyru # cais} other {Diystyru # cais}}",
|
||||
"notification_requests.enter_selection_mode": "Dewis",
|
||||
"notification_requests.exit_selection_mode": "Canslo",
|
||||
"notification_requests.explainer_for_limited_account": "Mae hysbysiadau o'r cyfrif hwn wedi'u hidlo oherwydd bod y cyfrif wedi'i gyfyngu gan gymedrolwr.",
|
||||
"notification_requests.explainer_for_limited_remote_account": "Mae hysbysiadau o'r cyfrif hwn wedi'u hidlo oherwydd bod y cyfrif neu ei weinydd wedi'i gyfyngu gan gymedrolwr.",
|
||||
"notification_requests.maximize": "Mwyhau",
|
||||
"notification_requests.minimize_banner": "Lleihau baner hysbysiadau wedi'u hidlo",
|
||||
"notification_requests.notifications_from": "Hysbysiadau gan {name}",
|
||||
"notification_requests.title": "Hysbysiadau wedi'u hidlo",
|
||||
"notification_requests.view": "Gweld hysbysiadau",
|
||||
"notifications.clear": "Clirio hysbysiadau",
|
||||
"notifications.clear_confirmation": "Ydych chi'n siŵr eich bod am glirio'ch holl hysbysiadau am byth?",
|
||||
"notifications.clear_title": "Clirio hysbysiadau?",
|
||||
|
@ -541,6 +574,14 @@
|
|||
"notifications.permission_denied": "Nid oes hysbysiadau bwrdd gwaith ar gael oherwydd cais am ganiatâd porwr a wrthodwyd yn flaenorol",
|
||||
"notifications.permission_denied_alert": "Nid oes modd galluogi hysbysiadau bwrdd gwaith, gan fod caniatâd porwr wedi'i wrthod o'r blaen",
|
||||
"notifications.permission_required": "Nid oes hysbysiadau bwrdd gwaith ar gael oherwydd na roddwyd y caniatâd gofynnol.",
|
||||
"notifications.policy.accept": "Derbyn",
|
||||
"notifications.policy.accept_hint": "Dangos mewn hysbysiadau",
|
||||
"notifications.policy.drop": "Anwybyddu",
|
||||
"notifications.policy.drop_hint": "Anfon i'r gwagle, byth i'w gweld eto",
|
||||
"notifications.policy.filter": "Hidlo",
|
||||
"notifications.policy.filter_hint": "Anfon i flwch derbyn hysbysiadau wedi'u hidlo",
|
||||
"notifications.policy.filter_limited_accounts_hint": "Cyfyngedig gan gymedrolwyr gweinydd",
|
||||
"notifications.policy.filter_limited_accounts_title": "Cyfrifon wedi'u cymedroli",
|
||||
"notifications.policy.filter_new_accounts.hint": "Crëwyd o fewn {days, lluosog, un {yr un diwrnod} arall {y # diwrnod}} diwethaf",
|
||||
"notifications.policy.filter_new_accounts_title": "Cyfrifon newydd",
|
||||
"notifications.policy.filter_not_followers_hint": "Gan gynnwys pobl sydd wedi bod yn eich dilyn am llai {days, plural, un {nag un diwrnod} arall {na # diwrnod}}",
|
||||
|
@ -549,20 +590,20 @@
|
|||
"notifications.policy.filter_not_following_title": "Pobl nad ydych yn eu dilyn",
|
||||
"notifications.policy.filter_private_mentions_hint": "Wedi'i hidlo oni bai ei fod mewn ymateb i'ch crybwylliad eich hun neu os ydych yn dilyn yr anfonwr",
|
||||
"notifications.policy.filter_private_mentions_title": "Crybwylliadau preifat digymell",
|
||||
"notifications.policy.title": "Hidlo hysbysiadau gan…",
|
||||
"notifications.policy.title": "Rheoli hysbysiadau gan…",
|
||||
"notifications_permission_banner.enable": "Galluogi hysbysiadau bwrdd gwaith",
|
||||
"notifications_permission_banner.how_to_control": "I dderbyn hysbysiadau pan nad yw Mastodon ar agor, galluogwch hysbysiadau bwrdd gwaith. Gallwch reoli'n union pa fathau o ryngweithiadau sy'n cynhyrchu hysbysiadau bwrdd gwaith trwy'r botwm {icon} uchod unwaith y byddan nhw wedi'u galluogi.",
|
||||
"notifications_permission_banner.title": "Peidiwch â cholli dim",
|
||||
"onboarding.action.back": "Ewch â fi yn ôl",
|
||||
"onboarding.actions.back": "Ewch â fi yn ôl",
|
||||
"onboarding.actions.go_to_explore": "Gweld beth yw'r tuedd",
|
||||
"onboarding.action.back": "Ewch â fi nôl",
|
||||
"onboarding.actions.back": "Ewch â fi nôl",
|
||||
"onboarding.actions.go_to_explore": "Gweld beth sy'n trendio",
|
||||
"onboarding.actions.go_to_home": "Ewch i'ch ffrwd gartref",
|
||||
"onboarding.compose.template": "Helo, #Mastodon!",
|
||||
"onboarding.follows.empty": "Yn anffodus, nid oes modd dangos unrhyw ganlyniadau ar hyn o bryd. Gallwch geisio defnyddio chwilio neu bori'r dudalen archwilio i ddod o hyd i bobl i'w dilyn, neu ceisio eto yn nes ymlaen.",
|
||||
"onboarding.follows.lead": "Rydych chi'n curadu eich ffrwd gartref eich hun. Po fwyaf o bobl y byddwch chi'n eu dilyn, y mwyaf egnïol a diddorol fydd hi. Gall y proffiliau hyn fod yn fan cychwyn da - gallwch chi bob amser eu dad-ddilyn yn nes ymlaen:",
|
||||
"onboarding.follows.title": "Yn boblogaidd ar Mastodon",
|
||||
"onboarding.profile.discoverable": "Gwnewch fy mhroffil yn un y gellir ei ddarganfod",
|
||||
"onboarding.profile.discoverable_hint": "Pan fyddwch yn optio i mewn i ddarganfodadwyedd ar Mastodon, gall eich postiadau ymddangos mewn canlyniadau chwilio a thueddiadau, ac efallai y bydd eich proffil yn cael ei awgrymu i bobl sydd â diddordebau tebyg i chi.",
|
||||
"onboarding.profile.discoverable_hint": "Pan fyddwch yn optio i mewn i ddarganfodadwyedd ar Mastodon, gall eich postiadau ymddangos mewn canlyniadau chwilio a threndiau, ac efallai y bydd eich proffil yn cael ei awgrymu i bobl sydd â diddordebau tebyg i chi.",
|
||||
"onboarding.profile.display_name": "Enw dangos",
|
||||
"onboarding.profile.display_name_hint": "Eich enw llawn neu'ch enw hwyl…",
|
||||
"onboarding.profile.lead": "Gallwch chi bob amser gwblhau hyn yn ddiweddarach yn y gosodiadau, lle mae hyd yn oed mwy o ddewisiadau cyfaddasu ar gael.",
|
||||
|
@ -790,6 +831,7 @@
|
|||
"timeline_hint.remote_resource_not_displayed": "Nid yw {resource} o weinyddion eraill yn cael ei ddangos.",
|
||||
"timeline_hint.resources.followers": "Dilynwyr",
|
||||
"timeline_hint.resources.follows": "Yn dilyn",
|
||||
"timeline_hint.resources.replies": "Rhai atebion",
|
||||
"timeline_hint.resources.statuses": "Postiadau hŷn",
|
||||
"trends.counter_by_accounts": "{count, plural, zero {neb} one {{counter} person} two {{counter} berson} few {{counter} pherson} other {{counter} o bobl}} yn y {days, plural, one {diwrnod diwethaf} two {ddeuddydd diwethaf} other {{days} diwrnod diwethaf}}",
|
||||
"trends.trending_now": "Yn trendio nawr",
|
||||
|
|
|
@ -356,6 +356,17 @@
|
|||
"home.pending_critical_update.link": "Se opdateringer",
|
||||
"home.pending_critical_update.title": "Kritisk sikkerhedsopdatering tilgængelig!",
|
||||
"home.show_announcements": "Vis bekendtgørelser",
|
||||
"ignore_notifications_modal.disclaimer": "Mastodon kan ikke informere brugere om, at man har ignoreret deres notifikationer. Ignorerer man notifikationer, forhindrer det ikke selve beskedafsendelsen.",
|
||||
"ignore_notifications_modal.filter_instead": "Filtrer i stedet",
|
||||
"ignore_notifications_modal.filter_to_act_users": "Man vil stadig kunne acceptere, afvise eller anmelde brugere",
|
||||
"ignore_notifications_modal.filter_to_avoid_confusion": "Filtrering medvirker til at undgå potentiel forvirring",
|
||||
"ignore_notifications_modal.filter_to_review_separately": "Man kan gennemgå filtrerede notifikationer separat",
|
||||
"ignore_notifications_modal.ignore": "Ignorér notifikationer",
|
||||
"ignore_notifications_modal.limited_accounts_title": "Ignorér notifikationer fra modererede konti?",
|
||||
"ignore_notifications_modal.new_accounts_title": "Ignorér notifikationer fra nye konti?",
|
||||
"ignore_notifications_modal.not_followers_title": "Ignorér notifikationer fra folk, som ikke er følgere?",
|
||||
"ignore_notifications_modal.not_following_title": "Ignorér notifikationer fra folk, man ikke følger?",
|
||||
"ignore_notifications_modal.private_mentions_title": "Ignorér notifikationer fra uopfordrede Private omtaler?",
|
||||
"interaction_modal.description.favourite": "Med en konto på Mastodon kan dette indlæg gøres til favorit for at lade forfatteren vide, at det værdsættes og gemmes til senere.",
|
||||
"interaction_modal.description.follow": "Med en konto på Mastodon kan du følge {name} for at modtage vedkommendes indlæg i dit hjemmefeed.",
|
||||
"interaction_modal.description.reblog": "Med en konto på Mastodon kan dette indlæg fremhæves så det deles med egne følgere.",
|
||||
|
@ -482,7 +493,11 @@
|
|||
"notification.favourite": "{name} favoritmarkerede dit indlæg",
|
||||
"notification.follow": "{name} begyndte at følge dig",
|
||||
"notification.follow_request": "{name} har anmodet om at følge dig",
|
||||
"notification.mention": "{name} nævnte dig",
|
||||
"notification.label.mention": "Omtale",
|
||||
"notification.label.private_mention": "Privat omtale",
|
||||
"notification.label.private_reply": "Privat svar",
|
||||
"notification.label.reply": "Besvar",
|
||||
"notification.mention": "Omtale",
|
||||
"notification.moderation-warning.learn_more": "Læs mere",
|
||||
"notification.moderation_warning": "Du er tildelt en moderationsadvarsel",
|
||||
"notification.moderation_warning.action_delete_statuses": "Nogle af dine indlæg er blevet fjernet.",
|
||||
|
@ -494,7 +509,6 @@
|
|||
"notification.moderation_warning.action_suspend": "Din konto er suspenderet.",
|
||||
"notification.own_poll": "Din afstemning er afsluttet",
|
||||
"notification.poll": "En afstemning, hvori du har stemt, er slut",
|
||||
"notification.private_mention": "{name} nævnte dig privat",
|
||||
"notification.reblog": "{name} boostede dit indlæg",
|
||||
"notification.relationships_severance_event": "Mistede forbindelser med {name}",
|
||||
"notification.relationships_severance_event.account_suspension": "En admin fra {from} har suspenderet {target}, hvofor opdateringer herfra eller interaktion hermed ikke længer er mulig.",
|
||||
|
@ -504,11 +518,26 @@
|
|||
"notification.status": "{name} har netop postet",
|
||||
"notification.update": "{name} redigerede et indlæg",
|
||||
"notification_requests.accept": "Acceptér",
|
||||
"notification_requests.accept_all": "Acceptér alle",
|
||||
"notification_requests.accept_multiple": "{count, plural, one {Acceptér # anmodning} other {Acceptér # anmodninger}}",
|
||||
"notification_requests.confirm_accept_all.button": "Acceptér alle",
|
||||
"notification_requests.confirm_accept_all.message": "Man er ved at acceptere {count, plural, one {en notifikationsanmodning} other {# notifikationsanmodninger}}. Fortsæt, sikker?",
|
||||
"notification_requests.confirm_accept_all.title": "Acceptér notifikationsanmodninger?",
|
||||
"notification_requests.confirm_dismiss_all.button": "Afvis alle",
|
||||
"notification_requests.confirm_dismiss_all.message": "Man er ved at afvise {count, plural, one {en notifikationsanmodning} other {# notifikationsanmodninger}}. Man vil derfor ikke nemt kunne tilgå {count, plural, one {den} other {dem}} igen. Fortsæt, sikker?",
|
||||
"notification_requests.confirm_dismiss_all.title": "Afvis notifikationsanmodninger?",
|
||||
"notification_requests.dismiss": "Afvis",
|
||||
"notification_requests.dismiss_all": "Afvis alle",
|
||||
"notification_requests.dismiss_multiple": "{count, plural, one {Afvis # anmodning} other {Afvis # anmodninger}}",
|
||||
"notification_requests.enter_selection_mode": "Vælg",
|
||||
"notification_requests.exit_selection_mode": "Afbryd",
|
||||
"notification_requests.explainer_for_limited_account": "Notifikationer fra denne konto er blevet filtreret, da kontoen er pålagt restriktioner af en moderator.",
|
||||
"notification_requests.explainer_for_limited_remote_account": "Notifikationer fra denne konto er blevet filtreret, da kontoen eller dens server er pålagt restriktioner af en moderator.",
|
||||
"notification_requests.maximize": "Maksimér",
|
||||
"notification_requests.minimize_banner": "Minimér filtrerede notifikationsbanner",
|
||||
"notification_requests.notifications_from": "Notifikationer fra {name}",
|
||||
"notification_requests.title": "Filtrerede notifikationer",
|
||||
"notification_requests.view": "Vis notifikationer",
|
||||
"notifications.clear": "Ryd notifikationer",
|
||||
"notifications.clear_confirmation": "Er du sikker på, at du vil rydde alle dine notifikationer permanent?",
|
||||
"notifications.clear_title": "Ryd notifikationer?",
|
||||
|
@ -545,6 +574,12 @@
|
|||
"notifications.permission_denied": "Computernotifikationer er utilgængelige grundet tidligere afvist browsertilladelsesanmodning",
|
||||
"notifications.permission_denied_alert": "Computernotifikationer kan ikke aktiveres, da browsertilladelse tidligere blev nægtet",
|
||||
"notifications.permission_required": "Computernotifikationer er utilgængelige, da den krævede tilladelse ikke er tildelt.",
|
||||
"notifications.policy.accept": "Acceptér",
|
||||
"notifications.policy.accept_hint": "Vis notifikationer",
|
||||
"notifications.policy.drop": "Ignorér",
|
||||
"notifications.policy.drop_hint": "Send til intetheden, for aldrig at blive set igen",
|
||||
"notifications.policy.filter": "Filter",
|
||||
"notifications.policy.filter_hint": "Send til filtrerede notifikationsindbakke",
|
||||
"notifications.policy.filter_limited_accounts_hint": "Begrænset af servermoderatorer",
|
||||
"notifications.policy.filter_limited_accounts_title": "Modererede konti",
|
||||
"notifications.policy.filter_new_accounts.hint": "Oprettet indenfor {days, plural, one {den seneste dag} other {de seneste # dage}}",
|
||||
|
@ -555,7 +590,7 @@
|
|||
"notifications.policy.filter_not_following_title": "Folk, du ikke følger",
|
||||
"notifications.policy.filter_private_mentions_hint": "Filtreret, medmindre det er i svar på egen omtale, eller hvis afsenderen følges",
|
||||
"notifications.policy.filter_private_mentions_title": "Uopfordrede private omtaler",
|
||||
"notifications.policy.title": "Bortfiltrér notifikationer fra…",
|
||||
"notifications.policy.title": "Håndtér notifikationer fra…",
|
||||
"notifications_permission_banner.enable": "Aktivér computernotifikationer",
|
||||
"notifications_permission_banner.how_to_control": "Aktivér computernotifikationer for at få besked, når Mastodon ikke er åben. Når de er aktiveret, kan man via knappen {icon} ovenfor præcist styre, hvilke typer af interaktioner, som genererer computernotifikationer.",
|
||||
"notifications_permission_banner.title": "Gå aldrig glip af noget",
|
||||
|
@ -796,6 +831,7 @@
|
|||
"timeline_hint.remote_resource_not_displayed": "{resource} fra andre servere vises ikke.",
|
||||
"timeline_hint.resources.followers": "Følgere",
|
||||
"timeline_hint.resources.follows": "Følger",
|
||||
"timeline_hint.resources.replies": "Visse svar",
|
||||
"timeline_hint.resources.statuses": "Ældre indlæg",
|
||||
"trends.counter_by_accounts": "{count, plural, one {{counter} person} other {{counter} personer}} {days, plural, one {den seneste dag} other {de seneste {days} dage}}",
|
||||
"trends.trending_now": "Hot lige nu",
|
||||
|
|
|
@ -356,6 +356,17 @@
|
|||
"home.pending_critical_update.link": "Updates ansehen",
|
||||
"home.pending_critical_update.title": "Kritisches Sicherheitsupdate verfügbar!",
|
||||
"home.show_announcements": "Ankündigungen anzeigen",
|
||||
"ignore_notifications_modal.disclaimer": "Mastodon kann anderen Nutzer*innen nicht mitteilen, dass du deren Benachrichtigungen ignorierst. Das Ignorieren von Benachrichtigung wird das Absenden der Nachricht selbst nicht unterbinden.",
|
||||
"ignore_notifications_modal.filter_instead": "Stattdessen filtern",
|
||||
"ignore_notifications_modal.filter_to_act_users": "Du wirst weiterhin die Möglichkeit haben, andere Nutzer*innen zu genehmigen, abzulehnen oder zu melden",
|
||||
"ignore_notifications_modal.filter_to_avoid_confusion": "Filtern hilft, mögliches Durcheinander zu vermeiden",
|
||||
"ignore_notifications_modal.filter_to_review_separately": "Gefilterte Benachrichtigungen können separat überprüft werden",
|
||||
"ignore_notifications_modal.ignore": "Benachrichtigungen ignorieren",
|
||||
"ignore_notifications_modal.limited_accounts_title": "Benachrichtigungen von moderierten Konten ignorieren?",
|
||||
"ignore_notifications_modal.new_accounts_title": "Benachrichtigungen von neuen Konten ignorieren?",
|
||||
"ignore_notifications_modal.not_followers_title": "Benachrichtigungen von Profilen ignorieren, die dir nicht folgen?",
|
||||
"ignore_notifications_modal.not_following_title": "Benachrichtigungen von Profilen ignorieren, denen du nicht folgst?",
|
||||
"ignore_notifications_modal.private_mentions_title": "Benachrichtigungen von unerwünschten privaten Erwähnungen ignorieren?",
|
||||
"interaction_modal.description.favourite": "Mit einem Mastodon-Konto kannst du diesen Beitrag favorisieren, um deine Wertschätzung auszudrücken, und ihn für einen späteren Zeitpunkt speichern.",
|
||||
"interaction_modal.description.follow": "Mit einem Mastodon-Konto kannst du {name} folgen, um die Beiträge auf deiner Startseite zu sehen.",
|
||||
"interaction_modal.description.reblog": "Mit einem Mastodon-Konto kannst du die Reichweite dieses Beitrags erhöhen, indem du ihn mit deinen Followern teilst.",
|
||||
|
@ -482,7 +493,11 @@
|
|||
"notification.favourite": "{name} favorisierte deinen Beitrag",
|
||||
"notification.follow": "{name} folgt dir",
|
||||
"notification.follow_request": "{name} möchte dir folgen",
|
||||
"notification.mention": "{name} erwähnte dich",
|
||||
"notification.label.mention": "Erwähnung",
|
||||
"notification.label.private_mention": "Private Erwähnung",
|
||||
"notification.label.private_reply": "Private Antwort",
|
||||
"notification.label.reply": "Antwort",
|
||||
"notification.mention": "Erwähnung",
|
||||
"notification.moderation-warning.learn_more": "Mehr erfahren",
|
||||
"notification.moderation_warning": "Du wurdest von den Moderator*innen verwarnt",
|
||||
"notification.moderation_warning.action_delete_statuses": "Einige deiner Beiträge sind entfernt worden.",
|
||||
|
@ -494,7 +509,6 @@
|
|||
"notification.moderation_warning.action_suspend": "Dein Konto wurde gesperrt.",
|
||||
"notification.own_poll": "Deine Umfrage ist beendet",
|
||||
"notification.poll": "Eine Umfrage, an der du teilgenommen hast, ist beendet",
|
||||
"notification.private_mention": "{name} hat dich privat erwähnt",
|
||||
"notification.reblog": "{name} teilte deinen Beitrag",
|
||||
"notification.relationships_severance_event": "Verbindungen mit {name} verloren",
|
||||
"notification.relationships_severance_event.account_suspension": "Ein Admin von {from} hat {target} gesperrt. Du wirst von diesem Profil keine Updates mehr erhalten und auch nicht mit ihm interagieren können.",
|
||||
|
@ -503,12 +517,27 @@
|
|||
"notification.relationships_severance_event.user_domain_block": "Du hast {target} blockiert – {followersCount} deiner Follower und {followingCount, plural, one {# Konto, dem} other {# Konten, denen}} du folgst, wurden entfernt.",
|
||||
"notification.status": "{name} hat gerade etwas gepostet",
|
||||
"notification.update": "{name} bearbeitete einen Beitrag",
|
||||
"notification_requests.accept": "Akzeptieren",
|
||||
"notification_requests.accept": "Genehmigen",
|
||||
"notification_requests.accept_all": "Alle genehmigen",
|
||||
"notification_requests.accept_multiple": "{count, plural, one {# Anfrage genehmigen} other {# Anfragen genehmigen}}",
|
||||
"notification_requests.confirm_accept_all.button": "Alle genehmigen",
|
||||
"notification_requests.confirm_accept_all.message": "Du bist dabei, {{count, plural, one {eine Benachrichtigungsanfrage} other {# Benachrichtigungsanfragen}} zu genehmigen. Möchtest du wirklich fortfahren?",
|
||||
"notification_requests.confirm_accept_all.title": "Benachrichtigungsanfragen genehmigen?",
|
||||
"notification_requests.confirm_dismiss_all.button": "Alle ablehnen",
|
||||
"notification_requests.confirm_dismiss_all.message": "Du bist dabei, {count, plural, one {eine Benachrichtigungsanfrage} other {# Benachrichtigungsanfragen}} abzulehnen. Du wirst nicht mehr ohne Weiteres auf {count, plural, one {sie} other {sie}} zugreifen können. Möchtest du wirklich fortfahren?",
|
||||
"notification_requests.confirm_dismiss_all.title": "Benachrichtigungsanfragen ablehnen?",
|
||||
"notification_requests.dismiss": "Ablehnen",
|
||||
"notification_requests.dismiss_all": "Alle ablehnen",
|
||||
"notification_requests.dismiss_multiple": "{count, plural, one {# Anfrage ablehnen} other {# Anfragen ablehnen}}",
|
||||
"notification_requests.enter_selection_mode": "Auswählen",
|
||||
"notification_requests.exit_selection_mode": "Abbrechen",
|
||||
"notification_requests.explainer_for_limited_account": "Benachrichtigungen von diesem Konto wurden gefiltert, weil es durch Moderator*innen eingeschränkt wurde.",
|
||||
"notification_requests.explainer_for_limited_remote_account": "Benachrichtigungen von diesem Konto wurden gefiltert, weil deren Konto oder Server durch Moderator*innen eingeschränkt wurde.",
|
||||
"notification_requests.maximize": "Maximieren",
|
||||
"notification_requests.minimize_banner": "Banner für gefilterte Benachrichtigungen minimieren",
|
||||
"notification_requests.notifications_from": "Benachrichtigungen von {name}",
|
||||
"notification_requests.title": "Gefilterte Benachrichtigungen",
|
||||
"notification_requests.view": "Benachrichtigungen anzeigen",
|
||||
"notifications.clear": "Benachrichtigungen löschen",
|
||||
"notifications.clear_confirmation": "Möchtest du wirklich alle Benachrichtigungen für immer löschen?",
|
||||
"notifications.clear_title": "Benachrichtigungen löschen?",
|
||||
|
@ -545,6 +574,14 @@
|
|||
"notifications.permission_denied": "Desktop-Benachrichtigungen können aufgrund einer zuvor verweigerten Berechtigung nicht aktiviert werden",
|
||||
"notifications.permission_denied_alert": "Desktop-Benachrichtigungen können nicht aktiviert werden, da die Browser-Berechtigung zuvor verweigert wurde",
|
||||
"notifications.permission_required": "Desktop-Benachrichtigungen sind nicht verfügbar, da die erforderliche Berechtigung nicht erteilt wurde.",
|
||||
"notifications.policy.accept": "Akzeptieren",
|
||||
"notifications.policy.accept_hint": "In Benachrichtigungen anzeigen",
|
||||
"notifications.policy.drop": "Ignorieren",
|
||||
"notifications.policy.drop_hint": "In die Leere senden und nie wieder sehen",
|
||||
"notifications.policy.filter": "Filter",
|
||||
"notifications.policy.filter_hint": "An gefilterte Benachrichtigungen im Posteingang senden",
|
||||
"notifications.policy.filter_limited_accounts_hint": "Durch Server-Moderator*innen eingeschränkt",
|
||||
"notifications.policy.filter_limited_accounts_title": "Moderierte Konten",
|
||||
"notifications.policy.filter_new_accounts.hint": "Innerhalb {days, plural, one {des letzten Tages} other {der letzten # Tagen}} erstellt",
|
||||
"notifications.policy.filter_new_accounts_title": "Neuen Konten",
|
||||
"notifications.policy.filter_not_followers_hint": "Einschließlich Profilen, die dir seit weniger als {days, plural, one {einem Tag} other {# Tagen}} folgen",
|
||||
|
@ -553,7 +590,7 @@
|
|||
"notifications.policy.filter_not_following_title": "Profilen, denen ich nicht folge",
|
||||
"notifications.policy.filter_private_mentions_hint": "Solange sie keine Antwort auf deine Erwähnung ist oder du dem Profil nicht folgst",
|
||||
"notifications.policy.filter_private_mentions_title": "Unerwünschten privaten Erwähnungen",
|
||||
"notifications.policy.title": "Benachrichtigungen herausfiltern von …",
|
||||
"notifications.policy.title": "Benachrichtigungen verwalten von …",
|
||||
"notifications_permission_banner.enable": "Aktiviere Desktop-Benachrichtigungen",
|
||||
"notifications_permission_banner.how_to_control": "Um Benachrichtigungen zu erhalten, wenn Mastodon nicht geöffnet ist, aktiviere die Desktop-Benachrichtigungen. Du kannst genau bestimmen, welche Arten von Interaktionen Desktop-Benachrichtigungen über die {icon} -Taste erzeugen, sobald diese aktiviert sind.",
|
||||
"notifications_permission_banner.title": "Nichts verpassen",
|
||||
|
@ -794,6 +831,7 @@
|
|||
"timeline_hint.remote_resource_not_displayed": "{resource} von anderen Servern werden nicht angezeigt.",
|
||||
"timeline_hint.resources.followers": "Follower",
|
||||
"timeline_hint.resources.follows": "„Folge ich“",
|
||||
"timeline_hint.resources.replies": "Einige Antworten",
|
||||
"timeline_hint.resources.statuses": "Ältere Beiträge",
|
||||
"trends.counter_by_accounts": "{count, plural, one {{counter} Profil} other {{counter} Profile}} {days, plural, one {seit gestern} other {in {days} Tagen}}",
|
||||
"trends.trending_now": "Aktuelle Trends",
|
||||
|
|
|
@ -356,6 +356,17 @@
|
|||
"home.pending_critical_update.link": "Δείτε ενημερώσεις",
|
||||
"home.pending_critical_update.title": "Κρίσιμη ενημέρωση ασφαλείας διαθέσιμη!",
|
||||
"home.show_announcements": "Εμφάνιση ανακοινώσεων",
|
||||
"ignore_notifications_modal.disclaimer": "Το Mastodon δε μπορεί να ενημερώσει τους χρήστες ότι αγνόησες τις ειδοποιήσεις του. Η αγνόηση ειδοποιήσεων δεν θα εμποδίσει την αποστολή των ίδιων των μηνυμάτων.",
|
||||
"ignore_notifications_modal.filter_instead": "Φίλτρο αντ' αυτού",
|
||||
"ignore_notifications_modal.filter_to_act_users": "Θα μπορείς ακόμα να αποδεχθείς, να απορρίψεις ή να αναφέρεις χρήστες",
|
||||
"ignore_notifications_modal.filter_to_avoid_confusion": "Το φιλτράρισμα βοηθά στην αποφυγή πιθανής σύγχυσης",
|
||||
"ignore_notifications_modal.filter_to_review_separately": "Μπορείς να δεις τις φιλτραρισμένες ειδοποιήσεις ξεχωριστά",
|
||||
"ignore_notifications_modal.ignore": "Αγνόηση ειδοποιήσεων",
|
||||
"ignore_notifications_modal.limited_accounts_title": "Αγνόηση ειδοποιήσεων από συντονισμένους λογαριασμούς;",
|
||||
"ignore_notifications_modal.new_accounts_title": "Αγνόηση ειδοποιήσεων από νέους λογαριασμούς;",
|
||||
"ignore_notifications_modal.not_followers_title": "Αγνόηση ειδοποιήσεων από άτομα που δε σας ακολουθούν;",
|
||||
"ignore_notifications_modal.not_following_title": "Αγνόηση ειδοποιήσεων από άτομα που δεν ακολουθείς;",
|
||||
"ignore_notifications_modal.private_mentions_title": "Αγνόηση ειδοποιήσεων από μη ζητηθείσες ιδιωτικές αναφορές;",
|
||||
"interaction_modal.description.favourite": "Με ένα συντάκτη στο Mastodon μπορείς να αγαπήσεις αυτή την ανάρτηση, για να ενημερώσεις τον συγγραφέα ότι την εκτιμάς και να την αποθηκεύσεις για αργότερα.",
|
||||
"interaction_modal.description.follow": "Με έναν λογαριασμό Mastodon, μπορείς να ακολουθήσεις τον/την {name} ώστε να λαμβάνεις τις αναρτήσεις του/της στη δική σου ροή.",
|
||||
"interaction_modal.description.reblog": "Με ένα λογαριασμό Mastodon, μπορείς να ενισχύσεις αυτή την ανάρτηση για να τη μοιραστείς με τους δικούς σου ακολούθους.",
|
||||
|
@ -482,7 +493,11 @@
|
|||
"notification.favourite": "{name} favorited your post\n{name} προτίμησε την ανάρτηση σου",
|
||||
"notification.follow": "Ο/Η {name} σε ακολούθησε",
|
||||
"notification.follow_request": "Ο/H {name} ζήτησε να σε ακολουθήσει",
|
||||
"notification.mention": "Ο/Η {name} σε επισήμανε",
|
||||
"notification.label.mention": "Επισήμανση",
|
||||
"notification.label.private_mention": "Ιδιωτική επισήμανση",
|
||||
"notification.label.private_reply": "Ιδιωτική απάντηση",
|
||||
"notification.label.reply": "Απάντηση",
|
||||
"notification.mention": "Επισήμανση",
|
||||
"notification.moderation-warning.learn_more": "Μάθε περισσότερα",
|
||||
"notification.moderation_warning": "Έχετε λάβει μία προειδοποίηση συντονισμού",
|
||||
"notification.moderation_warning.action_delete_statuses": "Ορισμένες από τις αναρτήσεις σου έχουν αφαιρεθεί.",
|
||||
|
@ -494,7 +509,6 @@
|
|||
"notification.moderation_warning.action_suspend": "Ο λογαριασμός σου έχει ανασταλεί.",
|
||||
"notification.own_poll": "Η δημοσκόπησή σου έληξε",
|
||||
"notification.poll": "Μία ψηφοφορία στην οποία συμμετείχες έχει τελειώσει",
|
||||
"notification.private_mention": "{name} σέ επισήμανε ιδιωτικά",
|
||||
"notification.reblog": "Ο/Η {name} ενίσχυσε τη δημοσίευσή σου",
|
||||
"notification.relationships_severance_event": "Χάθηκε η σύνδεση με το {name}",
|
||||
"notification.relationships_severance_event.account_suspension": "Ένας διαχειριστής από το {from} ανέστειλε το {target}, πράγμα που σημαίνει ότι δεν μπορείς πλέον να λαμβάνεις ενημερώσεις από αυτούς ή να αλληλεπιδράς μαζί τους.",
|
||||
|
@ -504,11 +518,26 @@
|
|||
"notification.status": "Ο/Η {name} μόλις ανέρτησε κάτι",
|
||||
"notification.update": "ο/η {name} επεξεργάστηκε μια ανάρτηση",
|
||||
"notification_requests.accept": "Αποδοχή",
|
||||
"notification_requests.accept_all": "Αποδοχή όλων",
|
||||
"notification_requests.accept_multiple": "{count, plural, one {Αποδοχή # αιτήματος} other {Αποδοχή # αιτημάτων}}",
|
||||
"notification_requests.confirm_accept_all.button": "Αποδοχή όλων",
|
||||
"notification_requests.confirm_accept_all.message": "Πρόκειται να αποδεχτείς {count, plural, one {ένα αίτημα ειδοποίησης} other {# αιτήματα ειδοποίησης}}. Σίγουρα θες να συνεχίσεις;",
|
||||
"notification_requests.confirm_accept_all.title": "Αποδοχή αιτήσεων ειδοποίησης;",
|
||||
"notification_requests.confirm_dismiss_all.button": "Παράβλεψη όλων",
|
||||
"notification_requests.confirm_dismiss_all.message": "Πρόκειται να απορρίψεις {count, plural, one {ένα αίτημα ειδοποίησης} other {# αιτήματα ειδοποίησης}}. Δεν θα μπορείς να έχεις πρόσβαση εύκολα {count, plural, one {σε αυτή} other {σε αυτές}} ξανά. Σίγουρα θες να συνεχίσεις;",
|
||||
"notification_requests.confirm_dismiss_all.title": "Απόρριψη αιτημάτων ειδοποίησης;",
|
||||
"notification_requests.dismiss": "Απόρριψη",
|
||||
"notification_requests.dismiss_all": "Παράβλεψη όλων",
|
||||
"notification_requests.dismiss_multiple": "{count, plural, one {Παράβλεψη # αιτήματος} other {Παράβλεψη # αιτημάτων}}",
|
||||
"notification_requests.enter_selection_mode": "Επιλογή",
|
||||
"notification_requests.exit_selection_mode": "Άκυρο",
|
||||
"notification_requests.explainer_for_limited_account": "Οι ειδοποιήσεις από αυτόν τον λογαριασμό έχουν φιλτραριστεί επειδή ο λογαριασμός έχει περιοριστεί από έναν συντονιστή.",
|
||||
"notification_requests.explainer_for_limited_remote_account": "Οι ειδοποιήσεις από αυτόν τον λογαριασμό έχουν φιλτραριστεί επειδή ο λογαριασμός ή ο διακομιστής του έχει περιοριστεί από έναν συντονιστή.",
|
||||
"notification_requests.maximize": "Μεγιστοποίηση",
|
||||
"notification_requests.minimize_banner": "Ελαχιστοποίηση μπάνερ φιλτραρισμένων ειδοποιήσεων",
|
||||
"notification_requests.notifications_from": "Ειδοποιήσεις από {name}",
|
||||
"notification_requests.title": "Φιλτραρισμένες ειδοποιήσεις",
|
||||
"notification_requests.view": "Προβολή ειδοποιήσεων",
|
||||
"notifications.clear": "Καθαρισμός ειδοποιήσεων",
|
||||
"notifications.clear_confirmation": "Σίγουρα θέλεις να καθαρίσεις μόνιμα όλες τις ειδοποιήσεις σου;",
|
||||
"notifications.clear_title": "Εκκαθάριση ειδοποιήσεων;",
|
||||
|
@ -545,6 +574,14 @@
|
|||
"notifications.permission_denied": "Οι ειδοποιήσεις στην επιφάνεια εργασίας δεν είναι διαθέσιμες διότι έχει απορριφθεί κάποιο προηγούμενο αίτημα άδειας",
|
||||
"notifications.permission_denied_alert": "Δεν είναι δυνατή η ενεργοποίηση των ειδοποιήσεων της επιφάνειας εργασίας, καθώς η άδεια του προγράμματος περιήγησης έχει απορριφθεί νωρίτερα",
|
||||
"notifications.permission_required": "Οι ειδοποιήσεις δεν είναι διαθέσιμες επειδή δεν έχει δοθεί η απαιτούμενη άδεια.",
|
||||
"notifications.policy.accept": "Αποδοχή",
|
||||
"notifications.policy.accept_hint": "Εμφάνιση στις ειδοποιήσεις",
|
||||
"notifications.policy.drop": "Αγνόηση",
|
||||
"notifications.policy.drop_hint": "Στείλε τες στο υπερπέραν, να μην ξαναδούν το φως του ήλιου",
|
||||
"notifications.policy.filter": "Φίλτρο",
|
||||
"notifications.policy.filter_hint": "Αποστολή στα εισερχόμενα φιλτραρισμένων ειδοποιήσεων",
|
||||
"notifications.policy.filter_limited_accounts_hint": "Περιορισμένη από συντονιστές διακομιστή",
|
||||
"notifications.policy.filter_limited_accounts_title": "Συντονισμένοι λογαριασμοί",
|
||||
"notifications.policy.filter_new_accounts.hint": "Δημιουργήθηκε εντός {days, plural, one {της τελευταίας ημέρας} other {των τελευταίων # ημερών}}",
|
||||
"notifications.policy.filter_new_accounts_title": "Νέοι λογαριασμοί",
|
||||
"notifications.policy.filter_not_followers_hint": "Συμπεριλαμβανομένων των ατόμων που σας έχουν ακολουθήσει λιγότερο από {days, plural, one {μια ημέρα} other {# ημέρες}} πριν",
|
||||
|
@ -553,7 +590,7 @@
|
|||
"notifications.policy.filter_not_following_title": "Άτομα που δεν ακολουθείς",
|
||||
"notifications.policy.filter_private_mentions_hint": "Φιλτραρισμένο εκτός αν είναι απάντηση σε δική σου αναφορά ή αν ακολουθείς τον αποστολέα",
|
||||
"notifications.policy.filter_private_mentions_title": "Μη συναινετικές ιδιωτικές αναφορές",
|
||||
"notifications.policy.title": "Φιλτράρισμα ειδοποιήσεων από…",
|
||||
"notifications.policy.title": "Διαχείριση ειδοποιήσεων από…",
|
||||
"notifications_permission_banner.enable": "Ενεργοποίηση ειδοποιήσεων επιφάνειας εργασίας",
|
||||
"notifications_permission_banner.how_to_control": "Για να λαμβάνεις ειδοποιήσεις όταν το Mastodon δεν είναι ανοιχτό, ενεργοποίησε τις ειδοποιήσεις επιφάνειας εργασίας. Μπορείς να ελέγξεις με ακρίβεια ποιοι τύποι αλληλεπιδράσεων δημιουργούν ειδοποιήσεις επιφάνειας εργασίας μέσω του κουμπιού {icon} μόλις ενεργοποιηθούν.",
|
||||
"notifications_permission_banner.title": "Μη χάσεις στιγμή",
|
||||
|
@ -794,6 +831,7 @@
|
|||
"timeline_hint.remote_resource_not_displayed": "{resource} από άλλους διακομιστές δεν εμφανίζονται.",
|
||||
"timeline_hint.resources.followers": "Ακόλουθοι",
|
||||
"timeline_hint.resources.follows": "Ακολουθείς",
|
||||
"timeline_hint.resources.replies": "Κάποιες απαντήσεις",
|
||||
"timeline_hint.resources.statuses": "Παλαιότερες αναρτήσεις",
|
||||
"trends.counter_by_accounts": "{count, plural, one {{counter} άτομο} other {{counter} άτομα} }{days, plural, one { την τελευταία ημέρα} other { τις τελευταίες {days} ημέρες}}",
|
||||
"trends.trending_now": "Δημοφιλή τώρα",
|
||||
|
|
|
@ -473,7 +473,6 @@
|
|||
"notification.favourite": "{name} favourited your post",
|
||||
"notification.follow": "{name} followed you",
|
||||
"notification.follow_request": "{name} has requested to follow you",
|
||||
"notification.mention": "{name} mentioned you",
|
||||
"notification.moderation-warning.learn_more": "Learn more",
|
||||
"notification.moderation_warning": "You have received a moderation warning",
|
||||
"notification.moderation_warning.action_delete_statuses": "Some of your posts have been removed.",
|
||||
|
@ -485,7 +484,6 @@
|
|||
"notification.moderation_warning.action_suspend": "Your account has been suspended.",
|
||||
"notification.own_poll": "Your poll has ended",
|
||||
"notification.poll": "A poll you voted in has ended",
|
||||
"notification.private_mention": "{name} privately mentioned you",
|
||||
"notification.reblog": "{name} boosted your status",
|
||||
"notification.relationships_severance_event": "Lost connections with {name}",
|
||||
"notification.relationships_severance_event.account_suspension": "An admin from {from} has suspended {target}, which means you can no longer receive updates from them or interact with them.",
|
||||
|
@ -541,7 +539,6 @@
|
|||
"notifications.policy.filter_not_following_title": "People you don't follow",
|
||||
"notifications.policy.filter_private_mentions_hint": "Filtered unless it's in reply to your own mention or if you follow the sender",
|
||||
"notifications.policy.filter_private_mentions_title": "Unsolicited private mentions",
|
||||
"notifications.policy.title": "Filter out notifications from…",
|
||||
"notifications_permission_banner.enable": "Enable desktop notifications",
|
||||
"notifications_permission_banner.how_to_control": "To receive notifications when Mastodon isn't open, enable desktop notifications. You can control precisely which types of interactions generate desktop notifications through the {icon} button above once they're enabled.",
|
||||
"notifications_permission_banner.title": "Never miss a thing",
|
||||
|
|
|
@ -358,9 +358,9 @@
|
|||
"home.show_announcements": "Show announcements",
|
||||
"ignore_notifications_modal.disclaimer": "Mastodon cannot inform users that you've ignored their notifications. Ignoring notifications will not stop the messages themselves from being sent.",
|
||||
"ignore_notifications_modal.filter_instead": "Filter instead",
|
||||
"ignore_notifications_modal.filter_to_act_users": "Filtering helps avoid potential confusion",
|
||||
"ignore_notifications_modal.filter_to_act_users": "You'll still be able to accept, reject, or report users",
|
||||
"ignore_notifications_modal.filter_to_avoid_confusion": "Filtering helps avoid potential confusion",
|
||||
"ignore_notifications_modal.filter_to_review_separately": "You can review filtered notifications speparately",
|
||||
"ignore_notifications_modal.filter_to_review_separately": "You can review filtered notifications separately",
|
||||
"ignore_notifications_modal.ignore": "Ignore notifications",
|
||||
"ignore_notifications_modal.limited_accounts_title": "Ignore notifications from moderated accounts?",
|
||||
"ignore_notifications_modal.new_accounts_title": "Ignore notifications from new accounts?",
|
||||
|
|
|
@ -399,7 +399,6 @@
|
|||
"notification.favourite": "{name} stelumis vian afiŝon",
|
||||
"notification.follow": "{name} eksekvis vin",
|
||||
"notification.follow_request": "{name} petis sekvi vin",
|
||||
"notification.mention": "{name} menciis vin",
|
||||
"notification.own_poll": "Via enketo finiĝis",
|
||||
"notification.reblog": "{name} diskonigis vian afiŝon",
|
||||
"notification.status": "{name} ĵus afiŝis",
|
||||
|
|
|
@ -356,6 +356,17 @@
|
|||
"home.pending_critical_update.link": "Ver actualizaciones",
|
||||
"home.pending_critical_update.title": "¡Actualización de seguridad crítica disponible!",
|
||||
"home.show_announcements": "Mostrar anuncios",
|
||||
"ignore_notifications_modal.disclaimer": "Mastodon no puede informar a los usuarios que ignoraste sus notificaciones. Ignorar notificaciones no impedirá que se sigan enviando los mensajes.",
|
||||
"ignore_notifications_modal.filter_instead": "Filtrar en vez de ignorar",
|
||||
"ignore_notifications_modal.filter_to_act_users": "Aún podrás aceptar, rechazar o denunciar a usuarios",
|
||||
"ignore_notifications_modal.filter_to_avoid_confusion": "Filtrar ayuda a evitar confusiones potenciales",
|
||||
"ignore_notifications_modal.filter_to_review_separately": "Podés revisar las notificaciones filtradas por separado",
|
||||
"ignore_notifications_modal.ignore": "Ignorar notificaciones",
|
||||
"ignore_notifications_modal.limited_accounts_title": "¿Ignorar notificaciones de cuentas moderadas?",
|
||||
"ignore_notifications_modal.new_accounts_title": "¿Ignorar notificaciones de cuentas nuevas?",
|
||||
"ignore_notifications_modal.not_followers_title": "¿Ignorar notificaciones de cuentas que no te siguen?",
|
||||
"ignore_notifications_modal.not_following_title": "¿Ignorar notificaciones de cuentas a las que no seguís?",
|
||||
"ignore_notifications_modal.private_mentions_title": "¿Ignorar notificaciones de menciones privadas no solicitadas?",
|
||||
"interaction_modal.description.favourite": "Con una cuenta en Mastodon, podés marcar este mensaje como favorito para que el autor sepa que lo apreciás y lo guardás para más adelante.",
|
||||
"interaction_modal.description.follow": "Con una cuenta en Mastodon, podés seguir a {name} para recibir sus mensajes en tu línea temporal principal.",
|
||||
"interaction_modal.description.reblog": "Con una cuenta en Mastodon, podés adherir a este mensaje para compartirlo con tus propios seguidores.",
|
||||
|
@ -482,7 +493,11 @@
|
|||
"notification.favourite": "{name} marcó tu mensaje como favorito",
|
||||
"notification.follow": "{name} te empezó a seguir",
|
||||
"notification.follow_request": "{name} solicitó seguirte",
|
||||
"notification.mention": "{name} te mencionó",
|
||||
"notification.label.mention": "Mención",
|
||||
"notification.label.private_mention": "Mención privada",
|
||||
"notification.label.private_reply": "Respuesta privada",
|
||||
"notification.label.reply": "Respuesta",
|
||||
"notification.mention": "Mención",
|
||||
"notification.moderation-warning.learn_more": "Aprendé más",
|
||||
"notification.moderation_warning": "Recibiste una advertencia de moderación",
|
||||
"notification.moderation_warning.action_delete_statuses": "Se eliminaron algunos de tus mensajes.",
|
||||
|
@ -494,7 +509,6 @@
|
|||
"notification.moderation_warning.action_suspend": "Tu cuenta fue suspendida.",
|
||||
"notification.own_poll": "Tu encuesta finalizó",
|
||||
"notification.poll": "Finalizó una encuesta en la que votaste",
|
||||
"notification.private_mention": "{name} te mencionó en privado",
|
||||
"notification.reblog": "{name} adhirió a tu mensaje",
|
||||
"notification.relationships_severance_event": "Conexiones perdidas con {name}",
|
||||
"notification.relationships_severance_event.account_suspension": "Un administrador de {from} suspendió a {target}, lo que significa que ya no podés recibir actualizaciones de esa cuenta o interactuar con la misma.",
|
||||
|
@ -504,11 +518,26 @@
|
|||
"notification.status": "{name} acaba de enviar un mensaje",
|
||||
"notification.update": "{name} editó un mensaje",
|
||||
"notification_requests.accept": "Aceptar",
|
||||
"notification_requests.accept_all": "Aceptar todas",
|
||||
"notification_requests.accept_multiple": "{count, plural, one {Aceptar # solicitud} other {Aceptar # solicitudes}}",
|
||||
"notification_requests.confirm_accept_all.button": "Aceptar todas",
|
||||
"notification_requests.confirm_accept_all.message": "Estás a punto de aceptar {count, plural, one {una solicitud} other {# solicitudes}}. ¿Estás seguro de que querés continuar?",
|
||||
"notification_requests.confirm_accept_all.title": "¿Aceptar solicitudes de notificación?",
|
||||
"notification_requests.confirm_dismiss_all.button": "Descartar todas",
|
||||
"notification_requests.confirm_dismiss_all.message": "Estás a punto de descartar {count, plural, one {una solicitud} other {# solicitudes}}. No vas a poder acceder fácilmente a {count, plural, one {ella} other {ellas}} de nuevo. ¿Estás seguro de que querés continuar?",
|
||||
"notification_requests.confirm_dismiss_all.title": "¿Descartar solicitudes de notificación?",
|
||||
"notification_requests.dismiss": "Descartar",
|
||||
"notification_requests.dismiss_all": "Descartar todas",
|
||||
"notification_requests.dismiss_multiple": "{count, plural, one {Descartar # solicitud} other {Descartar # solicitudes}}",
|
||||
"notification_requests.enter_selection_mode": "Seleccionar",
|
||||
"notification_requests.exit_selection_mode": "Cancelar",
|
||||
"notification_requests.explainer_for_limited_account": "Las notificaciones de esta cuenta fueron filtradas porque la misma fue limitada por un moderador.",
|
||||
"notification_requests.explainer_for_limited_remote_account": "Las notificaciones de esta cuenta fueron filtradas porque la cuenta o su servidor fueron limitados por un moderador.",
|
||||
"notification_requests.maximize": "Maximizar",
|
||||
"notification_requests.minimize_banner": "Minimizar la barra de notificaciones filtradas",
|
||||
"notification_requests.notifications_from": "Notificaciones de {name}",
|
||||
"notification_requests.title": "Notificaciones filtradas",
|
||||
"notification_requests.view": "Ver notificaciones",
|
||||
"notifications.clear": "Limpiar notificaciones",
|
||||
"notifications.clear_confirmation": "¿Estás seguro que querés limpiar todas tus notificaciones permanentemente?",
|
||||
"notifications.clear_title": "¿Limpiar notificaciones?",
|
||||
|
@ -545,6 +574,12 @@
|
|||
"notifications.permission_denied": "Las notificaciones de escritorio no están disponibles, debido a una solicitud de permiso del navegador web previamente denegada",
|
||||
"notifications.permission_denied_alert": "No se pueden habilitar las notificaciones de escritorio, ya que el permiso del navegador fue denegado antes",
|
||||
"notifications.permission_required": "Las notificaciones de escritorio no están disponibles porque no se concedió el permiso requerido.",
|
||||
"notifications.policy.accept": "Aceptar",
|
||||
"notifications.policy.accept_hint": "Mostrar en notificaciones",
|
||||
"notifications.policy.drop": "Ignorar",
|
||||
"notifications.policy.drop_hint": "Enviar al vacío, no volver a mostrar nunca",
|
||||
"notifications.policy.filter": "Filtrar",
|
||||
"notifications.policy.filter_hint": "Enviar a la bandeja de entrada de notificaciones filtradas",
|
||||
"notifications.policy.filter_limited_accounts_hint": "Limitada por los moderadores del servidor",
|
||||
"notifications.policy.filter_limited_accounts_title": "Cuentas moderadas",
|
||||
"notifications.policy.filter_new_accounts.hint": "Creada hace {days, plural, one {un día} other {# días}}",
|
||||
|
@ -555,7 +590,7 @@
|
|||
"notifications.policy.filter_not_following_title": "Cuentas que no seguís",
|
||||
"notifications.policy.filter_private_mentions_hint": "Filtradas, a menos que sea en respuesta a tu propia mención o si seguís al remitente",
|
||||
"notifications.policy.filter_private_mentions_title": "Menciones privadas no solicitadas",
|
||||
"notifications.policy.title": "Filtrar notificaciones de…",
|
||||
"notifications.policy.title": "Administrar notificaciones de…",
|
||||
"notifications_permission_banner.enable": "Habilitar notificaciones de escritorio",
|
||||
"notifications_permission_banner.how_to_control": "Para recibir notificaciones cuando Mastodon no está abierto, habilitá las notificaciones de escritorio. Podés controlar con precisión qué tipos de interacciones generan notificaciones de escritorio a través del botón {icon} de arriba, una vez que estén habilitadas.",
|
||||
"notifications_permission_banner.title": "No te pierdas nada",
|
||||
|
@ -796,6 +831,7 @@
|
|||
"timeline_hint.remote_resource_not_displayed": "{resource} desde otros servidores no se muestran.",
|
||||
"timeline_hint.resources.followers": "Tus seguidores",
|
||||
"timeline_hint.resources.follows": "Las cuentas que seguís",
|
||||
"timeline_hint.resources.replies": "Algunas respuestas",
|
||||
"timeline_hint.resources.statuses": "Mensajes más antiguos",
|
||||
"trends.counter_by_accounts": "{count, plural, one {{counter} persona} other {{counter} personas}} en {days, plural, one {el pasado día} other {los pasados {days} días}}",
|
||||
"trends.trending_now": "Tendencia ahora",
|
||||
|
|
|
@ -356,6 +356,17 @@
|
|||
"home.pending_critical_update.link": "Ver actualizaciones",
|
||||
"home.pending_critical_update.title": "¡Actualización de seguridad crítica disponible!",
|
||||
"home.show_announcements": "Mostrar anuncios",
|
||||
"ignore_notifications_modal.disclaimer": "Mastodon no puede informar a los usuarios que has ignorado sus notificaciones. Ignorar notificaciones no impedirá que se sigan enviando los mensajes.",
|
||||
"ignore_notifications_modal.filter_instead": "Filtrar en vez de ignorar",
|
||||
"ignore_notifications_modal.filter_to_act_users": "Aún podrás aceptar, rechazar o reportar usuarios",
|
||||
"ignore_notifications_modal.filter_to_avoid_confusion": "Filtrar ayuda a evitar confusiones potenciales",
|
||||
"ignore_notifications_modal.filter_to_review_separately": "Puedes revisar las notificaciones filtradas por separado",
|
||||
"ignore_notifications_modal.ignore": "Ignorar notificaciones",
|
||||
"ignore_notifications_modal.limited_accounts_title": "¿Ignorar notificaciones de cuentas moderadas?",
|
||||
"ignore_notifications_modal.new_accounts_title": "¿Ignorar notificaciones de cuentas nuevas?",
|
||||
"ignore_notifications_modal.not_followers_title": "¿Ignorar notificaciones de personas que no te sigue?",
|
||||
"ignore_notifications_modal.not_following_title": "¿Ignorar notificaciones de personas a las que no sigues?",
|
||||
"ignore_notifications_modal.private_mentions_title": "¿Ignorar notificaciones de menciones privadas no solicitadas?",
|
||||
"interaction_modal.description.favourite": "Con una cuenta en Mastodon, puedes marcar como favorita esta publicación para que el autor sepa que te gusta, y guardala para más adelante.",
|
||||
"interaction_modal.description.follow": "Con una cuenta en Mastodon, puedes seguir {name} para recibir sus publicaciones en tu fuente de inicio.",
|
||||
"interaction_modal.description.reblog": "Con una cuenta en Mastodon, puedes impulsar esta publicación para compartirla con tus propios seguidores.",
|
||||
|
@ -482,7 +493,11 @@
|
|||
"notification.favourite": "{name} marcó como favorita tu publicación",
|
||||
"notification.follow": "{name} te empezó a seguir",
|
||||
"notification.follow_request": "{name} ha solicitado seguirte",
|
||||
"notification.mention": "{name} te ha mencionado",
|
||||
"notification.label.mention": "Mención",
|
||||
"notification.label.private_mention": "Mención privada",
|
||||
"notification.label.private_reply": "Respuesta privada",
|
||||
"notification.label.reply": "Respuesta",
|
||||
"notification.mention": "Mención",
|
||||
"notification.moderation-warning.learn_more": "Saber más",
|
||||
"notification.moderation_warning": "Has recibido una advertencia de moderación",
|
||||
"notification.moderation_warning.action_delete_statuses": "Se han eliminado algunas de tus publicaciones.",
|
||||
|
@ -494,7 +509,6 @@
|
|||
"notification.moderation_warning.action_suspend": "Tu cuenta ha sido suspendida.",
|
||||
"notification.own_poll": "Tu encuesta ha terminado",
|
||||
"notification.poll": "Una encuesta ha terminado",
|
||||
"notification.private_mention": "{name} te mencionó en privado",
|
||||
"notification.reblog": "{name} ha retooteado tu estado",
|
||||
"notification.relationships_severance_event": "Conexiones perdidas con {name}",
|
||||
"notification.relationships_severance_event.account_suspension": "Un administrador de {from} ha suspendido {target}, lo que significa que ya no puedes recibir actualizaciones de sus cuentas o interactuar con ellas.",
|
||||
|
@ -504,11 +518,26 @@
|
|||
"notification.status": "{name} acaba de publicar",
|
||||
"notification.update": "{name} editó una publicación",
|
||||
"notification_requests.accept": "Aceptar",
|
||||
"notification_requests.accept_all": "Aceptar todas",
|
||||
"notification_requests.accept_multiple": "{count, plural, one {Aceptar # solicitud} other {Aceptar # solicitudes}}",
|
||||
"notification_requests.confirm_accept_all.button": "Aceptar todas",
|
||||
"notification_requests.confirm_accept_all.message": "Vas a aceptar {count, plural, one {una solicitud} other {# solicitudes}}. ¿Estás seguro de que quieres continuar?",
|
||||
"notification_requests.confirm_accept_all.title": "¿Aceptar todas las solicitudes?",
|
||||
"notification_requests.confirm_dismiss_all.button": "Descartar todas",
|
||||
"notification_requests.confirm_dismiss_all.message": "Vas a descartar {count, plural, one {una solicitud} other {# solicitudes}}. No vas a poder acceder fácilmente a {count, plural, one {ella} other {ellas}} de nuevo. ¿Estás seguro de que quieres continuar?",
|
||||
"notification_requests.confirm_dismiss_all.title": "¿Descartar todas las solicitudes?",
|
||||
"notification_requests.dismiss": "Descartar",
|
||||
"notification_requests.dismiss_all": "Descartar todas",
|
||||
"notification_requests.dismiss_multiple": "{count, plural, one {Descartar # solicitud} other {Descartar # solicitudes}}",
|
||||
"notification_requests.enter_selection_mode": "Seleccionar",
|
||||
"notification_requests.exit_selection_mode": "Cancelar",
|
||||
"notification_requests.explainer_for_limited_account": "Las notificaciones de esta cuenta han sido filtradas porque la cuenta ha sido limitada por un moderador.",
|
||||
"notification_requests.explainer_for_limited_remote_account": "Las notificaciones de esta cuenta han sido filtradas porque la cuenta o su servidor ha sido limitada por un moderador.",
|
||||
"notification_requests.maximize": "Maximizar",
|
||||
"notification_requests.minimize_banner": "Minimizar banner de notificaciones filtradas",
|
||||
"notification_requests.notifications_from": "Notificaciones de {name}",
|
||||
"notification_requests.title": "Notificaciones filtradas",
|
||||
"notification_requests.view": "Ver notificaciones",
|
||||
"notifications.clear": "Limpiar notificaciones",
|
||||
"notifications.clear_confirmation": "¿Seguro de querer borrar permanentemente todas tus notificaciones?",
|
||||
"notifications.clear_title": "¿Borrar notificaciones?",
|
||||
|
@ -545,6 +574,14 @@
|
|||
"notifications.permission_denied": "No se pueden habilitar las notificaciones de escritorio ya que se denegó el permiso.",
|
||||
"notifications.permission_denied_alert": "No se pueden habilitar las notificaciones de escritorio, ya que el permiso del navegador fue denegado anteriormente",
|
||||
"notifications.permission_required": "Las notificaciones de escritorio no están disponibles porque no se ha concedido el permiso requerido.",
|
||||
"notifications.policy.accept": "Aceptar",
|
||||
"notifications.policy.accept_hint": "Mostrar en notificaciones",
|
||||
"notifications.policy.drop": "Ignorar",
|
||||
"notifications.policy.drop_hint": "Enviar al vacío, no volver a mostrar nunca",
|
||||
"notifications.policy.filter": "Filtrar",
|
||||
"notifications.policy.filter_hint": "Enviar a la bandeja de entrada de notificaciones filtradas",
|
||||
"notifications.policy.filter_limited_accounts_hint": "Limitadas por los moderadores del servidor",
|
||||
"notifications.policy.filter_limited_accounts_title": "Cuentas moderadas",
|
||||
"notifications.policy.filter_new_accounts.hint": "Creadas durante {days, plural, one {el último día} other {los últimos # días}}",
|
||||
"notifications.policy.filter_new_accounts_title": "Cuentas nuevas",
|
||||
"notifications.policy.filter_not_followers_hint": "Incluyendo personas que te han estado siguiendo desde hace menos de {days, plural, one {un día} other {# días}}",
|
||||
|
@ -553,7 +590,7 @@
|
|||
"notifications.policy.filter_not_following_title": "Personas que no sigues",
|
||||
"notifications.policy.filter_private_mentions_hint": "Filtrada, a menos que sea en respuesta a tu propia mención, o si sigues al remitente",
|
||||
"notifications.policy.filter_private_mentions_title": "Menciones privadas no solicitadas",
|
||||
"notifications.policy.title": "Filtrar notificaciones de…",
|
||||
"notifications.policy.title": "Gestionar notificaciones de…",
|
||||
"notifications_permission_banner.enable": "Habilitar notificaciones de escritorio",
|
||||
"notifications_permission_banner.how_to_control": "Para recibir notificaciones cuando Mastodon no esté abierto, habilite las notificaciones de escritorio. Puedes controlar con precisión qué tipos de interacciones generan notificaciones de escritorio a través del botón {icon} de arriba una vez que estén habilitadas.",
|
||||
"notifications_permission_banner.title": "Nunca te pierdas nada",
|
||||
|
@ -794,6 +831,7 @@
|
|||
"timeline_hint.remote_resource_not_displayed": "{resource} de otros servidores no se muestran.",
|
||||
"timeline_hint.resources.followers": "Seguidores",
|
||||
"timeline_hint.resources.follows": "Seguidos",
|
||||
"timeline_hint.resources.replies": "Algunas respuestas",
|
||||
"timeline_hint.resources.statuses": "Toots más antiguos",
|
||||
"trends.counter_by_accounts": "{count, plural, one {{counter} persona} other {{counter} personas}} en los últimos {days, plural, one {días} other {{days} días}}",
|
||||
"trends.trending_now": "Tendencia ahora",
|
||||
|
|
|
@ -356,6 +356,17 @@
|
|||
"home.pending_critical_update.link": "Ver actualizaciones",
|
||||
"home.pending_critical_update.title": "¡Actualización de seguridad crítica disponible!",
|
||||
"home.show_announcements": "Mostrar anuncios",
|
||||
"ignore_notifications_modal.disclaimer": "Mastodon no puede informar a los usuarios que has ignorado sus notificaciones. Ignorar notificaciones no impedirá que se sigan enviando los mensajes.",
|
||||
"ignore_notifications_modal.filter_instead": "Filtrar en vez de ignorar",
|
||||
"ignore_notifications_modal.filter_to_act_users": "Aún podrás aceptar, rechazar o reportar usuarios",
|
||||
"ignore_notifications_modal.filter_to_avoid_confusion": "Filtrar ayuda a evitar confusiones potenciales",
|
||||
"ignore_notifications_modal.filter_to_review_separately": "Puedes revisar las notificaciones filtradas por separado",
|
||||
"ignore_notifications_modal.ignore": "Ignorar notificaciones",
|
||||
"ignore_notifications_modal.limited_accounts_title": "¿Ignorar notificaciones de cuentas moderadas?",
|
||||
"ignore_notifications_modal.new_accounts_title": "¿Ignorar notificaciones de cuentas nuevas?",
|
||||
"ignore_notifications_modal.not_followers_title": "¿Ignorar notificaciones de personas que no te sigue?",
|
||||
"ignore_notifications_modal.not_following_title": "¿Ignorar notificaciones de personas a las que no sigues?",
|
||||
"ignore_notifications_modal.private_mentions_title": "¿Ignorar notificaciones de menciones privadas no solicitadas?",
|
||||
"interaction_modal.description.favourite": "Con una cuenta en Mastodon, puedes marcar como favorita esta publicación para que el autor sepa que te gusta, y guardala para más adelante.",
|
||||
"interaction_modal.description.follow": "Con una cuenta en Mastodon, puedes seguir {name} para recibir sus publicaciones en tu línea temporal de inicio.",
|
||||
"interaction_modal.description.reblog": "Con una cuenta en Mastodon, puedes impulsar esta publicación para compartirla con tus propios seguidores.",
|
||||
|
@ -482,7 +493,11 @@
|
|||
"notification.favourite": "{name} marcó como favorita tu publicación",
|
||||
"notification.follow": "{name} te empezó a seguir",
|
||||
"notification.follow_request": "{name} ha solicitado seguirte",
|
||||
"notification.mention": "{name} te ha mencionado",
|
||||
"notification.label.mention": "Mención",
|
||||
"notification.label.private_mention": "Mención privada",
|
||||
"notification.label.private_reply": "Respuesta privada",
|
||||
"notification.label.reply": "Respuesta",
|
||||
"notification.mention": "Mención",
|
||||
"notification.moderation-warning.learn_more": "Saber más",
|
||||
"notification.moderation_warning": "Has recibido una advertencia de moderación",
|
||||
"notification.moderation_warning.action_delete_statuses": "Se han eliminado algunas de tus publicaciones.",
|
||||
|
@ -494,7 +509,6 @@
|
|||
"notification.moderation_warning.action_suspend": "Tu cuenta ha sido suspendida.",
|
||||
"notification.own_poll": "Tu encuesta ha terminado",
|
||||
"notification.poll": "Una encuesta ha terminado",
|
||||
"notification.private_mention": "{name} te mencionó en privado",
|
||||
"notification.reblog": "{name} ha impulsado tu publicación",
|
||||
"notification.relationships_severance_event": "Conexiones perdidas con {name}",
|
||||
"notification.relationships_severance_event.account_suspension": "Un administrador de {from} ha suspendido {target}, lo que significa que ya no puedes recibir actualizaciones de sus cuentas o interactuar con ellas.",
|
||||
|
@ -504,11 +518,26 @@
|
|||
"notification.status": "{name} acaba de publicar",
|
||||
"notification.update": "{name} editó una publicación",
|
||||
"notification_requests.accept": "Aceptar",
|
||||
"notification_requests.accept_all": "Aceptar todas",
|
||||
"notification_requests.accept_multiple": "{count, plural, one {Aceptar # solicitud} other {Aceptar # solicitudes}}",
|
||||
"notification_requests.confirm_accept_all.button": "Aceptar todas",
|
||||
"notification_requests.confirm_accept_all.message": "Vas a aceptar {count, plural, one {una solicitud} other {# solicitudes}}. ¿Estás seguro de que quieres continuar?",
|
||||
"notification_requests.confirm_accept_all.title": "¿Aceptar todas las solicitudes?",
|
||||
"notification_requests.confirm_dismiss_all.button": "Descartar todas",
|
||||
"notification_requests.confirm_dismiss_all.message": "Vas a descartar {count, plural, one {una solicitud} other {# solicitudes}}. No vas a poder acceder fácilmente a {count, plural, one {ella} other {ellas}} de nuevo. ¿Estás seguro de que quieres continuar?",
|
||||
"notification_requests.confirm_dismiss_all.title": "¿Descartar todas las solicitudes?",
|
||||
"notification_requests.dismiss": "Descartar",
|
||||
"notification_requests.dismiss_all": "Descartar todas",
|
||||
"notification_requests.dismiss_multiple": "{count, plural, one {Descartar # solicitud} other {Descartar # solicitudes}}",
|
||||
"notification_requests.enter_selection_mode": "Seleccionar",
|
||||
"notification_requests.exit_selection_mode": "Cancelar",
|
||||
"notification_requests.explainer_for_limited_account": "Las notificaciones de esta cuenta han sido filtradas porque la cuenta ha sido limitada por un moderador.",
|
||||
"notification_requests.explainer_for_limited_remote_account": "Las notificaciones de esta cuenta han sido filtradas porque la cuenta o su servidor ha sido limitada por un moderador.",
|
||||
"notification_requests.maximize": "Maximizar",
|
||||
"notification_requests.minimize_banner": "Minimizar banner de notificaciones filtradas",
|
||||
"notification_requests.notifications_from": "Notificaciones de {name}",
|
||||
"notification_requests.title": "Notificaciones filtradas",
|
||||
"notification_requests.view": "Ver notificaciones",
|
||||
"notifications.clear": "Limpiar notificaciones",
|
||||
"notifications.clear_confirmation": "¿Seguro que quieres limpiar permanentemente todas tus notificaciones?",
|
||||
"notifications.clear_title": "¿Borrar notificaciones?",
|
||||
|
@ -545,6 +574,14 @@
|
|||
"notifications.permission_denied": "No se pueden habilitar las notificaciones de escritorio ya que se denegó el permiso.",
|
||||
"notifications.permission_denied_alert": "No se pueden habilitar las notificaciones de escritorio, ya que el permiso del navegador fue denegado anteriormente",
|
||||
"notifications.permission_required": "Las notificaciones de escritorio no están disponibles porque no se ha concedido el permiso requerido.",
|
||||
"notifications.policy.accept": "Aceptar",
|
||||
"notifications.policy.accept_hint": "Mostrar en notificaciones",
|
||||
"notifications.policy.drop": "Ignorar",
|
||||
"notifications.policy.drop_hint": "Enviar al vacío, no volver a mostrar nunca",
|
||||
"notifications.policy.filter": "Filtrar",
|
||||
"notifications.policy.filter_hint": "Enviar a la bandeja de entrada de notificaciones filtradas",
|
||||
"notifications.policy.filter_limited_accounts_hint": "Limitadas por los moderadores del servidor",
|
||||
"notifications.policy.filter_limited_accounts_title": "Cuentas moderadas",
|
||||
"notifications.policy.filter_new_accounts.hint": "Creadas durante {days, plural, one {el último día} other {los últimos # días}}",
|
||||
"notifications.policy.filter_new_accounts_title": "Cuentas nuevas",
|
||||
"notifications.policy.filter_not_followers_hint": "Incluyendo personas que te han estado siguiendo desde hace menos de {days, plural, one {un día} other {# días}}",
|
||||
|
@ -553,7 +590,7 @@
|
|||
"notifications.policy.filter_not_following_title": "Personas que no sigues",
|
||||
"notifications.policy.filter_private_mentions_hint": "Filtradas a menos que sea en respuesta a tu propia mención, o si sigues al remitente",
|
||||
"notifications.policy.filter_private_mentions_title": "Menciones privadas no solicitadas",
|
||||
"notifications.policy.title": "Filtrar notificaciones de…",
|
||||
"notifications.policy.title": "Gestionar notificaciones de…",
|
||||
"notifications_permission_banner.enable": "Habilitar notificaciones de escritorio",
|
||||
"notifications_permission_banner.how_to_control": "Para recibir notificaciones cuando Mastodon no esté abierto, habilite las notificaciones de escritorio. Puedes controlar con precisión qué tipos de interacciones generan notificaciones de escritorio a través del botón {icon} de arriba una vez que estén habilitadas.",
|
||||
"notifications_permission_banner.title": "Nunca te pierdas nada",
|
||||
|
@ -794,6 +831,7 @@
|
|||
"timeline_hint.remote_resource_not_displayed": "{resource} de otros servidores no se muestran.",
|
||||
"timeline_hint.resources.followers": "Seguidores",
|
||||
"timeline_hint.resources.follows": "Seguidos",
|
||||
"timeline_hint.resources.replies": "Algunas respuestas",
|
||||
"timeline_hint.resources.statuses": "Publicaciones más antiguas",
|
||||
"trends.counter_by_accounts": "{count, plural, one {{counter} persona} other {{counter} personas}} en los últimos {days, plural, one {días} other {{days} días}}",
|
||||
"trends.trending_now": "Tendencia ahora",
|
||||
|
|
|
@ -464,7 +464,6 @@
|
|||
"notification.favourite": "{name} märkis su postituse lemmikuks",
|
||||
"notification.follow": "{name} alustas su jälgimist",
|
||||
"notification.follow_request": "{name} soovib sind jälgida",
|
||||
"notification.mention": "{name} mainis sind",
|
||||
"notification.moderation-warning.learn_more": "Vaata lisa",
|
||||
"notification.moderation_warning": "Said modereerimise hoiatuse",
|
||||
"notification.moderation_warning.action_delete_statuses": "Mõni su postitus on eemaldatud.",
|
||||
|
@ -528,7 +527,6 @@
|
|||
"notifications.policy.filter_not_following_title": "Inimesed, keda sa ei jälgi",
|
||||
"notifications.policy.filter_private_mentions_hint": "Filtreeritud, kui see pole vastus sinupoolt mainimisele või kui jälgid saatjat",
|
||||
"notifications.policy.filter_private_mentions_title": "Soovimatud privaatsed mainimised",
|
||||
"notifications.policy.title": "Filtreeri välja teavitused kohast…",
|
||||
"notifications_permission_banner.enable": "Luba töölaua märguanded",
|
||||
"notifications_permission_banner.how_to_control": "Et saada teateid, ajal mil Mastodon pole avatud, luba töölauamärguanded. Saad täpselt määrata, mis tüüpi tegevused tekitavad märguandeid, kasutates peale teadaannete sisse lülitamist üleval olevat nuppu {icon}.",
|
||||
"notifications_permission_banner.title": "Ära jää millestki ilma",
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
"about.not_available": "Zerbitzari honek ez du informazio hau eskuragarri jarri.",
|
||||
"about.powered_by": "{mastodon} erabiltzen duen sare sozial deszentralizatua",
|
||||
"about.rules": "Zerbitzariaren arauak",
|
||||
"account.account_note_header": "Ohar pertsonala",
|
||||
"account.add_or_remove_from_list": "Gehitu edo kendu zerrendetatik",
|
||||
"account.badges.bot": "Bot-a",
|
||||
"account.badges.group": "Taldea",
|
||||
|
@ -34,7 +35,9 @@
|
|||
"account.follow_back": "Jarraitu bueltan",
|
||||
"account.followers": "Jarraitzaileak",
|
||||
"account.followers.empty": "Ez du inork erabiltzaile hau jarraitzen oraindik.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} jarraitzaile} other {{counter} jarraitzaile}}",
|
||||
"account.following": "Jarraitzen",
|
||||
"account.following_counter": "{count, plural, one {{counter} jarraitzen} other {{counter} jarraitzen}}",
|
||||
"account.follows.empty": "Erabiltzaile honek ez du inor jarraitzen oraindik.",
|
||||
"account.go_to_profile": "Joan profilera",
|
||||
"account.hide_reblogs": "Ezkutatu @{name} erabiltzailearen bultzadak",
|
||||
|
@ -60,6 +63,7 @@
|
|||
"account.requested_follow": "{name}-(e)k zu jarraitzeko eskaera egin du",
|
||||
"account.share": "Partekatu @{name} erabiltzailearen profila",
|
||||
"account.show_reblogs": "Erakutsi @{name} erabiltzailearen bultzadak",
|
||||
"account.statuses_counter": "{count, plural, one {{counter} bidalketa} other {{counter} bidalketa}}",
|
||||
"account.unblock": "Desblokeatu @{name}",
|
||||
"account.unblock_domain": "Berriz erakutsi {domain}",
|
||||
"account.unblock_short": "Desblokeatu",
|
||||
|
@ -175,6 +179,7 @@
|
|||
"confirmations.discard_edit_media.message": "Multimediaren deskribapen edo aurrebistan gorde gabeko aldaketak daude, baztertu nahi dituzu?",
|
||||
"confirmations.edit.confirm": "Editatu",
|
||||
"confirmations.edit.message": "Orain editatzen baduzu, une honetan idazten ari zaren mezua gainidatziko da. Ziur jarraitu nahi duzula?",
|
||||
"confirmations.edit.title": "Gainidatzi bidalketa?",
|
||||
"confirmations.logout.confirm": "Amaitu saioa",
|
||||
"confirmations.logout.message": "Ziur saioa amaitu nahi duzula?",
|
||||
"confirmations.logout.title": "Itxi saioa?",
|
||||
|
@ -184,8 +189,10 @@
|
|||
"confirmations.redraft.title": "Ezabatu eta berridatzi bidalketa?",
|
||||
"confirmations.reply.confirm": "Erantzun",
|
||||
"confirmations.reply.message": "Orain erantzuteak idazten ari zaren mezua gainidatziko du. Ziur jarraitu nahi duzula?",
|
||||
"confirmations.reply.title": "Gainidatzi bidalketa?",
|
||||
"confirmations.unfollow.confirm": "Utzi jarraitzeari",
|
||||
"confirmations.unfollow.message": "Ziur {name} jarraitzeari utzi nahi diozula?",
|
||||
"confirmations.unfollow.title": "Erabiltzailea jarraitzeari utzi?",
|
||||
"conversation.delete": "Ezabatu elkarrizketa",
|
||||
"conversation.mark_as_read": "Markatu irakurrita bezala",
|
||||
"conversation.open": "Ikusi elkarrizketa",
|
||||
|
@ -348,6 +355,12 @@
|
|||
"home.pending_critical_update.link": "Ikusi eguneraketak",
|
||||
"home.pending_critical_update.title": "Segurtasun eguneraketa kritikoa eskuragarri!",
|
||||
"home.show_announcements": "Erakutsi iragarpenak",
|
||||
"ignore_notifications_modal.filter_instead": "Iragazi ez ikusiarena egin beharrean",
|
||||
"ignore_notifications_modal.ignore": "Ezikusi jakinarazpenak",
|
||||
"ignore_notifications_modal.limited_accounts_title": "Moderatutako kontuen jakinarazpenei ez ikusiarena egin?",
|
||||
"ignore_notifications_modal.new_accounts_title": "Kontu berrien jakinarazpenei ez ikusiarena egin?",
|
||||
"ignore_notifications_modal.not_followers_title": "Jarraitzen ez zaituzten pertsonen jakinarazpenei ez ikusiarena egin?",
|
||||
"ignore_notifications_modal.not_following_title": "Jarraitzen ez dituzun pertsonen jakinarazpenei ez ikusiarena egin?",
|
||||
"interaction_modal.description.favourite": "Mastodon kontu batekin bidalketa hau gogoko egin dezakezu, egileari eskertzeko eta gerorako gordetzeko.",
|
||||
"interaction_modal.description.follow": "Mastodon kontu batekin {name} jarraitu dezakezu bere bidalketak zure hasierako denbora lerroan jasotzeko.",
|
||||
"interaction_modal.description.reblog": "Mastodon kontu batekin bidalketa hau bultzatu dezakezu, zure jarraitzaileekin partekatzeko.",
|
||||
|
@ -466,7 +479,11 @@
|
|||
"notification.favourite": "{name}(e)k zure bidalketa gogoko du",
|
||||
"notification.follow": "{name}(e)k jarraitzen dizu",
|
||||
"notification.follow_request": "{name}(e)k zu jarraitzeko eskaera egin du",
|
||||
"notification.mention": "{name}(e)k aipatu zaitu",
|
||||
"notification.label.mention": "Aipamena",
|
||||
"notification.label.private_mention": "Aipamen pribatua",
|
||||
"notification.label.private_reply": "Erantzun pribatua",
|
||||
"notification.label.reply": "Erantzuna",
|
||||
"notification.mention": "Aipamena",
|
||||
"notification.moderation-warning.learn_more": "Informazio gehiago",
|
||||
"notification.moderation_warning": "Moderazio-abisu bat jaso duzu",
|
||||
"notification.moderation_warning.action_delete_statuses": "Argitalpen batzuk kendu dira.",
|
||||
|
@ -477,6 +494,7 @@
|
|||
"notification.moderation_warning.action_silence": "Kontua murriztu egin da.",
|
||||
"notification.moderation_warning.action_suspend": "Kontua itxi da.",
|
||||
"notification.own_poll": "Zure inkesta amaitu da",
|
||||
"notification.poll": "Zuk erantzun duzun inkesta bat bukatu da",
|
||||
"notification.reblog": "{name}(e)k bultzada eman dio zure bidalketari",
|
||||
"notification.relationships_severance_event": "{name} erabiltzailearekin galdutako konexioak",
|
||||
"notification.relationships_severance_event.account_suspension": "{from} zerbitzariko administratzaile batek {target} bertan behera utzi du, hau da, ezin izango dituzu jaso hango eguneratzerik edo hangoekin elkarreragin.",
|
||||
|
@ -484,9 +502,19 @@
|
|||
"notification.status": "{name} erabiltzaileak bidalketa egin berri du",
|
||||
"notification.update": "{name} erabiltzaileak bidalketa bat editatu du",
|
||||
"notification_requests.accept": "Onartu",
|
||||
"notification_requests.accept_all": "Onartu dena",
|
||||
"notification_requests.confirm_accept_all.button": "Onartu dena",
|
||||
"notification_requests.confirm_accept_all.title": "Onartu jakinarazpen-eskaerak?",
|
||||
"notification_requests.confirm_dismiss_all.button": "Baztertu guztiak",
|
||||
"notification_requests.confirm_dismiss_all.title": "Baztertu jakinarazpen-eskaerak?",
|
||||
"notification_requests.dismiss": "Baztertu",
|
||||
"notification_requests.dismiss_all": "Baztertu guztiak",
|
||||
"notification_requests.enter_selection_mode": "Hautatu",
|
||||
"notification_requests.exit_selection_mode": "Utzi",
|
||||
"notification_requests.maximize": "Maximizatu",
|
||||
"notification_requests.notifications_from": "{name} erabiltzailearen jakinarazpenak",
|
||||
"notification_requests.title": "Iragazitako jakinarazpenak",
|
||||
"notification_requests.view": "Ikusi jakinarazpenak",
|
||||
"notifications.clear": "Garbitu jakinarazpenak",
|
||||
"notifications.clear_confirmation": "Ziur zure jakinarazpen guztiak behin betirako garbitu nahi dituzula?",
|
||||
"notifications.clear_title": "Garbitu jakinarazpenak?",
|
||||
|
@ -523,6 +551,14 @@
|
|||
"notifications.permission_denied": "Mahaigaineko jakinarazpenak ez daude erabilgarri, nabigatzaileari baimen eskaera ukatu zitzaiolako",
|
||||
"notifications.permission_denied_alert": "Mahaigaineko jakinarazpenak ezin dira gaitu, nabigatzaileari baimena ukatu zitzaiolako",
|
||||
"notifications.permission_required": "Mahaigaineko jakinarazpenak ez daude erabilgarri, horretarako behar den baimena ez delako eman.",
|
||||
"notifications.policy.accept": "Onartu",
|
||||
"notifications.policy.accept_hint": "Erakutsi jakinarazpenetan",
|
||||
"notifications.policy.drop": "Ezikusi",
|
||||
"notifications.policy.drop_hint": "Hutsera bidali, ez erakutsi inoiz gehiago",
|
||||
"notifications.policy.filter": "Iragazi",
|
||||
"notifications.policy.filter_hint": "Bidali filtratutako jakinarazpenen sarrerako ontzira",
|
||||
"notifications.policy.filter_limited_accounts_hint": "Zerbitzariaren moderatzaileek mugatuta",
|
||||
"notifications.policy.filter_limited_accounts_title": "Moderatutako kontuak",
|
||||
"notifications.policy.filter_new_accounts.hint": "Azken {days, plural, one {egunean} other {# egunetan}} sortua",
|
||||
"notifications.policy.filter_new_accounts_title": "Kontu berriak",
|
||||
"notifications.policy.filter_not_followers_hint": "{days, plural, one {Egun batez} other {# egunez}} baino gutxiago jarraitu zaituen jendea barne",
|
||||
|
@ -531,7 +567,7 @@
|
|||
"notifications.policy.filter_not_following_title": "Jarraitzen ez duzun jendea",
|
||||
"notifications.policy.filter_private_mentions_hint": "Iragazita, baldin eta zure aipamenaren erantzuna bada edo bidaltzailea jarraitzen baduzu",
|
||||
"notifications.policy.filter_private_mentions_title": "Eskatu gabeko aipamen pribatuak",
|
||||
"notifications.policy.title": "Ez iragazi hemengo jakinarazpenak…",
|
||||
"notifications.policy.title": "Kudeatu honen jakinarazpaenak…",
|
||||
"notifications_permission_banner.enable": "Gaitu mahaigaineko jakinarazpenak",
|
||||
"notifications_permission_banner.how_to_control": "Mastodon irekita ez dagoenean jakinarazpenak jasotzeko, gaitu mahaigaineko jakinarazpenak. Mahaigaineko jakinarazpenak ze elkarrekintzak eragingo dituzten zehazki kontrolatu dezakezu goiko {icon} botoia erabiliz, gaituta daudenean.",
|
||||
"notifications_permission_banner.title": "Ez galdu ezer inoiz",
|
||||
|
@ -658,6 +694,7 @@
|
|||
"report.unfollow_explanation": "Kontu hau jarraitzen ari zara. Zure denbora-lerro nagusian bere bidalketak ez ikusteko, jarraitzeari utzi.",
|
||||
"report_notification.attached_statuses": "{count, plural, one {Bidalketa {count}} other {{count} bidalketa}} erantsita",
|
||||
"report_notification.categories.legal": "Legala",
|
||||
"report_notification.categories.legal_sentence": "eduki ilegala",
|
||||
"report_notification.categories.other": "Bestelakoak",
|
||||
"report_notification.categories.other_sentence": "bestelakoak",
|
||||
"report_notification.categories.spam": "Spam",
|
||||
|
@ -693,6 +730,7 @@
|
|||
"server_banner.administered_by": "Administratzailea(k):",
|
||||
"server_banner.server_stats": "Zerbitzariaren estatistikak:",
|
||||
"sign_in_banner.create_account": "Sortu kontua",
|
||||
"sign_in_banner.mastodon_is": "Mastodon gertatzen ari denari buruz egunean egoteko modurik onena da.",
|
||||
"sign_in_banner.sign_in": "Hasi saioa",
|
||||
"sign_in_banner.sso_redirect": "Hasi saioa edo izena eman",
|
||||
"status.admin_account": "Ireki @{name} erabiltzailearen moderazio interfazea",
|
||||
|
@ -768,6 +806,7 @@
|
|||
"timeline_hint.remote_resource_not_displayed": "Beste zerbitzarietako {resource} ez da bistaratzen.",
|
||||
"timeline_hint.resources.followers": "Jarraitzaileak",
|
||||
"timeline_hint.resources.follows": "Jarraitzen",
|
||||
"timeline_hint.resources.replies": "Erantzun batzuk",
|
||||
"timeline_hint.resources.statuses": "Bidalketa zaharragoak",
|
||||
"trends.counter_by_accounts": "{count, plural, one {Pertsona {counter}} other {{counter} pertsona}} azken {days, plural, one {egunean} other {{days} egunetan}}",
|
||||
"trends.trending_now": "Joera orain",
|
||||
|
|
|
@ -435,7 +435,6 @@
|
|||
"notification.favourite": "{name} فرستهتان را برگزید",
|
||||
"notification.follow": "{name} پیگیرتان شد",
|
||||
"notification.follow_request": "{name} درخواست پیگیریتان را داد",
|
||||
"notification.mention": "{name} به شما اشاره کرد",
|
||||
"notification.moderation-warning.learn_more": "بیشتر بدانید",
|
||||
"notification.own_poll": "نظرسنجیتان پایان یافت",
|
||||
"notification.reblog": "{name} فرستهتان را تقویت کرد",
|
||||
|
|
|
@ -356,6 +356,17 @@
|
|||
"home.pending_critical_update.link": "Tutustu päivityssisältöihin",
|
||||
"home.pending_critical_update.title": "Kriittinen tietoturvapäivitys saatavilla!",
|
||||
"home.show_announcements": "Näytä tiedotteet",
|
||||
"ignore_notifications_modal.disclaimer": "Mastodon ei voi ilmoittaa käyttäjille, että olet sivuuttanut heidän ilmoituksensa. Ilmoitusten sivuuttaminen ei lopeta itse viestien lähetystä.",
|
||||
"ignore_notifications_modal.filter_instead": "Suodata sen sijaan",
|
||||
"ignore_notifications_modal.filter_to_act_users": "Voit silti hyväksyä, hylätä tai raportoida käyttäjiä",
|
||||
"ignore_notifications_modal.filter_to_avoid_confusion": "Suodatus auttaa välttämään mahdollisia sekaannuksia",
|
||||
"ignore_notifications_modal.filter_to_review_separately": "Voit käydä suodatettuja ilmoituksia läpi erikseen",
|
||||
"ignore_notifications_modal.ignore": "Sivuuta ilmoitukset",
|
||||
"ignore_notifications_modal.limited_accounts_title": "Sivuutetaanko ilmoitukset moderoiduilta tileiltä?",
|
||||
"ignore_notifications_modal.new_accounts_title": "Sivuutetaanko ilmoitukset uusilta tileiltä?",
|
||||
"ignore_notifications_modal.not_followers_title": "Sivuutetaanko ilmoitukset käyttäjiltä, jotka eivät seuraa sinua?",
|
||||
"ignore_notifications_modal.not_following_title": "Sivuutetaanko ilmoitukset käyttäjiltä, joita et seuraa?",
|
||||
"ignore_notifications_modal.private_mentions_title": "Sivuutetaanko ilmoitukset ei-toivotuista yksityismaininnoista?",
|
||||
"interaction_modal.description.favourite": "Mastodon-tilillä voit lisätä tämän julkaisun suosikkeihisi osoittaaksesi tekijälle arvostavasi sitä ja tallentaaksesi sen tulevaa käyttöä varten.",
|
||||
"interaction_modal.description.follow": "Mastodon-tilillä voit seurata käyttäjää {name} saadaksesi hänen julkaisunsa kotisyötteeseesi.",
|
||||
"interaction_modal.description.reblog": "Mastodon-tilillä voit tehostaa tätä julkaisua jakaaksesi sen seuraajiesi kanssa.",
|
||||
|
@ -482,7 +493,11 @@
|
|||
"notification.favourite": "{name} lisäsi julkaisusi suosikkeihinsa",
|
||||
"notification.follow": "{name} seurasi sinua",
|
||||
"notification.follow_request": "{name} on pyytänyt lupaa seurata sinua",
|
||||
"notification.mention": "{name} mainitsi sinut",
|
||||
"notification.label.mention": "Maininta",
|
||||
"notification.label.private_mention": "Yksityismaininta",
|
||||
"notification.label.private_reply": "Yksityinen vastaus",
|
||||
"notification.label.reply": "Vastaus",
|
||||
"notification.mention": "Maininta",
|
||||
"notification.moderation-warning.learn_more": "Lue lisää",
|
||||
"notification.moderation_warning": "Olet saanut moderointivaroituksen",
|
||||
"notification.moderation_warning.action_delete_statuses": "Julkaisujasi on poistettu.",
|
||||
|
@ -494,7 +509,6 @@
|
|||
"notification.moderation_warning.action_suspend": "Tilisi on jäädytetty.",
|
||||
"notification.own_poll": "Äänestyksesi on päättynyt",
|
||||
"notification.poll": "Äänestys, johon osallistuit, on päättynyt",
|
||||
"notification.private_mention": "{name} mainitsi sinut yksityisesti",
|
||||
"notification.reblog": "{name} tehosti julkaisuasi",
|
||||
"notification.relationships_severance_event": "Menetettiin yhteydet palvelimeen {name}",
|
||||
"notification.relationships_severance_event.account_suspension": "Palvelimen {from} ylläpitäjä on jäädyttänyt palvelimen {target} vuorovaikutuksen. Enää et voi siis vastaanottaa päivityksiä heiltä tai olla yhteyksissä heidän kanssaan.",
|
||||
|
@ -504,11 +518,26 @@
|
|||
"notification.status": "{name} julkaisi juuri",
|
||||
"notification.update": "{name} muokkasi julkaisua",
|
||||
"notification_requests.accept": "Hyväksy",
|
||||
"notification_requests.accept_all": "Hyväksy kaikki",
|
||||
"notification_requests.accept_multiple": "{count, plural, one {Hyväksy # pyyntö} other {Hyväksy # pyyntöä}}",
|
||||
"notification_requests.confirm_accept_all.button": "Hyväksy kaikki",
|
||||
"notification_requests.confirm_accept_all.message": "Olet aikeissa hyväksyä {count, plural, one {ilmoituspyynnön} other {# ilmoituspyyntöä}}. Haluatko varmasti jatkaa?",
|
||||
"notification_requests.confirm_accept_all.title": "Hyväksytäänkö ilmoituspyynnöt?",
|
||||
"notification_requests.confirm_dismiss_all.button": "Hylkää kaikki",
|
||||
"notification_requests.confirm_dismiss_all.message": "Olet aikeissa hylätä {count, plural, one {ilmoituspyynnön} other {# ilmoituspyyntöä}}. Et saa {count, plural, one {sitä} other {niitä}} enää helposti takaisin. Haluatko varmasti jatkaa?",
|
||||
"notification_requests.confirm_dismiss_all.title": "Hylätäänkö ilmoituspyynnöt?",
|
||||
"notification_requests.dismiss": "Hylkää",
|
||||
"notification_requests.dismiss_all": "Hylkää kaikki",
|
||||
"notification_requests.dismiss_multiple": "{count, plural, one {Hylkää # pyyntö} other {Hylkää # pyyntöä}}",
|
||||
"notification_requests.enter_selection_mode": "Valitse",
|
||||
"notification_requests.exit_selection_mode": "Peruuta",
|
||||
"notification_requests.explainer_for_limited_account": "Tähän tiliin liittyvät ilmoitukset on suodatettu, koska moderaattori on rajoittanut tiliä.",
|
||||
"notification_requests.explainer_for_limited_remote_account": "Tähän tiliin liittyvät ilmoitukset on suodatettu, koska moderaattori on rajoittanut tiliä tai sen palvelinta.",
|
||||
"notification_requests.maximize": "Suurenna",
|
||||
"notification_requests.minimize_banner": "Pienennä suodatettujen ilmoitusten palkki",
|
||||
"notification_requests.notifications_from": "Ilmoitukset käyttäjältä {name}",
|
||||
"notification_requests.title": "Suodatetut ilmoitukset",
|
||||
"notification_requests.view": "Näytä ilmoitukset",
|
||||
"notifications.clear": "Tyhjennä ilmoitukset",
|
||||
"notifications.clear_confirmation": "Haluatko varmasti poistaa kaikki ilmoitukset pysyvästi?",
|
||||
"notifications.clear_title": "Tyhjennetäänkö ilmoitukset?",
|
||||
|
@ -545,6 +574,12 @@
|
|||
"notifications.permission_denied": "Työpöytäilmoitukset eivät ole käytettävissä, koska selaimen käyttöoikeuspyyntö on aiemmin evätty",
|
||||
"notifications.permission_denied_alert": "Työpöytäilmoituksia ei voi ottaa käyttöön, koska selaimen käyttöoikeus on aiemmin evätty",
|
||||
"notifications.permission_required": "Työpöytäilmoitukset eivät ole käytettävissä, koska siihen tarvittavaa käyttöoikeutta ei ole myönnetty.",
|
||||
"notifications.policy.accept": "Hyväksy",
|
||||
"notifications.policy.accept_hint": "Näytä ilmoituksissa",
|
||||
"notifications.policy.drop": "Sivuuta",
|
||||
"notifications.policy.drop_hint": "Lähetä tyhjyyteen, jotta et näe niitä enää koskaan",
|
||||
"notifications.policy.filter": "Suodata",
|
||||
"notifications.policy.filter_hint": "Lähetä suodatettuihin ilmoituksiin",
|
||||
"notifications.policy.filter_limited_accounts_hint": "Palvelimen moderaattorien rajoittamat",
|
||||
"notifications.policy.filter_limited_accounts_title": "Moderoidut tilit",
|
||||
"notifications.policy.filter_new_accounts.hint": "Luotu {days, plural, one {viime päivän} other {viimeisen # päivän}} aikana",
|
||||
|
@ -555,7 +590,7 @@
|
|||
"notifications.policy.filter_not_following_title": "Käyttäjät, joita et seuraa",
|
||||
"notifications.policy.filter_private_mentions_hint": "Suodatetaan, ellei se ole vastaus omaan mainintaasi tai ellet seuraa lähettäjää",
|
||||
"notifications.policy.filter_private_mentions_title": "Ei-toivotut yksityismaininnat",
|
||||
"notifications.policy.title": "Suodata ilmoitukset pois kohteesta…",
|
||||
"notifications.policy.title": "Hallitse ilmoituksia kohteesta…",
|
||||
"notifications_permission_banner.enable": "Ota työpöytäilmoitukset käyttöön",
|
||||
"notifications_permission_banner.how_to_control": "Saadaksesi ilmoituksia, kun Mastodon ei ole auki, ota työpöytäilmoitukset käyttöön. Voit hallita tarkasti, mistä saat työpöytäilmoituksia kun ilmoitukset on otettu käyttöön yllä olevan {icon}-painikkeen kautta.",
|
||||
"notifications_permission_banner.title": "Älä anna minkään mennä ohi",
|
||||
|
@ -796,6 +831,7 @@
|
|||
"timeline_hint.remote_resource_not_displayed": "Muiden palvelinten {resource} eivät näy tässä.",
|
||||
"timeline_hint.resources.followers": "seuraajat",
|
||||
"timeline_hint.resources.follows": "seuratut",
|
||||
"timeline_hint.resources.replies": "kaikki vastaukset",
|
||||
"timeline_hint.resources.statuses": "vanhemmat julkaisut",
|
||||
"trends.counter_by_accounts": "{count, plural, one {{counter} käyttäjä} other {{counter} käyttäjää}} {days, plural, one {viime päivänä} other {viimeisenä {days} päivänä}}",
|
||||
"trends.trending_now": "Suosittua nyt",
|
||||
|
|
|
@ -239,7 +239,6 @@
|
|||
"notification.admin.report": "Iniulat ni {name} si {target}",
|
||||
"notification.follow": "Sinundan ka ni {name}",
|
||||
"notification.follow_request": "Hinihiling ni {name} na sundan ka",
|
||||
"notification.mention": "Binanggit ka ni {name}",
|
||||
"notification.moderation_warning": "Mayroong kang natanggap na babala sa pagtitimpi",
|
||||
"notification.relationships_severance_event.learn_more": "Matuto nang higit pa",
|
||||
"notification_requests.accept": "Tanggapin",
|
||||
|
|
|
@ -301,7 +301,7 @@
|
|||
"filter_modal.select_filter.title": "Filtrera hendan postin",
|
||||
"filter_modal.title.status": "Filtrera ein post",
|
||||
"filtered_notifications_banner.pending_requests": "Frá {count, plural, =0 {ongum} one {einum persóni} other {# persónum}}, sum tú kanska kennir",
|
||||
"filtered_notifications_banner.title": "Sáldaðar fráboðanir",
|
||||
"filtered_notifications_banner.title": "Filtreraðar fráboðanir",
|
||||
"firehose.all": "Allar",
|
||||
"firehose.local": "Hesin ambætarin",
|
||||
"firehose.remote": "Aðrir ambætarar",
|
||||
|
@ -356,6 +356,17 @@
|
|||
"home.pending_critical_update.link": "Sí dagføringar",
|
||||
"home.pending_critical_update.title": "Kritisk trygdardagføring er tøk!",
|
||||
"home.show_announcements": "Vís kunngerðir",
|
||||
"ignore_notifications_modal.disclaimer": "Mastodon kann ikki upplýsa brúkarar um, at tú hevur latið sum um, at tú ikki hevur sæð teirra fráboðanir. At lata sum um, at tú ikki sær fráboðanir, forðar ikki, at boðini sjálv verða send.",
|
||||
"ignore_notifications_modal.filter_instead": "Filtrera ístaðin",
|
||||
"ignore_notifications_modal.filter_to_act_users": "Tú kanst framvegis góðtaka, avvísa og melda brúkarar",
|
||||
"ignore_notifications_modal.filter_to_avoid_confusion": "Filtrering ger tað lættari at sleppa undan møguligum misskiljingum",
|
||||
"ignore_notifications_modal.filter_to_review_separately": "Tú kanst kanna filtreraðar fráboðanir fyri seg",
|
||||
"ignore_notifications_modal.ignore": "Lat sum um tú ikki sær fráboðanir",
|
||||
"ignore_notifications_modal.limited_accounts_title": "Lat sum um tú ikki sær fráboðanir frá avmarkaðum kontum?",
|
||||
"ignore_notifications_modal.new_accounts_title": "Lat sum um tú ikki sær fráboðanir frá nýggjum kontum?",
|
||||
"ignore_notifications_modal.not_followers_title": "Lat sum um tú ikki sær fráboðanir frá fólki, sum ikki fylgja tær?",
|
||||
"ignore_notifications_modal.not_following_title": "Lat sum um tú ikki sær fráboðanir frá fólki, sum tú ikki fylgir?",
|
||||
"ignore_notifications_modal.private_mentions_title": "Lat sum um tú ikki sær fráboðanir frá óbiðnum privatum umrøðum?",
|
||||
"interaction_modal.description.favourite": "Við einari kontu á Mastodon kanst tú dáma hendan postin fyri at vísa rithøvundanum at tú virðismetur hann og goymir hann til seinni.",
|
||||
"interaction_modal.description.follow": "Við eini kontu á Mastodon kanst tú fylgja {name} fyri at síggja teirra postar á tíni heimarás.",
|
||||
"interaction_modal.description.reblog": "Við eini kontu á Mastodon kanst tú stimbra hendan postin og soleiðis deila hann við tínar fylgjarar.",
|
||||
|
@ -482,7 +493,11 @@
|
|||
"notification.favourite": "{name} dámdi postin hjá tær",
|
||||
"notification.follow": "{name} fylgdi tær",
|
||||
"notification.follow_request": "{name} biður um at fylgja tær",
|
||||
"notification.mention": "{name} nevndi teg",
|
||||
"notification.label.mention": "Umrøða",
|
||||
"notification.label.private_mention": "Privat umrøða",
|
||||
"notification.label.private_reply": "Privat svar",
|
||||
"notification.label.reply": "Svara",
|
||||
"notification.mention": "Umrøð",
|
||||
"notification.moderation-warning.learn_more": "Lær meira",
|
||||
"notification.moderation_warning": "Tú hevur móttikið eina umsjónarávaring",
|
||||
"notification.moderation_warning.action_delete_statuses": "Onkrir av tínum postum eru strikaðir.",
|
||||
|
@ -494,7 +509,6 @@
|
|||
"notification.moderation_warning.action_suspend": "Konta tín er ógildað.",
|
||||
"notification.own_poll": "Tín atkvøðugreiðsla er endað",
|
||||
"notification.poll": "Ein atkvøðugreiðsla, har tú atkvøddi, er endað",
|
||||
"notification.private_mention": "{name} nevndi teg í privatum boðum",
|
||||
"notification.reblog": "{name} lyfti tín post",
|
||||
"notification.relationships_severance_event": "Mist sambond við {name}",
|
||||
"notification.relationships_severance_event.account_suspension": "Ein umsitari frá {from} hevur gjørt {target} óvirkna, sum merkir, at tú ikki kanst móttaka dagføringar ella virka saman við teimum longur.",
|
||||
|
@ -504,10 +518,26 @@
|
|||
"notification.status": "{name} hevur júst postað",
|
||||
"notification.update": "{name} rættaði ein post",
|
||||
"notification_requests.accept": "Góðtak",
|
||||
"notification_requests.accept_all": "Góðtak alt",
|
||||
"notification_requests.accept_multiple": "{count, plural, one {Góðtak # umbøn} other {Góðtak # umbønir}}",
|
||||
"notification_requests.confirm_accept_all.button": "Góðtak alt",
|
||||
"notification_requests.confirm_accept_all.message": "Tú er í ferð við at góðtaka {count, plural, one {eina fráboðanarumbøn} other {# fráboðanarumbønir}}. Er tú vís/ur í at tú vilt halda fram?",
|
||||
"notification_requests.confirm_accept_all.title": "Góðtekur tú umbøn um fráboðan?",
|
||||
"notification_requests.confirm_dismiss_all.button": "Vraka alt",
|
||||
"notification_requests.confirm_dismiss_all.message": "Tú ert í ferð við at kveistra burtur {count, plural, one {eina fráboðanarumbøn} other {# fráboðanarumbønir}}. Tað verður ikki lætt hjá tær at fáa atgongd til {count, plural, one {hana} other {tær}} aftur. Er tú vís/ur í, at tú vil halda fram?",
|
||||
"notification_requests.confirm_dismiss_all.title": "Kveistra burtur fráboðanarumbønir?",
|
||||
"notification_requests.dismiss": "Avvís",
|
||||
"notification_requests.dismiss_all": "Vraka alt",
|
||||
"notification_requests.dismiss_multiple": "{count, plural, one {Kveistra burtur # umbøn} other {Kveistra burtur # umbønir}}",
|
||||
"notification_requests.enter_selection_mode": "Vel",
|
||||
"notification_requests.exit_selection_mode": "Strika",
|
||||
"notification_requests.explainer_for_limited_account": "Fráboðanir frá hesi kontuni eru filtreraðar burtur, tí kontan er avmarkað av einum umsjónarfólki.",
|
||||
"notification_requests.explainer_for_limited_remote_account": "Fráboðanir frá hesi kontuni eru filtreraðar burtur, tí kontan ella ambætarin hjá kontuni eru avmarkaði av einum umsjónarfólki.",
|
||||
"notification_requests.maximize": "Mesta",
|
||||
"notification_requests.minimize_banner": "Ger merkið við filtreraðum fráboðanum lítið",
|
||||
"notification_requests.notifications_from": "Fráboðanir frá {name}",
|
||||
"notification_requests.title": "Sáldaðar fráboðanir",
|
||||
"notification_requests.title": "Filtreraðar fráboðanir",
|
||||
"notification_requests.view": "Vís fráboðanir",
|
||||
"notifications.clear": "Rudda fráboðanir",
|
||||
"notifications.clear_confirmation": "Ert tú vís/ur í, at tú vilt strika allar tínar fráboðanir?",
|
||||
"notifications.clear_title": "Rudda fráboðanir?",
|
||||
|
@ -544,15 +574,23 @@
|
|||
"notifications.permission_denied": "Skriviborðsfráboðanir eru ikki tøkar tí at ein kaga-umbøn áður bleiv noktað",
|
||||
"notifications.permission_denied_alert": "Tað ber ikki til at sláa skriviborðsfráboðanir til, tí at kagarættindi áður eru noktaði",
|
||||
"notifications.permission_required": "Skriviborðsfráboðanir eru ikki tøkar, tí at neyðugu rættindini eru ikki latin.",
|
||||
"notifications.policy.accept": "Góðtak",
|
||||
"notifications.policy.accept_hint": "Vís í fráboðanum",
|
||||
"notifications.policy.drop": "Lat sum um tú ikki sær",
|
||||
"notifications.policy.drop_hint": "Send út í tóman heim, soleiðis at tað aldrin sæst aftur",
|
||||
"notifications.policy.filter": "Filtrera",
|
||||
"notifications.policy.filter_hint": "Send til filtreraðan fráboðanar-innbakka",
|
||||
"notifications.policy.filter_limited_accounts_hint": "Avmarkað av umsjónarfólkunum á ambætaranum",
|
||||
"notifications.policy.filter_limited_accounts_title": "Avmarkaðar kontur",
|
||||
"notifications.policy.filter_new_accounts.hint": "Stovnaðar {days, plural, one {seinasta dagin} other {seinastu # dagarnar}}",
|
||||
"notifications.policy.filter_new_accounts_title": "Nýggjar kontur",
|
||||
"notifications.policy.filter_not_followers_hint": "Íroknað fólk, sum hava fylgt tær styttri enn {days, plural, one {ein dag} other {# dagar}}",
|
||||
"notifications.policy.filter_not_followers_title": "Fólk, sum ikki fylgja tær",
|
||||
"notifications.policy.filter_not_following_hint": "Til tú góðkennir tey manuelt",
|
||||
"notifications.policy.filter_not_following_title": "Fólk, sum tú ikki fylgir",
|
||||
"notifications.policy.filter_private_mentions_hint": "Sáldaði, uttan so at tað er í svari til tínar egnu nevningar ella um tú fylgir sendaranum",
|
||||
"notifications.policy.filter_private_mentions_hint": "Filtreraði, uttan so at tað er í svari til tínar egnu nevningar ella um tú fylgir sendaranum",
|
||||
"notifications.policy.filter_private_mentions_title": "Óbidnar privatar umrøður",
|
||||
"notifications.policy.title": "Sálda burtur fráboðanir frá…",
|
||||
"notifications.policy.title": "Stýr fráboðanir frá…",
|
||||
"notifications_permission_banner.enable": "Ger skriviborðsfráboðanir virknar",
|
||||
"notifications_permission_banner.how_to_control": "Ger skriviborðsfráboðanir virknar fyri at móttaka fráboðanir, tá Mastodon ikki er opið. Tá tær eru gjørdar virknar, kanst tú stýra, hvørji sløg av samvirkni geva skriviborðsfráboðanir. Hetta umvegis {icon} knøttin omanfyri.",
|
||||
"notifications_permission_banner.title": "Miss einki",
|
||||
|
@ -793,6 +831,7 @@
|
|||
"timeline_hint.remote_resource_not_displayed": "{resource} frá øðrum ambætarum verður ikki víst.",
|
||||
"timeline_hint.resources.followers": "Fylgjarar",
|
||||
"timeline_hint.resources.follows": "Fylgir",
|
||||
"timeline_hint.resources.replies": "Nøkur svar",
|
||||
"timeline_hint.resources.statuses": "Gamlir postar",
|
||||
"trends.counter_by_accounts": "{count, plural, one {{counter} persónur} other {{counter} persónar}} {days, plural, one {seinasta dagin} other {{days} seinastu dagarnar}}",
|
||||
"trends.trending_now": "Rák beint nú",
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
"about.not_available": "Cette information n'a pas été rendue disponible sur ce serveur.",
|
||||
"about.powered_by": "Réseau social décentralisé propulsé par {mastodon}",
|
||||
"about.rules": "Règles du serveur",
|
||||
"account.account_note_header": "Note personnelle",
|
||||
"account.add_or_remove_from_list": "Ajouter ou enlever de listes",
|
||||
"account.badges.bot": "Bot",
|
||||
"account.badges.group": "Groupe",
|
||||
|
@ -465,7 +466,6 @@
|
|||
"notification.favourite": "{name} a ajouté votre publication à ses favoris",
|
||||
"notification.follow": "{name} vous suit",
|
||||
"notification.follow_request": "{name} a demandé à vous suivre",
|
||||
"notification.mention": "{name} vous a mentionné·e",
|
||||
"notification.own_poll": "Votre sondage est terminé",
|
||||
"notification.reblog": "{name} a boosté votre message",
|
||||
"notification.relationships_severance_event": "Connexions perdues avec {name}",
|
||||
|
@ -521,7 +521,6 @@
|
|||
"notifications.policy.filter_not_following_title": "Personnes que vous ne suivez pas",
|
||||
"notifications.policy.filter_private_mentions_hint": "Filtré sauf si c'est en réponse à une mention de vous ou si vous suivez l'expéditeur",
|
||||
"notifications.policy.filter_private_mentions_title": "Mentions privées non sollicitées",
|
||||
"notifications.policy.title": "Filtrer les notifications de…",
|
||||
"notifications_permission_banner.enable": "Activer les notifications de bureau",
|
||||
"notifications_permission_banner.how_to_control": "Pour recevoir des notifications lorsque Mastodon n’est pas ouvert, activez les notifications de bureau. Vous pouvez contrôler précisément quels types d’interactions génèrent des notifications de bureau via le bouton {icon} ci-dessus une fois qu’elles sont activées.",
|
||||
"notifications_permission_banner.title": "Ne rien rater",
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
"about.not_available": "Cette information n'a pas été rendue disponible sur ce serveur.",
|
||||
"about.powered_by": "Réseau social décentralisé propulsé par {mastodon}",
|
||||
"about.rules": "Règles du serveur",
|
||||
"account.account_note_header": "Note personnelle",
|
||||
"account.add_or_remove_from_list": "Ajouter ou retirer des listes",
|
||||
"account.badges.bot": "Bot",
|
||||
"account.badges.group": "Groupe",
|
||||
|
@ -465,7 +466,6 @@
|
|||
"notification.favourite": "{name} a ajouté votre message à ses favoris",
|
||||
"notification.follow": "{name} vous suit",
|
||||
"notification.follow_request": "{name} a demandé à vous suivre",
|
||||
"notification.mention": "{name} vous a mentionné·e :",
|
||||
"notification.own_poll": "Votre sondage est terminé",
|
||||
"notification.reblog": "{name} a partagé votre message",
|
||||
"notification.relationships_severance_event": "Connexions perdues avec {name}",
|
||||
|
@ -521,7 +521,6 @@
|
|||
"notifications.policy.filter_not_following_title": "Personnes que vous ne suivez pas",
|
||||
"notifications.policy.filter_private_mentions_hint": "Filtré sauf si c'est en réponse à une mention de vous ou si vous suivez l'expéditeur",
|
||||
"notifications.policy.filter_private_mentions_title": "Mentions privées non sollicitées",
|
||||
"notifications.policy.title": "Filtrer les notifications de…",
|
||||
"notifications_permission_banner.enable": "Activer les notifications de bureau",
|
||||
"notifications_permission_banner.how_to_control": "Pour recevoir des notifications lorsque Mastodon n’est pas ouvert, activez les notifications du bureau. Vous pouvez contrôler précisément quels types d’interactions génèrent des notifications de bureau via le bouton {icon} ci-dessus une fois qu’elles sont activées.",
|
||||
"notifications_permission_banner.title": "Toujours au courant",
|
||||
|
|
|
@ -470,7 +470,6 @@
|
|||
"notification.favourite": "{name} hat jo berjocht as favoryt markearre",
|
||||
"notification.follow": "{name} folget dy",
|
||||
"notification.follow_request": "{name} hat dy in folchfersyk stjoerd",
|
||||
"notification.mention": "{name} hat dy fermeld",
|
||||
"notification.moderation-warning.learn_more": "Mear ynfo",
|
||||
"notification.moderation_warning": "Jo hawwe in moderaasje-warskôging ûntfongen",
|
||||
"notification.moderation_warning.action_delete_statuses": "Guon fan jo berjochten binne fuortsmiten.",
|
||||
|
@ -482,7 +481,6 @@
|
|||
"notification.moderation_warning.action_suspend": "Jo account is útsteld.",
|
||||
"notification.own_poll": "Jo poll is beëinige",
|
||||
"notification.poll": "In enkête dêr’t jo oan meidien hawwe is beëinige",
|
||||
"notification.private_mention": "{name} hat jo in priveeberjocht stjoerd",
|
||||
"notification.reblog": "{name} hat jo berjocht boost",
|
||||
"notification.relationships_severance_event": "Ferlerne ferbiningen mei {name}",
|
||||
"notification.relationships_severance_event.account_suspension": "In behearder fan {from} hat {target} útsteld, wat betsjut dat jo gjin updates mear fan harren ûntfange kinne of mei harren kommunisearje kinne.",
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
"about.not_available": "Níor cuireadh an t-eolas seo ar fáil ar an bhfreastalaí seo.",
|
||||
"about.powered_by": "Meáin shóisialta díláraithe faoi chumhacht {mastodon}",
|
||||
"about.rules": "Rialacha an fhreastalaí",
|
||||
"account.account_note_header": "Nóta pearsanta",
|
||||
"account.add_or_remove_from_list": "Cuir Le nó Bain De na liostaí",
|
||||
"account.badges.bot": "Bota",
|
||||
"account.badges.group": "Grúpa",
|
||||
|
@ -355,6 +356,17 @@
|
|||
"home.pending_critical_update.link": "Féach nuashonruithe",
|
||||
"home.pending_critical_update.title": "Nuashonrú slándála ríthábhachtach ar fáil!",
|
||||
"home.show_announcements": "Taispeáin fógraí",
|
||||
"ignore_notifications_modal.disclaimer": "Ní féidir le Mastodon úsáideoirí a chur ar an eolas gur thug tú neamhaird dá bhfógraí. Má dhéantar neamhaird de fhógraí, ní stopfar na teachtaireachtaí iad féin a sheoladh.",
|
||||
"ignore_notifications_modal.filter_instead": "Scag ina ionad sin",
|
||||
"ignore_notifications_modal.filter_to_act_users": "Beidh tú fós in ann glacadh le húsáideoirí, iad a dhiúltú nó a thuairisciú",
|
||||
"ignore_notifications_modal.filter_to_avoid_confusion": "Cuidíonn scagadh le mearbhall a sheachaint",
|
||||
"ignore_notifications_modal.filter_to_review_separately": "Is féidir leat fógraí scagtha a athbhreithniú ar leithligh",
|
||||
"ignore_notifications_modal.ignore": "Déan neamhaird de fhógraí",
|
||||
"ignore_notifications_modal.limited_accounts_title": "An dtugann tú neamhaird d'fhógraí ó chuntais mhodhnaithe?",
|
||||
"ignore_notifications_modal.new_accounts_title": "An bhfuil fonn ort neamhaird a dhéanamh d'fhógraí ó chuntais nua?",
|
||||
"ignore_notifications_modal.not_followers_title": "An dtugann tú aird ar fhógraí ó dhaoine nach leanann tú?",
|
||||
"ignore_notifications_modal.not_following_title": "An ndéanann tú neamhaird de fhógraí ó dhaoine nach leanann tú?",
|
||||
"ignore_notifications_modal.private_mentions_title": "An dtugann tú aird ar fhógraí ó Luaintí Príobháideacha gan iarraidh?",
|
||||
"interaction_modal.description.favourite": "Le cuntas ar Mastodon, is fearr leat an postáil seo chun a chur in iúl don údar go bhfuil meas agat air agus é a shábháil ar feadh níos déanaí.",
|
||||
"interaction_modal.description.follow": "Le cuntas ar Mastodon, is féidir leat {name} a leanúint chun a gcuid postálacha a fháil i do fhotha baile.",
|
||||
"interaction_modal.description.reblog": "Le cuntas ar Mastodon, is féidir leat an postáil seo a threisiú chun é a roinnt le do leantóirí féin.",
|
||||
|
@ -481,7 +493,11 @@
|
|||
"notification.favourite": "Is fearr le {name} do phostáil",
|
||||
"notification.follow": "Lean {name} thú",
|
||||
"notification.follow_request": "D'iarr {name} ort do chuntas a leanúint",
|
||||
"notification.mention": "Luaigh {name} tú",
|
||||
"notification.label.mention": "Luaigh",
|
||||
"notification.label.private_mention": "Lua príobháideach",
|
||||
"notification.label.private_reply": "Freagra príobháideach",
|
||||
"notification.label.reply": "Freagra",
|
||||
"notification.mention": "Luaigh",
|
||||
"notification.moderation-warning.learn_more": "Foghlaim níos mó",
|
||||
"notification.moderation_warning": "Tá rabhadh modhnóireachta faighte agat",
|
||||
"notification.moderation_warning.action_delete_statuses": "Baineadh cuid de do phostálacha.",
|
||||
|
@ -493,7 +509,6 @@
|
|||
"notification.moderation_warning.action_suspend": "Cuireadh do chuntas ar fionraí.",
|
||||
"notification.own_poll": "Tá do suirbhé críochnaithe",
|
||||
"notification.poll": "Tá deireadh le vótaíocht inar vótáil tú",
|
||||
"notification.private_mention": "luaigh {name} tú go príobháideach",
|
||||
"notification.reblog": "Mhol {name} do phostáil",
|
||||
"notification.relationships_severance_event": "Cailleadh naisc le {name}",
|
||||
"notification.relationships_severance_event.account_suspension": "Chuir riarthóir ó {from} {target} ar fionraí, rud a chiallaíonn nach féidir leat nuashonruithe a fháil uathu a thuilleadh ná idirghníomhú leo.",
|
||||
|
@ -503,9 +518,26 @@
|
|||
"notification.status": "Phostáil {name} díreach",
|
||||
"notification.update": "Chuir {name} postáil in eagar",
|
||||
"notification_requests.accept": "Glac",
|
||||
"notification_requests.accept_all": "Glac le gach",
|
||||
"notification_requests.accept_multiple": "{count, plural, one {Glac le # iarratas} two {Glac le # iarratas} few {Glac le # iarratas} many {Glac le # iarratas} other {Glac le # iarratais}}",
|
||||
"notification_requests.confirm_accept_all.button": "Glac le gach",
|
||||
"notification_requests.confirm_accept_all.message": "Tá tú ar tí glacadh le {count, plural, one {iarratas fógra amháin} two {# iarratas fógra} few {# iarratas fógra} many {# iarratas fógra} other {# iarratais fógra}}. An bhfuil tú cinnte gur mian leat leanúint ar aghaidh?",
|
||||
"notification_requests.confirm_accept_all.title": "Glac le hiarratais ar fhógra?",
|
||||
"notification_requests.confirm_dismiss_all.button": "Ruaig gach",
|
||||
"notification_requests.confirm_dismiss_all.message": "Tá tú ar tí neamhaird a dhéanamh ar {count, plural, one {iarratas fógra amháin} two {# iarratas fógra} few {# iarratas fógra} many {# iarratas fógra} other {# iarratais fógra}}. Ní bheidh tú in ann {count, plural, one {é} two {iad} few {iad} many {iad} other {iad}} a rochtain go héasca arís. An bhfuil tú cinnte gur mian leat leanúint ar aghaidh?",
|
||||
"notification_requests.confirm_dismiss_all.title": "An bhfuil fonn ort iarratais ar fhógra a dhíbhe?",
|
||||
"notification_requests.dismiss": "Díbhe",
|
||||
"notification_requests.dismiss_all": "Ruaig gach",
|
||||
"notification_requests.dismiss_multiple": "{count, plural, one {Neamhaird a dhéanamh ar # iarratas} two {Neamhaird a dhéanamh ar # iarratas} few {Neamhaird a dhéanamh ar # iarratas} many {Neamhaird a dhéanamh ar # iarratas} other {Neamhaird a dhéanamh ar # iarratais}}",
|
||||
"notification_requests.enter_selection_mode": "Roghnaigh",
|
||||
"notification_requests.exit_selection_mode": "Cealaigh",
|
||||
"notification_requests.explainer_for_limited_account": "Scagadh fógraí ón gcuntas seo toisc go bhfuil an cuntas teoranta ag modhnóir.",
|
||||
"notification_requests.explainer_for_limited_remote_account": "Scagadh fógraí ón gcuntas seo toisc go bhfuil an cuntas nó a fhreastalaí teoranta ag modhnóir.",
|
||||
"notification_requests.maximize": "Uasmhéadaigh",
|
||||
"notification_requests.minimize_banner": "Íoslaghdaigh bratach na bhfógraí scagtha",
|
||||
"notification_requests.notifications_from": "Fógraí ó {name}",
|
||||
"notification_requests.title": "Fógraí scagtha",
|
||||
"notification_requests.view": "Féach ar fhógraí",
|
||||
"notifications.clear": "Glan fógraí",
|
||||
"notifications.clear_confirmation": "An bhfuil tú cinnte gur mhaith leat d'fhógraí go léir a ghlanadh go buan?",
|
||||
"notifications.clear_title": "Glan fógraí?",
|
||||
|
@ -542,6 +574,14 @@
|
|||
"notifications.permission_denied": "Níl fógraí deisce ar fáil mar gheall ar iarratas ar chead brabhsálaí a diúltaíodh roimhe seo",
|
||||
"notifications.permission_denied_alert": "Ní féidir fógraí deisce a chumasú, mar gur diúltaíodh cead brabhsálaí roimhe seo",
|
||||
"notifications.permission_required": "Níl fógraí deisce ar fáil toisc nár tugadh an cead riachtanach.",
|
||||
"notifications.policy.accept": "Glac",
|
||||
"notifications.policy.accept_hint": "Taispeáin i bhfógraí",
|
||||
"notifications.policy.drop": "Déan neamhaird de",
|
||||
"notifications.policy.drop_hint": "Seol chuig an neamhní, gan a bheith le feiceáil arís",
|
||||
"notifications.policy.filter": "Scagaire",
|
||||
"notifications.policy.filter_hint": "Seol chuig an mbosca isteach fógraí scagtha",
|
||||
"notifications.policy.filter_limited_accounts_hint": "Teoranta ag modhnóirí freastalaí",
|
||||
"notifications.policy.filter_limited_accounts_title": "Cuntais mhodhnaithe",
|
||||
"notifications.policy.filter_new_accounts.hint": "Cruthaithe laistigh den {days, plural, one {lae amháin} two {# lá} few {# lá} many {# lá} other {# lá}}",
|
||||
"notifications.policy.filter_new_accounts_title": "Cuntais nua",
|
||||
"notifications.policy.filter_not_followers_hint": "Agus daoine a bhfuil siad ag leanúint ort le níos lú ná {days, plural, one {lae amháin} two {# lá} few {# lá} many {# lá} other {# lá}}",
|
||||
|
@ -550,7 +590,7 @@
|
|||
"notifications.policy.filter_not_following_title": "Daoine nach leanann tú",
|
||||
"notifications.policy.filter_private_mentions_hint": "Scagtha mura bhfuil sé mar fhreagra ar do lua féin nó má leanann tú an seoltóir",
|
||||
"notifications.policy.filter_private_mentions_title": "Tagairtí príobháideacha gan iarraidh",
|
||||
"notifications.policy.title": "Scag fógraí ó…",
|
||||
"notifications.policy.title": "Bainistigh fógraí ó…",
|
||||
"notifications_permission_banner.enable": "Ceadaigh fógraí ar an deasc",
|
||||
"notifications_permission_banner.how_to_control": "Chun fógraí a fháil nuair nach bhfuil Mastodon oscailte, cumasaigh fógraí deisce. Is féidir leat a rialú go beacht cé na cineálacha idirghníomhaíochtaí a ghineann fógraí deisce tríd an gcnaipe {icon} thuas nuair a bhíonn siad cumasaithe.",
|
||||
"notifications_permission_banner.title": "Ná caill aon rud go deo",
|
||||
|
@ -791,6 +831,7 @@
|
|||
"timeline_hint.remote_resource_not_displayed": "Níl {resource} ó fhreastalaithe eile ar taispeáint.",
|
||||
"timeline_hint.resources.followers": "Leantóirí",
|
||||
"timeline_hint.resources.follows": "Cuntais leanta",
|
||||
"timeline_hint.resources.replies": "Roinnt freagraí",
|
||||
"timeline_hint.resources.statuses": "Postáilí níos sine",
|
||||
"trends.counter_by_accounts": "{count, plural, one {{counter} duine} other {{counter} duine}} le {days, plural, one {lá} other {{days} lá}} anuas",
|
||||
"trends.trending_now": "Ag treochtáil anois",
|
||||
|
|
|
@ -482,7 +482,6 @@
|
|||
"notification.favourite": "Is annsa le {name} am post agad",
|
||||
"notification.follow": "Tha {name} ’gad leantainn a-nis",
|
||||
"notification.follow_request": "Dh’iarr {name} ’gad leantainn",
|
||||
"notification.mention": "Thug {name} iomradh ort",
|
||||
"notification.moderation-warning.learn_more": "Barrachd fiosrachaidh",
|
||||
"notification.moderation_warning": "Fhuair thu rabhadh on mhaorsainneachd",
|
||||
"notification.moderation_warning.action_delete_statuses": "Chaidh cuid dhe na postaichean agad a thoirt air falbh.",
|
||||
|
@ -494,7 +493,6 @@
|
|||
"notification.moderation_warning.action_suspend": "Chaidh an cunntas agad a chur à rèim.",
|
||||
"notification.own_poll": "Thàinig an cunntas-bheachd agad gu crìoch",
|
||||
"notification.poll": "Thàinig cunntas-bheachd sa bhòt thu gu crìoch",
|
||||
"notification.private_mention": "Thug {name} iomradh ort gu prìobhaideach",
|
||||
"notification.reblog": "Bhrosnaich {name} am post agad",
|
||||
"notification.relationships_severance_event": "Chaill thu dàimhean le {name}",
|
||||
"notification.relationships_severance_event.account_suspension": "Chuir rianaire aig {from} {target} à rèim agus is ciall dha sin nach fhaigh thu naidheachdan uapa ’s nach urrainn dhut conaltradh leotha.",
|
||||
|
@ -553,7 +551,6 @@
|
|||
"notifications.policy.filter_not_following_title": "Daoine nach eil thu a’ leantainn",
|
||||
"notifications.policy.filter_private_mentions_hint": "Criathraichte ach ma tha e a’ freagairt do dh’iomradh agad fhèin no ma tha thu a’ leantainn an t-seòladair",
|
||||
"notifications.policy.filter_private_mentions_title": "Iomraidhean prìobhaideach o choigrich",
|
||||
"notifications.policy.title": "Falaich na brathan o…",
|
||||
"notifications_permission_banner.enable": "Cuir brathan deasga an comas",
|
||||
"notifications_permission_banner.how_to_control": "Airson brathan fhaighinn nuair nach eil Mastodon fosgailte, cuir na brathan deasga an comas. Tha an smachd agad fhèin air dè na seòrsaichean de chonaltradh a ghineas brathan deasga leis a’ phutan {icon} gu h-àrd nuair a bhios iad air an cur an comas.",
|
||||
"notifications_permission_banner.title": "Na caill dad gu bràth tuilleadh",
|
||||
|
|
|
@ -356,6 +356,17 @@
|
|||
"home.pending_critical_update.link": "Mira as actualizacións",
|
||||
"home.pending_critical_update.title": "Hai una actualización crítica de seguridade!",
|
||||
"home.show_announcements": "Amosar anuncios",
|
||||
"ignore_notifications_modal.disclaimer": "Mastodon non pode informar ás usuarias se ignoraches as súas notificacións. Ao ignorar as notificacións non evitarás que as mensaxes sexan enviadas igualmente.",
|
||||
"ignore_notifications_modal.filter_instead": "Filtrar igualmente",
|
||||
"ignore_notifications_modal.filter_to_act_users": "Poderás seguir aceptando, rexeitando e denunciando usuarias",
|
||||
"ignore_notifications_modal.filter_to_avoid_confusion": "Ao filtrar axudas a evitar posibles confusións",
|
||||
"ignore_notifications_modal.filter_to_review_separately": "Podes revisar as notificacións filtradas por separado",
|
||||
"ignore_notifications_modal.ignore": "Ignorar notificacións",
|
||||
"ignore_notifications_modal.limited_accounts_title": "Ignorar notificacións desde contas moderadas?",
|
||||
"ignore_notifications_modal.new_accounts_title": "Ignorar notificacións desde novas contas?",
|
||||
"ignore_notifications_modal.not_followers_title": "Ignorar notificacións de persoas que non te seguen?",
|
||||
"ignore_notifications_modal.not_following_title": "Ignorar notificacións de persoas que non segues?",
|
||||
"ignore_notifications_modal.private_mentions_title": "Ignorar notificacións de Mencións Privadas non solicitadas?",
|
||||
"interaction_modal.description.favourite": "Cunha conta Mastodon podes favorecer esta publicación e facerlle saber á autora que che gustou e que a gardas para máis tarde.",
|
||||
"interaction_modal.description.follow": "Cunha conta en Mastodon, poderás seguir a {name} e recibir as súas publicacións na túa cronoloxía de inicio.",
|
||||
"interaction_modal.description.reblog": "Cunha conta en Mastodon, poderás promover esta publicación para compartila con quen te siga.",
|
||||
|
@ -482,7 +493,11 @@
|
|||
"notification.favourite": "{name} marcou como favorita a túa publicación",
|
||||
"notification.follow": "{name} comezou a seguirte",
|
||||
"notification.follow_request": "{name} solicitou seguirte",
|
||||
"notification.mention": "{name} mencionoute",
|
||||
"notification.label.mention": "Mención",
|
||||
"notification.label.private_mention": "Mención privada",
|
||||
"notification.label.private_reply": "Resposta privada",
|
||||
"notification.label.reply": "Resposta",
|
||||
"notification.mention": "Mención",
|
||||
"notification.moderation-warning.learn_more": "Saber máis",
|
||||
"notification.moderation_warning": "Recibiches unha advertencia da moderación",
|
||||
"notification.moderation_warning.action_delete_statuses": "Algunha das túas publicacións foron eliminadas.",
|
||||
|
@ -494,7 +509,6 @@
|
|||
"notification.moderation_warning.action_suspend": "A túa conta foi suspendida.",
|
||||
"notification.own_poll": "A túa enquisa rematou",
|
||||
"notification.poll": "Rematou a enquisa na que votaches",
|
||||
"notification.private_mention": "{name} mencionoute de xeito privado",
|
||||
"notification.reblog": "{name} compartiu a túa publicación",
|
||||
"notification.relationships_severance_event": "Perdeuse a conexión con {name}",
|
||||
"notification.relationships_severance_event.account_suspension": "A administración de {from} suspendeu a {target}, o que significa que xa non vas recibir actualizacións de esa conta ou interactuar con ela.",
|
||||
|
@ -504,11 +518,26 @@
|
|||
"notification.status": "{name} publicou",
|
||||
"notification.update": "{name} editou unha publicación",
|
||||
"notification_requests.accept": "Aceptar",
|
||||
"notification_requests.accept_all": "Aceptar todo",
|
||||
"notification_requests.accept_multiple": "{count, plural, one {Aceptar # solicitude} other {Acceptar # solicitudes}}",
|
||||
"notification_requests.confirm_accept_all.button": "Aceptar todo",
|
||||
"notification_requests.confirm_accept_all.message": "Vas aceptar {count, plural, one {unha solicitude de notificación} other {# solicitudes de notificación}}. Tes certeza de querer aceptalas?",
|
||||
"notification_requests.confirm_accept_all.title": "Aceptar solicitudes de notificación?",
|
||||
"notification_requests.confirm_dismiss_all.button": "Rexeitar todo",
|
||||
"notification_requests.confirm_dismiss_all.message": "Vas rexeitar {count, plural, one {unha solicitude de notificación} other {# solicitudes de notificacións}}. Será complicado volver a {count, plural, one {vela} other {velas}}. Tes certeza de rexeitar?",
|
||||
"notification_requests.confirm_dismiss_all.title": "Rexeitar solicitudes de notificacións?",
|
||||
"notification_requests.dismiss": "Desbotar",
|
||||
"notification_requests.dismiss_all": "Rexeitar todo",
|
||||
"notification_requests.dismiss_multiple": "{count, plural, one {Rexeitar # solicitude} other {Rexeitar # solicitudes}}",
|
||||
"notification_requests.enter_selection_mode": "Escoller",
|
||||
"notification_requests.exit_selection_mode": "Desbotar",
|
||||
"notification_requests.explainer_for_limited_account": "Filtráronse as notificacións desta conta porque a conta ten limitacións impostas pola moderación.",
|
||||
"notification_requests.explainer_for_limited_remote_account": "Filtráronse as notificacións desta conta porque a conta ou o seu servidor teñen limitacións impostas pola moderación.",
|
||||
"notification_requests.maximize": "Maximizar",
|
||||
"notification_requests.minimize_banner": "Minimizar o anuncio de notificacións filtradas",
|
||||
"notification_requests.notifications_from": "Notificacións de {name}",
|
||||
"notification_requests.title": "Notificacións filtradas",
|
||||
"notification_requests.view": "Ver notificacións",
|
||||
"notifications.clear": "Limpar notificacións",
|
||||
"notifications.clear_confirmation": "Tes a certeza de querer limpar de xeito permanente todas as túas notificacións?",
|
||||
"notifications.clear_title": "Limpar as notificacións?",
|
||||
|
@ -545,6 +574,14 @@
|
|||
"notifications.permission_denied": "Non se activaron as notificacións de escritorio porque se denegou o permiso",
|
||||
"notifications.permission_denied_alert": "Non se poden activar as notificacións de escritorio, xa que o permiso para o navegador foi denegado previamente",
|
||||
"notifications.permission_required": "As notificacións de escritorio non están dispoñibles porque non se concedeu o permiso necesario.",
|
||||
"notifications.policy.accept": "Aceptar",
|
||||
"notifications.policy.accept_hint": "Ver nas notificacións",
|
||||
"notifications.policy.drop": "Ignorar",
|
||||
"notifications.policy.drop_hint": "Esquecer isto, non volver a velo",
|
||||
"notifications.policy.filter": "Filtrar",
|
||||
"notifications.policy.filter_hint": "Enviar á caixa de notificacións filtradas",
|
||||
"notifications.policy.filter_limited_accounts_hint": "Limitada pola moderación do servidor",
|
||||
"notifications.policy.filter_limited_accounts_title": "Contas moderadas",
|
||||
"notifications.policy.filter_new_accounts.hint": "Creadas desde {days, plural, one {onte} other {fai # días}}",
|
||||
"notifications.policy.filter_new_accounts_title": "Novas contas",
|
||||
"notifications.policy.filter_not_followers_hint": "Inclúe a persoas que te seguen desde fai menos de {days, plural, one {1 día} other {# días}}",
|
||||
|
@ -553,7 +590,7 @@
|
|||
"notifications.policy.filter_not_following_title": "Persoas que ti non segues",
|
||||
"notifications.policy.filter_private_mentions_hint": "Filtradas a non ser que sexa unha resposta á túa propia mención ou se ti segues á remitente",
|
||||
"notifications.policy.filter_private_mentions_title": "Mencións privadas non solicitadas",
|
||||
"notifications.policy.title": "Desbotar notificacións de…",
|
||||
"notifications.policy.title": "Xestionar as notificacións de…",
|
||||
"notifications_permission_banner.enable": "Activar notificacións de escritorio",
|
||||
"notifications_permission_banner.how_to_control": "Activa as notificacións de escritorio para recibir notificacións mentras Mastodon non está aberto. Podes controlar de xeito preciso o tipo de interaccións que crean as notificacións de escritorio a través da {icon} superior unha vez están activadas.",
|
||||
"notifications_permission_banner.title": "Non perder nada",
|
||||
|
@ -794,6 +831,7 @@
|
|||
"timeline_hint.remote_resource_not_displayed": "Non se mostran {resource} desde outros servidores.",
|
||||
"timeline_hint.resources.followers": "Seguidoras",
|
||||
"timeline_hint.resources.follows": "Seguindo",
|
||||
"timeline_hint.resources.replies": "Algunhas respostas",
|
||||
"timeline_hint.resources.statuses": "Publicacións antigas",
|
||||
"trends.counter_by_accounts": "{count, plural, one {{counter} persoa} other {{counter} persoas}} {days, plural, one {no último día} other {nos {days} últimos días}}",
|
||||
"trends.trending_now": "Tendencias actuais",
|
||||
|
|
|
@ -284,15 +284,15 @@
|
|||
"explore.trending_links": "חדשות",
|
||||
"explore.trending_statuses": "הודעות",
|
||||
"explore.trending_tags": "תגיות",
|
||||
"filter_modal.added.context_mismatch_explanation": "קטגוריית הסנן הזאת לא חלה על ההקשר שממנו הגעת אל ההודעה הזו. אם תרצה/י שההודעה תסונן גם בהקשר זה, תצטרך/י לערוך את הסנן.",
|
||||
"filter_modal.added.context_mismatch_explanation": "קטגוריית המסנן הזאת לא חלה על ההקשר שממנו הגעת אל ההודעה הזו. אם תרצה/י שההודעה תסונן גם בהקשר זה, תצטרך/י לערוך את הסנן.",
|
||||
"filter_modal.added.context_mismatch_title": "אין התאמה להקשר!",
|
||||
"filter_modal.added.expired_explanation": "פג תוקפה של קטגוריית הסינון הזו, יש צורך לשנות את תאריך התפוגה כדי שהסינון יוחל.",
|
||||
"filter_modal.added.expired_title": "פג תוקף הפילטר!",
|
||||
"filter_modal.added.expired_title": "פג תוקף המסנן!",
|
||||
"filter_modal.added.review_and_configure": "לסקירה והתאמה מתקדמת של קטגוריית הסינון הזו, לכו ל{settings_link}.",
|
||||
"filter_modal.added.review_and_configure_title": "אפשרויות סינון",
|
||||
"filter_modal.added.settings_link": "דף הגדרות",
|
||||
"filter_modal.added.short_explanation": "ההודעה הזו הוספה לקטגוריית הסינון הזו: {title}.",
|
||||
"filter_modal.added.title": "הפילטר הוסף!",
|
||||
"filter_modal.added.title": "המסנן הוסף!",
|
||||
"filter_modal.select_filter.context_mismatch": "לא חל בהקשר זה",
|
||||
"filter_modal.select_filter.expired": "פג התוקף",
|
||||
"filter_modal.select_filter.prompt_new": "קטגוריה חדשה {name}",
|
||||
|
@ -356,6 +356,16 @@
|
|||
"home.pending_critical_update.link": "צפיה בעדכונים",
|
||||
"home.pending_critical_update.title": "יצא עדכון אבטחה חשוב!",
|
||||
"home.show_announcements": "הצג הכרזות",
|
||||
"ignore_notifications_modal.filter_instead": "לסנן במקום",
|
||||
"ignore_notifications_modal.filter_to_act_users": "עדיין ביכולתך לקבל, לדחות ולדווח על משתמשים אחרים",
|
||||
"ignore_notifications_modal.filter_to_avoid_confusion": "סינון מסייע למניעת בלבולים אפשריים",
|
||||
"ignore_notifications_modal.filter_to_review_separately": "ניתן לסקור התראות מפולטרות בנפרד",
|
||||
"ignore_notifications_modal.ignore": "להתעלם מהתראות",
|
||||
"ignore_notifications_modal.limited_accounts_title": "להתעלם מהתראות מחשבונות תחת פיקוח?",
|
||||
"ignore_notifications_modal.new_accounts_title": "להתעלם מהתראות מחשבונות חדשים?",
|
||||
"ignore_notifications_modal.not_followers_title": "להתעלם מהתראות מא.נשים שאינם עוקביך?",
|
||||
"ignore_notifications_modal.not_following_title": "להתעלם מהתראות מא.נשים שאינם נעקביך?",
|
||||
"ignore_notifications_modal.private_mentions_title": "להתעלם מהתראות מאיזכורים פרטיים?",
|
||||
"interaction_modal.description.favourite": "עם חשבון מסטודון, ניתן לחבב את ההודעה כדי לומר למחבר/ת שהערכת את תוכנו או כדי לשמור אותו לקריאה בעתיד.",
|
||||
"interaction_modal.description.follow": "עם חשבון מסטודון, ניתן לעקוב אחרי {name} כדי לקבל את הפוסטים שלו/ה בפיד הבית.",
|
||||
"interaction_modal.description.reblog": "עם חשבון מסטודון, ניתן להדהד את החצרוץ ולשתף עם עוקבים.",
|
||||
|
@ -482,7 +492,11 @@
|
|||
"notification.favourite": "הודעתך חובבה על ידי {name}",
|
||||
"notification.follow": "{name} במעקב אחרייך",
|
||||
"notification.follow_request": "{name} ביקשו לעקוב אחריך",
|
||||
"notification.mention": "אוזכרת על ידי {name}",
|
||||
"notification.label.mention": "אזכור",
|
||||
"notification.label.private_mention": "אזכור פרטי",
|
||||
"notification.label.private_reply": "תשובה בפרטי",
|
||||
"notification.label.reply": "תשובה",
|
||||
"notification.mention": "אזכור",
|
||||
"notification.moderation-warning.learn_more": "למידע נוסף",
|
||||
"notification.moderation_warning": "קיבלת אזהרה מצוות ניהול התוכן",
|
||||
"notification.moderation_warning.action_delete_statuses": "חלק מהודעותיך הוסרו.",
|
||||
|
@ -494,7 +508,6 @@
|
|||
"notification.moderation_warning.action_suspend": "חשבונך הושעה.",
|
||||
"notification.own_poll": "הסקר שלך הסתיים",
|
||||
"notification.poll": "סקר שהצבעת בו הסתיים",
|
||||
"notification.private_mention": "{name} פנה/פנתה אליך בפרטיות",
|
||||
"notification.reblog": "הודעתך הודהדה על ידי {name}",
|
||||
"notification.relationships_severance_event": "אבד הקשר עם {name}",
|
||||
"notification.relationships_severance_event.account_suspension": "מנהל.ת משרת {from} השע(ת)ה את {target}, ולפיכך לא תעודכנו יותר על ידם ולא תוכלו להיות איתם בקשר.",
|
||||
|
@ -504,11 +517,26 @@
|
|||
"notification.status": "{name} הרגע פרסמו",
|
||||
"notification.update": "{name} ערכו הודעה",
|
||||
"notification_requests.accept": "לקבל",
|
||||
"notification_requests.accept_all": "לקבל את כל הבקשות",
|
||||
"notification_requests.accept_multiple": "{count, plural,one {לאשר קבלת בקשה}other {לאשר קבלת # בקשות}}",
|
||||
"notification_requests.confirm_accept_all.button": "לקבל את כל הבקשות",
|
||||
"notification_requests.confirm_accept_all.message": "אתם עומדים לאשר {count, plural,one {בקשת התראה אחת}other {# בקשות התראה}}. להמשיך?",
|
||||
"notification_requests.confirm_accept_all.title": "לקבל בקשות התראה?",
|
||||
"notification_requests.confirm_dismiss_all.button": "דחיית כל הבקשות",
|
||||
"notification_requests.confirm_dismiss_all.message": "אתם עומדים לדחות {count, plural,one {בקשת התראה}other {# בקשות התראה}}. לא תוכלו למצוא {count, plural,one {אותה}other {אותן}} בקלות אחר כך. להמשיך?",
|
||||
"notification_requests.confirm_dismiss_all.title": "לדחות בקשות התראה?",
|
||||
"notification_requests.dismiss": "לבטל",
|
||||
"notification_requests.dismiss_all": "דחיית כל הבקשות",
|
||||
"notification_requests.dismiss_multiple": "{count, plural,one {לדחות בקשה}other {לדחות # בקשות}} לקבלת התראה",
|
||||
"notification_requests.enter_selection_mode": "בחירה",
|
||||
"notification_requests.exit_selection_mode": "ביטול",
|
||||
"notification_requests.explainer_for_limited_account": "התראות על פעולות חשבון זה סוננו כי חשבון זה הוגבל על ידי מנהלי הדיונים.",
|
||||
"notification_requests.explainer_for_limited_remote_account": "התראות על פעולות חשבון זה סוננו כי חשבון זה או השרת שלו הוגבלו על ידי מנהלי הדיונים.",
|
||||
"notification_requests.maximize": "הגדלה למקסימום",
|
||||
"notification_requests.minimize_banner": "להקטין את כותרת ההודעות המפולטרות",
|
||||
"notification_requests.minimize_banner": "להקטין את כותרת ההודעות המסוננות",
|
||||
"notification_requests.notifications_from": "התראות מ־ {name}",
|
||||
"notification_requests.title": "התראות מסוננות",
|
||||
"notification_requests.view": "הצגת ההתראות",
|
||||
"notifications.clear": "הסרת התראות",
|
||||
"notifications.clear_confirmation": "להסיר את כל ההתראות לצמיתות ? ",
|
||||
"notifications.clear_title": "לנקות התראות?",
|
||||
|
@ -545,6 +573,14 @@
|
|||
"notifications.permission_denied": "לא ניתן להציג התראות מסך כיוון כיוון שהרשאות דפדפן נשללו בעבר",
|
||||
"notifications.permission_denied_alert": "לא ניתן לאפשר נוטיפיקציות מסך שכן הדפדפן סורב הרשאה בעבר",
|
||||
"notifications.permission_required": "לא ניתן לאפשר נוטיפיקציות מסך כיוון שהרשאה דרושה לא ניתנה.",
|
||||
"notifications.policy.accept": "אישור",
|
||||
"notifications.policy.accept_hint": "הצגה בהתראות",
|
||||
"notifications.policy.drop": "להתעלם",
|
||||
"notifications.policy.drop_hint": "שליחה אל מצולות הנשיה, ולא יוודעו אודותיה לעולם",
|
||||
"notifications.policy.filter": "מסנן",
|
||||
"notifications.policy.filter_hint": "שליחה לתיבה נכנסת מסוננת",
|
||||
"notifications.policy.filter_limited_accounts_hint": "הוגבל על ידי מנהלי הדיונים",
|
||||
"notifications.policy.filter_limited_accounts_title": "חשבון מוגבל",
|
||||
"notifications.policy.filter_new_accounts.hint": "נוצר {days, plural,one {ביום האחרון} two {ביומיים האחרונים} other {ב־# הימים האחרונים}}",
|
||||
"notifications.policy.filter_new_accounts_title": "חשבונות חדשים",
|
||||
"notifications.policy.filter_not_followers_hint": "כולל משתמשים שעקבו אחריך פחות מ{days, plural,one {יום} two {יומיים} other {־# ימים}}",
|
||||
|
@ -553,7 +589,7 @@
|
|||
"notifications.policy.filter_not_following_title": "משתמשים שאינך עוקב(ת) אחריהםן",
|
||||
"notifications.policy.filter_private_mentions_hint": "מסונן אלא אם זו תשובה למינשון שלך או אם אתם עוקבים אחרי העונה",
|
||||
"notifications.policy.filter_private_mentions_title": "מינשונים בפרטי שלא הוזמנו",
|
||||
"notifications.policy.title": "להסתיר התראות מ…",
|
||||
"notifications.policy.title": "ניהול התראות מ…",
|
||||
"notifications_permission_banner.enable": "לאפשר נוטיפיקציות מסך",
|
||||
"notifications_permission_banner.how_to_control": "כדי לקבל התראות גם כאשר מסטודון סגור יש לאפשר התראות מסך. ניתן לשלוט בדיוק איזה סוג של אינטראקציות יביא להתראות מסך דרך כפתור ה- {icon} מרגע שהן מאופשרות.",
|
||||
"notifications_permission_banner.title": "לעולם אל תחמיץ דבר",
|
||||
|
@ -794,6 +830,7 @@
|
|||
"timeline_hint.remote_resource_not_displayed": "{resource} משרתים אחרים לא מוצגים.",
|
||||
"timeline_hint.resources.followers": "עוקבים",
|
||||
"timeline_hint.resources.follows": "נעקבים",
|
||||
"timeline_hint.resources.replies": "מספר תשובות",
|
||||
"timeline_hint.resources.statuses": "הודעות ישנות יותר",
|
||||
"trends.counter_by_accounts": "{count, plural, one {אדם אחד} other {{count} א.נשים}} {days, plural, one {מאז אתמול} two {ביומיים האחרונים} other {במשך {days} הימים האחרונים}}",
|
||||
"trends.trending_now": "נושאים חמים",
|
||||
|
|
|
@ -337,7 +337,6 @@
|
|||
"not_signed_in_indicator.not_signed_in": "You need to sign in to access this resource.",
|
||||
"notification.follow": "{name} Vas je počeo/la pratiti",
|
||||
"notification.follow_request": "{name} zatražio/la je da Vas prati",
|
||||
"notification.mention": "{name} Vas je spomenuo",
|
||||
"notification.own_poll": "Vaša anketa je završila",
|
||||
"notification.reblog": "{name} je boostao/la Vaš status",
|
||||
"notifications.clear": "Očisti obavijesti",
|
||||
|
|
|
@ -356,6 +356,17 @@
|
|||
"home.pending_critical_update.link": "Frissítések megtekintése",
|
||||
"home.pending_critical_update.title": "Kritikus biztonsági frissítés érhető el!",
|
||||
"home.show_announcements": "Közlemények megjelenítése",
|
||||
"ignore_notifications_modal.disclaimer": "A Mastodon nem tudja értesíteni azokat a felhasználókat, akiknek figyelmen kívül hagytad az értesítéseit. Az értesítések figyelmen kívül hagyása nem állítja meg az üzenetek elküldését.",
|
||||
"ignore_notifications_modal.filter_instead": "Inkább szűrés",
|
||||
"ignore_notifications_modal.filter_to_act_users": "Továbbra is el tudod fogadni, el tudod utasítani vagy tudod jelenteni a felhasználókat",
|
||||
"ignore_notifications_modal.filter_to_avoid_confusion": "A szűrés segít elkerülni a lehetséges félreértéseket",
|
||||
"ignore_notifications_modal.filter_to_review_separately": "A szűrt értesítések külön tekinthetők át",
|
||||
"ignore_notifications_modal.ignore": "Értesítések figyelmen kívül hagyása",
|
||||
"ignore_notifications_modal.limited_accounts_title": "Moderált fiókok értesítéseinek figyelmen kívül hagyása?",
|
||||
"ignore_notifications_modal.new_accounts_title": "Új fiókok értesítéseinek figyelmen kívül hagyása?",
|
||||
"ignore_notifications_modal.not_followers_title": "Nem követőktől érkező értesítések figyelmen kívül hagyása?",
|
||||
"ignore_notifications_modal.not_following_title": "Nem követettektől érkező értesítések figyelmen kívül hagyása?",
|
||||
"ignore_notifications_modal.private_mentions_title": "Figyelmen kívül hagyod a kéretlen privát említéseket?",
|
||||
"interaction_modal.description.favourite": "Egy Mastodon fiókkal kedvencnek jelölheted ezt a bejegyzést, tudatva a szerzővel, hogy értékeled és elteszed későbbre.",
|
||||
"interaction_modal.description.follow": "Egy Mastodon-fiókkal követheted {name} fiókját, hogy lásd a bejegyzéseit a kezdőlapodon.",
|
||||
"interaction_modal.description.reblog": "Egy Mastodon fiókkal megtolhatod ezt a bejegyzést, hogy megoszd a saját követőiddel.",
|
||||
|
@ -482,7 +493,11 @@
|
|||
"notification.favourite": "{name} kedvencnek jelölte a bejegyzésedet",
|
||||
"notification.follow": "{name} követ téged",
|
||||
"notification.follow_request": "{name} követni szeretne téged",
|
||||
"notification.mention": "{name} megemlített",
|
||||
"notification.label.mention": "Említés",
|
||||
"notification.label.private_mention": "Privát említés",
|
||||
"notification.label.private_reply": "Privát válasz",
|
||||
"notification.label.reply": "Válasz",
|
||||
"notification.mention": "Említés",
|
||||
"notification.moderation-warning.learn_more": "További információ",
|
||||
"notification.moderation_warning": "Moderációs figyelmeztetést kaptál",
|
||||
"notification.moderation_warning.action_delete_statuses": "Néhány bejegyzésedet eltávolították.",
|
||||
|
@ -494,7 +509,6 @@
|
|||
"notification.moderation_warning.action_suspend": "A fiókod felfüggesztésre került.",
|
||||
"notification.own_poll": "A szavazásod véget ért",
|
||||
"notification.poll": "Véget ért egy szavazás, melyben részt vettél",
|
||||
"notification.private_mention": "{name} privátban megemlített",
|
||||
"notification.reblog": "{name} megtolta a bejegyzésedet",
|
||||
"notification.relationships_severance_event": "Elvesztek a kapcsolatok vele: {name}",
|
||||
"notification.relationships_severance_event.account_suspension": "Egy admin a(z) {from} kiszolgálóról felfüggesztette {target} fiókját, ami azt jelenti, hogy mostantól nem fogsz róla értesítést kapni, és nem fogsz tudni vele kapcsolatba lépni.",
|
||||
|
@ -504,11 +518,26 @@
|
|||
"notification.status": "{name} bejegyzést tett közzé",
|
||||
"notification.update": "{name} szerkesztett egy bejegyzést",
|
||||
"notification_requests.accept": "Elfogadás",
|
||||
"notification_requests.accept_all": "Összes elfogadása",
|
||||
"notification_requests.accept_multiple": "{count, plural, one {# kérés elfogadása} other {# kérés elfogadása}}",
|
||||
"notification_requests.confirm_accept_all.button": "Összes elfogadása",
|
||||
"notification_requests.confirm_accept_all.message": "Elfogadni készülsz {count, plural, one {egy értesítési kérést} other {# értesítési kérést}}. Biztosan folytatod?",
|
||||
"notification_requests.confirm_accept_all.title": "Értesítési kérés elfogadása?",
|
||||
"notification_requests.confirm_dismiss_all.button": "Összes elutasítása",
|
||||
"notification_requests.confirm_dismiss_all.message": "{count, plural, one {Egy értesítési kérés} other {# értesítési kérés}} elvetésére készülsz. Többé nem fogsz {count, plural, one {hozzáférni} other {hozzájuk férni}}. Biztosan folytatod?",
|
||||
"notification_requests.confirm_dismiss_all.title": "Értesítési kérések elvetése?",
|
||||
"notification_requests.dismiss": "Elvetés",
|
||||
"notification_requests.dismiss_all": "Összes elutasítása",
|
||||
"notification_requests.dismiss_multiple": "{count, plural, one {# kérés elvetése} other {# kérés elvetése}}",
|
||||
"notification_requests.enter_selection_mode": "Kiválasztás",
|
||||
"notification_requests.exit_selection_mode": "Mégse",
|
||||
"notification_requests.explainer_for_limited_account": "Az ettől a fióktól származó értesítéseket kiszűrték, mert a fiókot egy moderátor korlátozta.",
|
||||
"notification_requests.explainer_for_limited_remote_account": "Az ettől a fióktól származó értesítéseket kiszűrték, mert a fiókot vagy annak kiszolgálóját egy moderátor korlátozta.",
|
||||
"notification_requests.maximize": "Maximalizálás",
|
||||
"notification_requests.minimize_banner": "Szűrt értesítések sávjának minimalizálása",
|
||||
"notification_requests.notifications_from": "{name} értesítései",
|
||||
"notification_requests.title": "Szűrt értesítések",
|
||||
"notification_requests.view": "Értesítések megtekintése",
|
||||
"notifications.clear": "Értesítések törlése",
|
||||
"notifications.clear_confirmation": "Biztos, hogy véglegesen törölni akarod az összes értesítésed?",
|
||||
"notifications.clear_title": "Törlöd az értesítéseket?",
|
||||
|
@ -545,6 +574,14 @@
|
|||
"notifications.permission_denied": "Az asztali értesítések nem érhetők el a korábban elutasított böngészőengedély-kérelem miatt",
|
||||
"notifications.permission_denied_alert": "Az asztali értesítések nem engedélyezhetők a korábban elutasított böngésző engedély miatt",
|
||||
"notifications.permission_required": "Az asztali értesítések nem érhetőek el, mivel a szükséges engedély nem lett megadva.",
|
||||
"notifications.policy.accept": "Elfogadás",
|
||||
"notifications.policy.accept_hint": "Megjelenítés az értesítések között",
|
||||
"notifications.policy.drop": "Figyelmen kívül hagyás",
|
||||
"notifications.policy.drop_hint": "Küldés a semmibe, többé ne jelenjen meg",
|
||||
"notifications.policy.filter": "Szűrő",
|
||||
"notifications.policy.filter_hint": "Küldés a szűrt értesítések közé",
|
||||
"notifications.policy.filter_limited_accounts_hint": "A szerver moderátorai által korlátozott",
|
||||
"notifications.policy.filter_limited_accounts_title": "Moderált fiókok",
|
||||
"notifications.policy.filter_new_accounts.hint": "Az elmúlt {days, plural, one {napban} other {# napban}} létrehozva",
|
||||
"notifications.policy.filter_new_accounts_title": "Új fiókok",
|
||||
"notifications.policy.filter_not_followers_hint": "Beleértve azokat, akik kevesebb mint {days, plural, one {egy napja} other {# napja}} követnek",
|
||||
|
@ -553,7 +590,7 @@
|
|||
"notifications.policy.filter_not_following_title": "Nem követett emberek",
|
||||
"notifications.policy.filter_private_mentions_hint": "Kiszűrve, hacsak nem a saját említésedre válaszol, vagy ha nem követed a feladót",
|
||||
"notifications.policy.filter_private_mentions_title": "Kéretlen személyes említések",
|
||||
"notifications.policy.title": "Feladó értesítéseinek kiszűrése…",
|
||||
"notifications.policy.title": "Értesítések kezelése…",
|
||||
"notifications_permission_banner.enable": "Asztali értesítések engedélyezése",
|
||||
"notifications_permission_banner.how_to_control": "Ahhoz, hogy értesítéseket kapj akkor, amikor a Mastodon nincs megnyitva, engedélyezd az asztali értesítéseket. Pontosan be tudod állítani, hogy milyen interakciókról értesülj a fenti {icon} gombon keresztül, ha egyszer már engedélyezted őket.",
|
||||
"notifications_permission_banner.title": "Soha ne mulassz el semmit",
|
||||
|
@ -794,6 +831,7 @@
|
|||
"timeline_hint.remote_resource_not_displayed": "a más kiszolgálókról származó {resource} tartalmak nem jelennek meg.",
|
||||
"timeline_hint.resources.followers": "Követő",
|
||||
"timeline_hint.resources.follows": "Követett",
|
||||
"timeline_hint.resources.replies": "Néhány válasz",
|
||||
"timeline_hint.resources.statuses": "Régi bejegyzések",
|
||||
"trends.counter_by_accounts": "{count, plural, one {{counter} ember} other {{counter} ember}} az elmúlt {days, plural,one {napban} other {{days} napban}}",
|
||||
"trends.trending_now": "Most felkapott",
|
||||
|
|
|
@ -319,7 +319,6 @@
|
|||
"notification.favourite": "{name}-ը հաւանել է քո գրառումը",
|
||||
"notification.follow": "{name} սկսեց հետեւել քեզ",
|
||||
"notification.follow_request": "{name} քեզ հետեւելու հայց է ուղարկել",
|
||||
"notification.mention": "{name} նշեց քեզ",
|
||||
"notification.own_poll": "Հարցումդ աւարտուեց",
|
||||
"notification.reblog": "{name} տարածեց գրառումդ",
|
||||
"notification.status": "{name} հենց նոր գրառում արեց",
|
||||
|
|
|
@ -475,7 +475,11 @@
|
|||
"notification.favourite": "{name} ha marcate tu message como favorite",
|
||||
"notification.follow": "{name} te ha sequite",
|
||||
"notification.follow_request": "{name} ha requestate de sequer te",
|
||||
"notification.mention": "{name} te ha mentionate",
|
||||
"notification.label.mention": "Mention",
|
||||
"notification.label.private_mention": "Mention private",
|
||||
"notification.label.private_reply": "Responsa private",
|
||||
"notification.label.reply": "Responder",
|
||||
"notification.mention": "Mention",
|
||||
"notification.moderation-warning.learn_more": "Apprender plus",
|
||||
"notification.moderation_warning": "Tu ha recipite un advertimento de moderation",
|
||||
"notification.moderation_warning.action_delete_statuses": "Alcunes de tu messages ha essite removite.",
|
||||
|
@ -542,7 +546,6 @@
|
|||
"notifications.policy.filter_not_following_title": "Personas que tu non seque",
|
||||
"notifications.policy.filter_private_mentions_hint": "Filtrate, excepte si es in responsa a tu proprie mention o si tu seque le expeditor",
|
||||
"notifications.policy.filter_private_mentions_title": "Mentiones private indesirate",
|
||||
"notifications.policy.title": "Filtrar notificationes de…",
|
||||
"notifications_permission_banner.enable": "Activar notificationes de scriptorio",
|
||||
"notifications_permission_banner.how_to_control": "Pro reciper notificationes quando Mastodon non es aperte, activa le notificationes de scriptorio. Post lor activation, es possibile controlar precisemente qual typos de interaction genera notificationes de scriptorio per medio del button {icon} hic supra.",
|
||||
"notifications_permission_banner.title": "Non mancar jammais a un cosa",
|
||||
|
|
|
@ -419,7 +419,6 @@
|
|||
"notification.admin.sign_up": "{name} mendaftar",
|
||||
"notification.follow": "{name} mengikuti Anda",
|
||||
"notification.follow_request": "{name} ingin mengikuti Anda",
|
||||
"notification.mention": "{name} menyebut Anda",
|
||||
"notification.own_poll": "Japat Anda telah berakhir",
|
||||
"notification.reblog": "{name} mem-boost kiriman Anda",
|
||||
"notification.status": "{name} baru saja mengirim",
|
||||
|
|
|
@ -462,7 +462,6 @@
|
|||
"notification.favourite": "{name} favoritisat tui posta",
|
||||
"notification.follow": "{name} sequet te",
|
||||
"notification.follow_request": "{name} ha petit sequer te",
|
||||
"notification.mention": "{name} mentionat te",
|
||||
"notification.moderation-warning.learn_more": "Aprender plu",
|
||||
"notification.moderation_warning": "Tu ha recivet un moderatori advertiment",
|
||||
"notification.moderation_warning.action_delete_statuses": "Alcun de tui postas ha esset efaciat.",
|
||||
|
@ -526,7 +525,6 @@
|
|||
"notifications.policy.filter_not_following_title": "Persones queles tu ne seque",
|
||||
"notifications.policy.filter_private_mentions_hint": "Filtrat except si it es un response a tui propri mention o si tu seque li missor",
|
||||
"notifications.policy.filter_private_mentions_title": "Ínsolicitat privat mentiones",
|
||||
"notifications.policy.title": "Filtrar notificationes de…",
|
||||
"notifications_permission_banner.enable": "Activisar notificationes sur li computator",
|
||||
"notifications_permission_banner.how_to_control": "Por reciver notificationes quande Mastodon ne es apert, activisa notificationes sur li computator. Tu posse decider precisimen quel species de interactiones genera notificationes per li buton {icon} in-supra quande ili es activisat.",
|
||||
"notifications_permission_banner.title": "Nequande preterlassa quocunc",
|
||||
|
|
|
@ -396,7 +396,6 @@
|
|||
"notification.favourite": "{name} favorizis tua mesajo",
|
||||
"notification.follow": "{name} sequeskis tu",
|
||||
"notification.follow_request": "{name} demandas sequar vu",
|
||||
"notification.mention": "{name} mencionis tu",
|
||||
"notification.own_poll": "Vua votposto finigis",
|
||||
"notification.reblog": "{name} repetis tua mesajo",
|
||||
"notification.status": "{name} nove postigis",
|
||||
|
|
|
@ -356,6 +356,17 @@
|
|||
"home.pending_critical_update.link": "Skoða uppfærslur",
|
||||
"home.pending_critical_update.title": "Áríðandi öryggisuppfærsla er tiltæk!",
|
||||
"home.show_announcements": "Birta auglýsingar",
|
||||
"ignore_notifications_modal.disclaimer": "Mastodon getur ekki upplýst notendur um að þú hunsir tilkynningar frá þeim. Hunsun tilkynninga kemur ekki í veg fyrir að sjálf skilaboðin verði send.",
|
||||
"ignore_notifications_modal.filter_instead": "Sía frekar",
|
||||
"ignore_notifications_modal.filter_to_act_users": "Þú munt áfram geta samþykkt, hafnað eða kært notendur",
|
||||
"ignore_notifications_modal.filter_to_avoid_confusion": "Síun hjálpar við að komast hjá mögulegum ruglingi",
|
||||
"ignore_notifications_modal.filter_to_review_separately": "Þú getur skoðað síaðar tilkynningar sérstaklega",
|
||||
"ignore_notifications_modal.ignore": "Hunsa tilkynningar",
|
||||
"ignore_notifications_modal.limited_accounts_title": "Hunsa tilkynningar frá aðgöngum sem umsjón er höfð með?",
|
||||
"ignore_notifications_modal.new_accounts_title": "Hunsa tilkynningar frá nýjum aðgöngum?",
|
||||
"ignore_notifications_modal.not_followers_title": "Hunsa tilkynningar frá fólki sem fylgist ekki með þér?",
|
||||
"ignore_notifications_modal.not_following_title": "Hunsa tilkynningar frá fólki sem þú fylgist ekki með?",
|
||||
"ignore_notifications_modal.private_mentions_title": "Hunsa tilkynningar frá óumbeðnum tilvísunum í einkaspjalli?",
|
||||
"interaction_modal.description.favourite": "Með notandaaðgangi á Mastodon geturðu sett þessa færslu í eftirlæti og þannig látið höfundinn vita að þú kunnir að meta hana og vistað hana til síðari tíma.",
|
||||
"interaction_modal.description.follow": "Með notandaaðgangi á Mastodon geturðu fylgst með {name} og fengið færslur frá viðkomandi í heimastreymið þitt.",
|
||||
"interaction_modal.description.reblog": "Með notandaaðgangi á Mastodon geturðu endurbirt þessa færslu til að deila henni með þeim sem fylgjast með þér.",
|
||||
|
@ -482,7 +493,11 @@
|
|||
"notification.favourite": "{name} setti færsluna þína í eftirlæti",
|
||||
"notification.follow": "{name} fylgist með þér",
|
||||
"notification.follow_request": "{name} hefur beðið um að fylgjast með þér",
|
||||
"notification.mention": "{name} minntist á þig",
|
||||
"notification.label.mention": "Minnst á",
|
||||
"notification.label.private_mention": "Einkaspjall",
|
||||
"notification.label.private_reply": "Einkasvar",
|
||||
"notification.label.reply": "Svara",
|
||||
"notification.mention": "Minnst á",
|
||||
"notification.moderation-warning.learn_more": "Kanna nánar",
|
||||
"notification.moderation_warning": "Þú hefur fengið aðvörun frá umsjónarmanni",
|
||||
"notification.moderation_warning.action_delete_statuses": "Sumar færslurnar þínar hafa verið fjarlægðar.",
|
||||
|
@ -494,7 +509,6 @@
|
|||
"notification.moderation_warning.action_suspend": "Notandaaðgangurinn þinn hefur verið settur í frysti.",
|
||||
"notification.own_poll": "Könnuninni þinni er lokið",
|
||||
"notification.poll": "Könnun sem þú greiddir atkvæði í er lokið",
|
||||
"notification.private_mention": "{name} minntist á þig í einrúmi",
|
||||
"notification.reblog": "{name} endurbirti færsluna þína",
|
||||
"notification.relationships_severance_event": "Missti tengingar við {name}",
|
||||
"notification.relationships_severance_event.account_suspension": "Stjórnandi á {from} hefur fryst {target}, sem þýðir að þú færð ekki lengur skilaboð frá viðkomandi né átt í samskiptum við viðkomandi.",
|
||||
|
@ -504,11 +518,26 @@
|
|||
"notification.status": "{name} sendi inn rétt í þessu",
|
||||
"notification.update": "{name} breytti færslu",
|
||||
"notification_requests.accept": "Samþykkja",
|
||||
"notification_requests.accept_all": "Samþykkja alla",
|
||||
"notification_requests.accept_multiple": "{count, plural, one {Samþykkja # beiðni} other {Samþykkja # beiðnir}}",
|
||||
"notification_requests.confirm_accept_all.button": "Samþykkja alla",
|
||||
"notification_requests.confirm_accept_all.message": "Þú ert að fara að samþykkja {count, plural, one {eina beiðni um tilkynningar} other {# beiðnir um tilkynningar}}. Ertu viss um að þú viljir halda áfram?",
|
||||
"notification_requests.confirm_accept_all.title": "Samþykkja beiðnir um tilkynningar?",
|
||||
"notification_requests.confirm_dismiss_all.button": "Hunsa allt",
|
||||
"notification_requests.confirm_dismiss_all.message": "Þú ert að fara að hunsa {count, plural, one {eina beiðni um tilkynningar} other {# beiðnir um tilkynningar}}. Þú munt ekki eiga auðvelt með að skoða {count, plural, one {hana} other {þær}} aftur síðar. Ertu viss um að þú viljir halda áfram?",
|
||||
"notification_requests.confirm_dismiss_all.title": "Hunsa beiðnir um tilkynningar?",
|
||||
"notification_requests.dismiss": "Afgreiða",
|
||||
"notification_requests.dismiss_all": "Hunsa allt",
|
||||
"notification_requests.dismiss_multiple": "{count, plural, one {Afgreiða # beiðni} other {Afgreiða # beiðnir}}",
|
||||
"notification_requests.enter_selection_mode": "Velja",
|
||||
"notification_requests.exit_selection_mode": "Hætta við",
|
||||
"notification_requests.explainer_for_limited_account": "Tilkynningar frá þessum notanda hafa verið síaðar þar sem aðgangur hans hefur verið takmarkaður af umsjónarmanni.",
|
||||
"notification_requests.explainer_for_limited_remote_account": "Tilkynningar frá þessum notanda hafa verið síaðar þar sem aðgangurinn eða netþjónn hans hefur verið takmarkaður af umsjónarmanni.",
|
||||
"notification_requests.maximize": "Hámarka",
|
||||
"notification_requests.minimize_banner": "Minnka borða með síuðum tilkynningum",
|
||||
"notification_requests.notifications_from": "Tilkynningar frá {name}",
|
||||
"notification_requests.title": "Síaðar tilkynningar",
|
||||
"notification_requests.view": "Skoða tilkynningar",
|
||||
"notifications.clear": "Hreinsa tilkynningar",
|
||||
"notifications.clear_confirmation": "Ertu viss um að þú viljir endanlega eyða öllum tilkynningunum þínum?",
|
||||
"notifications.clear_title": "Hreinsa tilkynningar?",
|
||||
|
@ -545,6 +574,14 @@
|
|||
"notifications.permission_denied": "Tilkynningar á skjáborði eru ekki aðgengilegar megna áður hafnaðra beiðna fyrir vafra",
|
||||
"notifications.permission_denied_alert": "Ekki var hægt að virkja tilkynningar á skjáborði, þar sem heimildum fyrir vafra var áður hafnað",
|
||||
"notifications.permission_required": "Tilkynningar á skjáborði eru ekki aðgengilegar þar sem nauðsynlegar heimildir hafa ekki verið veittar.",
|
||||
"notifications.policy.accept": "Samþykkja",
|
||||
"notifications.policy.accept_hint": "Birta í tilkynningum",
|
||||
"notifications.policy.drop": "Hunsa",
|
||||
"notifications.policy.drop_hint": "Senda út í tómið, svo það sjáist aldrei framar",
|
||||
"notifications.policy.filter": "Sía",
|
||||
"notifications.policy.filter_hint": "Senda í pósthólf fyrir síaðar tilkynningar",
|
||||
"notifications.policy.filter_limited_accounts_hint": "Takmarkað af umsjónarmönnum netþjóns",
|
||||
"notifications.policy.filter_limited_accounts_title": "Aðgangar í umsjón",
|
||||
"notifications.policy.filter_new_accounts.hint": "Útbúið {days, plural, one {síðasta daginn} other {síðustu # daga}}",
|
||||
"notifications.policy.filter_new_accounts_title": "Nýir notendur",
|
||||
"notifications.policy.filter_not_followers_hint": "Þar með talið fólk sem hefur fylgst með þér í minna en {days, plural, one {einn dag} other {# daga}}",
|
||||
|
@ -553,7 +590,7 @@
|
|||
"notifications.policy.filter_not_following_title": "Fólk sem þú fylgist ekki með",
|
||||
"notifications.policy.filter_private_mentions_hint": "Síað nema það sé í svari við einhverju þar sem þú minntist á viðkomandi eða ef þú fylgist með sendandanum",
|
||||
"notifications.policy.filter_private_mentions_title": "Óumbeðið einkaspjall",
|
||||
"notifications.policy.title": "Sía út tilkynningar frá…",
|
||||
"notifications.policy.title": "Sýsla með tilkynningar frá…",
|
||||
"notifications_permission_banner.enable": "Virkja tilkynningar á skjáborði",
|
||||
"notifications_permission_banner.how_to_control": "Til að taka á móti tilkynningum þegar Mastodon er ekki opið, skaltu virkja tilkynningar á skjáborði. Þegar þær eru orðnar virkar geturðu stýrt nákvæmlega hverskonar atvik framleiða tilkynningar með því að nota {icon}-hnappinn hér fyrir ofan.",
|
||||
"notifications_permission_banner.title": "Aldrei missa af neinu",
|
||||
|
@ -794,6 +831,7 @@
|
|||
"timeline_hint.remote_resource_not_displayed": "{resource} frá öðrum netþjónum er ekki birt.",
|
||||
"timeline_hint.resources.followers": "Fylgjendur",
|
||||
"timeline_hint.resources.follows": "Fylgist með",
|
||||
"timeline_hint.resources.replies": "Sum svör",
|
||||
"timeline_hint.resources.statuses": "Eldri færslur",
|
||||
"trends.counter_by_accounts": "{count, plural, one {{counter} aðili} other {{counter} manns}} {days, plural, one {síðasta sólarhringinn} other {síðustu {days} daga}}",
|
||||
"trends.trending_now": "Vinsælt núna",
|
||||
|
|
|
@ -356,6 +356,17 @@
|
|||
"home.pending_critical_update.link": "Visualizza aggiornamenti",
|
||||
"home.pending_critical_update.title": "Aggiornamento critico di sicurezza disponibile!",
|
||||
"home.show_announcements": "Mostra annunci",
|
||||
"ignore_notifications_modal.disclaimer": "Mastodon non può informare gli utenti che hai ignorato le loro notifiche. Ignorare le notifiche non impedirà l'invio dei messaggi stessi.",
|
||||
"ignore_notifications_modal.filter_instead": "Filtra invece",
|
||||
"ignore_notifications_modal.filter_to_act_users": "Potrai comunque accettare, rifiutare o segnalare gli utenti",
|
||||
"ignore_notifications_modal.filter_to_avoid_confusion": "Il filtraggio aiuta a evitare potenziali confusioni",
|
||||
"ignore_notifications_modal.filter_to_review_separately": "Puoi rivedere le notifiche filtrate separatamente",
|
||||
"ignore_notifications_modal.ignore": "Ignora le notifiche",
|
||||
"ignore_notifications_modal.limited_accounts_title": "Ignorare le notifiche dagli account moderati?",
|
||||
"ignore_notifications_modal.new_accounts_title": "Ignorare le notifiche dai nuovi account?",
|
||||
"ignore_notifications_modal.not_followers_title": "Ignorare le notifiche delle persone che non ti seguono?",
|
||||
"ignore_notifications_modal.not_following_title": "Ignorare le notifiche delle persone che non segui?",
|
||||
"ignore_notifications_modal.private_mentions_title": "Ignorare le notifiche provenienti da menzioni private indesiderate?",
|
||||
"interaction_modal.description.favourite": "Con un account su Mastodon, puoi aggiungere questo post ai preferiti per far sapere all'autore che lo apprezzi e salvarlo per dopo.",
|
||||
"interaction_modal.description.follow": "Con un profilo di Mastodon, puoi seguire {name} per ricevere i suoi post nel feed della tua home.",
|
||||
"interaction_modal.description.reblog": "Con un profilo di Mastodon, puoi rebloggare questo post per condividerlo con i tuoi seguaci.",
|
||||
|
@ -482,7 +493,11 @@
|
|||
"notification.favourite": "{name} ha aggiunto il tuo post ai preferiti",
|
||||
"notification.follow": "{name} ha iniziato a seguirti",
|
||||
"notification.follow_request": "{name} ha richiesto di seguirti",
|
||||
"notification.mention": "{name} ti ha menzionato",
|
||||
"notification.label.mention": "Menziona",
|
||||
"notification.label.private_mention": "Menzione privata",
|
||||
"notification.label.private_reply": "Rispondi in privato",
|
||||
"notification.label.reply": "Rispondi",
|
||||
"notification.mention": "Menziona",
|
||||
"notification.moderation-warning.learn_more": "Scopri di più",
|
||||
"notification.moderation_warning": "Hai ricevuto un avviso di moderazione",
|
||||
"notification.moderation_warning.action_delete_statuses": "Alcuni dei tuoi post sono stati rimossi.",
|
||||
|
@ -494,7 +509,6 @@
|
|||
"notification.moderation_warning.action_suspend": "Il tuo account è stato sospeso.",
|
||||
"notification.own_poll": "Il tuo sondaggio è terminato",
|
||||
"notification.poll": "Un sondaggio in cui hai votato è terminato",
|
||||
"notification.private_mention": "{name} ti ha citato privatamente",
|
||||
"notification.reblog": "{name} ha rebloggato il tuo post",
|
||||
"notification.relationships_severance_event": "Connessioni perse con {name}",
|
||||
"notification.relationships_severance_event.account_suspension": "Un amministratore da {from} ha sospeso {target}, il che significa che non puoi più ricevere aggiornamenti da loro o interagire con loro.",
|
||||
|
@ -504,11 +518,26 @@
|
|||
"notification.status": "{name} ha appena pubblicato un post",
|
||||
"notification.update": "{name} ha modificato un post",
|
||||
"notification_requests.accept": "Accetta",
|
||||
"notification_requests.accept_all": "Accetta tutte",
|
||||
"notification_requests.accept_multiple": "{count, plural,one {Accetta # richiesta} other {Accetta # richieste}}",
|
||||
"notification_requests.confirm_accept_all.button": "Accetta tutte",
|
||||
"notification_requests.confirm_accept_all.message": "Stai per accettare {count, plural, one {una richiesta di notifica} other {# richieste di notifica}}. Si è sicuri di voler procedere?",
|
||||
"notification_requests.confirm_accept_all.title": "Accettare le richieste di notifica?",
|
||||
"notification_requests.confirm_dismiss_all.button": "Ignora tutte",
|
||||
"notification_requests.confirm_dismiss_all.message": "Stai per ignorare {count, plural, one {una richiesta di notifica} other {# richieste di notifica}}. Non sarai più in grado di accedere facilmente {count, plural, one {ad essa} other {ad esse}} nuovamente. Si è sicuri di voler procedere?",
|
||||
"notification_requests.confirm_dismiss_all.title": "Ignorare le richieste di notifica?",
|
||||
"notification_requests.dismiss": "Ignora",
|
||||
"notification_requests.dismiss_all": "Ignora tutte",
|
||||
"notification_requests.dismiss_multiple": "{count, plural, one {Ignora # richiesta} other {Ignora # richieste}}",
|
||||
"notification_requests.enter_selection_mode": "Seleziona",
|
||||
"notification_requests.exit_selection_mode": "Annulla",
|
||||
"notification_requests.explainer_for_limited_account": "Le notifiche provenienti da questo account sono state filtrate perché l'account è stato limitato da un moderatore.",
|
||||
"notification_requests.explainer_for_limited_remote_account": "Le notifiche provenienti da questo account sono state filtrate perché l'account o il suo server sono stati limitati da un moderatore.",
|
||||
"notification_requests.maximize": "Ingrandisci",
|
||||
"notification_requests.minimize_banner": "Minimizza il banner delle notifiche filtrate",
|
||||
"notification_requests.notifications_from": "Notifiche da {name}",
|
||||
"notification_requests.title": "Notifiche filtrate",
|
||||
"notification_requests.view": "Visualizza le notifiche",
|
||||
"notifications.clear": "Cancella le notifiche",
|
||||
"notifications.clear_confirmation": "Sei sicuro di voler cancellare permanentemente tutte le tue notifiche?",
|
||||
"notifications.clear_title": "Cancellare le notifiche?",
|
||||
|
@ -545,6 +574,14 @@
|
|||
"notifications.permission_denied": "Notifiche desktop non disponibili a causa della precedentemente negata richiesta di autorizzazioni del browser",
|
||||
"notifications.permission_denied_alert": "Impossibile abilitare le notifiche desktop, poiché l'autorizzazione del browser è stata precedentemente negata",
|
||||
"notifications.permission_required": "Notifiche destkop non disponibili poiché l'autorizzazione richiesta non è stata concessa.",
|
||||
"notifications.policy.accept": "Accetta",
|
||||
"notifications.policy.accept_hint": "Mostra nelle notifiche",
|
||||
"notifications.policy.drop": "Ignora",
|
||||
"notifications.policy.drop_hint": "Scarta definitivamente, per non essere mai più visto",
|
||||
"notifications.policy.filter": "Filtrare",
|
||||
"notifications.policy.filter_hint": "Invia alla casella in arrivo delle notifiche filtrate",
|
||||
"notifications.policy.filter_limited_accounts_hint": "Limitato dai moderatori del server",
|
||||
"notifications.policy.filter_limited_accounts_title": "Account moderati",
|
||||
"notifications.policy.filter_new_accounts.hint": "Creato {days, plural, one {un giorno} other {# giorni}} fa",
|
||||
"notifications.policy.filter_new_accounts_title": "Nuovi account",
|
||||
"notifications.policy.filter_not_followers_hint": "Incluse le persone che ti seguono da meno di {days, plural, one {un giorno} other {# giorni}}",
|
||||
|
@ -553,7 +590,7 @@
|
|||
"notifications.policy.filter_not_following_title": "Persone che non segui",
|
||||
"notifications.policy.filter_private_mentions_hint": "Filtrate, a meno che non sia in risposta alla tua menzione o se segui il mittente",
|
||||
"notifications.policy.filter_private_mentions_title": "Menzioni private indesiderate",
|
||||
"notifications.policy.title": "Filtra le notifiche da…",
|
||||
"notifications.policy.title": "Gestisci le notifiche da…",
|
||||
"notifications_permission_banner.enable": "Abilita le notifiche desktop",
|
||||
"notifications_permission_banner.how_to_control": "Per ricevere le notifiche quando Mastodon non è aperto, abilita le notifiche desktop. Puoi controllare precisamente quali tipi di interazioni generano le notifiche destkop, tramite il pulsante {icon} sopra, una volta abilitate.",
|
||||
"notifications_permission_banner.title": "Non perderti mai nulla",
|
||||
|
@ -794,6 +831,7 @@
|
|||
"timeline_hint.remote_resource_not_displayed": "{resource} da altri server non sono mostrati.",
|
||||
"timeline_hint.resources.followers": "Seguaci",
|
||||
"timeline_hint.resources.follows": "Segue",
|
||||
"timeline_hint.resources.replies": "Alcune risposte",
|
||||
"timeline_hint.resources.statuses": "Post meno recenti",
|
||||
"trends.counter_by_accounts": "{count, plural, one {{count} persona} other {{count} persone}} {days, plural, one {nell'ultimo giorno} other {negli ultimi {days} giorni}}",
|
||||
"trends.trending_now": "Ora in tendenza",
|
||||
|
|
|
@ -437,6 +437,8 @@
|
|||
"mute_modal.title": "ユーザーをミュートしますか?",
|
||||
"mute_modal.you_wont_see_mentions": "宛先に相手が入っている投稿も閲覧できなくなります。",
|
||||
"mute_modal.you_wont_see_posts": "相手はあなたの投稿を今までどおり閲覧できますが、あなたは相手の投稿を閲覧できなくなります。",
|
||||
"name_and_others": "{count, plural, other {#人のユーザー}}と{name}",
|
||||
"name_and_others_with_link": "<a>{count, plural, other {#人のユーザー}}</a>と{name}",
|
||||
"navigation_bar.about": "概要",
|
||||
"navigation_bar.advanced_interface": "上級者向けUIに戻る",
|
||||
"navigation_bar.blocks": "ブロックしたユーザー",
|
||||
|
@ -464,11 +466,14 @@
|
|||
"navigation_bar.security": "セキュリティ",
|
||||
"not_signed_in_indicator.not_signed_in": "この機能を使うにはログインする必要があります。",
|
||||
"notification.admin.report": "{name}さんが{target}さんを通報しました",
|
||||
"notification.admin.report_account": "{name}さんが{target}さんの投稿{count, plural, other {#件}}を「{category}」として通報しました",
|
||||
"notification.admin.report_account_other": "{name}さんが{target}さんの投稿{count, plural, other {#件}}を通報しました",
|
||||
"notification.admin.report_statuses": "{name}さんが{target}さんを「{category}」として通報しました",
|
||||
"notification.admin.report_statuses_other": "{name}さんが{target}さんを通報しました",
|
||||
"notification.admin.sign_up": "{name}さんがサインアップしました",
|
||||
"notification.favourite": "{name}さんがお気に入りしました",
|
||||
"notification.follow": "{name}さんにフォローされました",
|
||||
"notification.follow_request": "{name}さんがあなたにフォローリクエストしました",
|
||||
"notification.mention": "{name}さんがあなたに返信しました",
|
||||
"notification.moderation-warning.learn_more": "さらに詳しく",
|
||||
"notification.moderation_warning": "管理者から警告が来ています",
|
||||
"notification.moderation_warning.action_delete_statuses": "あなたによるいくつかの投稿が削除されました。",
|
||||
|
@ -479,6 +484,7 @@
|
|||
"notification.moderation_warning.action_silence": "あなたのアカウントは制限されています。",
|
||||
"notification.moderation_warning.action_suspend": "あなたのアカウントは停止されました。",
|
||||
"notification.own_poll": "アンケートが終了しました",
|
||||
"notification.poll": "投票したアンケートが終了しました",
|
||||
"notification.reblog": "{name}さんがあなたの投稿をブーストしました",
|
||||
"notification.relationships_severance_event": "{name} との関係が失われました",
|
||||
"notification.relationships_severance_event.account_suspension": "{from} の管理者が {target} さんを停止したため、今後このユーザーとの交流や新しい投稿の受け取りができなくなりました。",
|
||||
|
@ -535,7 +541,6 @@
|
|||
"notifications.policy.filter_not_following_title": "フォローしていないアカウントからの通知をブロックする",
|
||||
"notifications.policy.filter_private_mentions_hint": "あなたがメンションした相手からの返信、およびフォローしているアカウントからの返信以外がブロックされます",
|
||||
"notifications.policy.filter_private_mentions_title": "外部からの非公開の返信をブロックする",
|
||||
"notifications.policy.title": "通知のフィルタリング",
|
||||
"notifications_permission_banner.enable": "デスクトップ通知を有効にする",
|
||||
"notifications_permission_banner.how_to_control": "Mastodonを閉じている間でも通知を受信するにはデスクトップ通知を有効にしてください。有効にすると上の {icon} ボタンから通知の内容を細かくカスタマイズできます。",
|
||||
"notifications_permission_banner.title": "お見逃しなく",
|
||||
|
@ -662,9 +667,13 @@
|
|||
"report.unfollow_explanation": "このアカウントをフォローしています。ホームフィードに彼らの投稿を表示しないようにするには、彼らのフォローを外してください。",
|
||||
"report_notification.attached_statuses": "{count, plural, one {{count}件の投稿} other {{count}件の投稿}}が添付されました。",
|
||||
"report_notification.categories.legal": "法令違反",
|
||||
"report_notification.categories.legal_sentence": "法令違反",
|
||||
"report_notification.categories.other": "その他",
|
||||
"report_notification.categories.other_sentence": "その他",
|
||||
"report_notification.categories.spam": "スパム",
|
||||
"report_notification.categories.spam_sentence": "スパム",
|
||||
"report_notification.categories.violation": "ルール違反",
|
||||
"report_notification.categories.violation_sentence": "ルール違反",
|
||||
"report_notification.open": "通報を開く",
|
||||
"search.no_recent_searches": "検索履歴はありません",
|
||||
"search.placeholder": "検索",
|
||||
|
|
|
@ -171,7 +171,6 @@
|
|||
"navigation_bar.security": "უსაფრთხოება",
|
||||
"not_signed_in_indicator.not_signed_in": "You need to sign in to access this resource.",
|
||||
"notification.follow": "{name} გამოგყვათ",
|
||||
"notification.mention": "{name}-მა გასახელათ",
|
||||
"notification.reblog": "{name}-მა დაბუსტა თქვენი სტატუსი",
|
||||
"notifications.clear": "შეტყობინებების გასუფთავება",
|
||||
"notifications.clear_confirmation": "დარწმუნებული ხართ, გსურთ სამუდამოდ წაშალოთ ყველა თქვენი შეტყობინება?",
|
||||
|
|
|
@ -289,8 +289,8 @@
|
|||
"interaction_modal.sign_in_hint": "Ihi : Wa d asmel ideg tjerdeḍ. Ma ur tecfiḍ ara, nadi imayl n ummager deg tenkult-ik·im. Tzemreḍ daɣen ad d-tefkeḍ isem-ik·im n useqdac ummid ! (amedya @Mastodon@mastodon.social)",
|
||||
"interaction_modal.title.follow": "Ḍfer {name}",
|
||||
"interaction_modal.title.reply": "Tiririt i tsuffeɣt n {name}",
|
||||
"intervals.full.days": "{number, plural, one {# n wass} other {# n wussan}}",
|
||||
"intervals.full.hours": "{number, plural, one {# n usarag} other {# n yesragen}}",
|
||||
"intervals.full.days": "{number, plural, one {# wass} other {# wussan}}",
|
||||
"intervals.full.hours": "{number, plural, one {# usarag} other {# yisragen}}",
|
||||
"intervals.full.minutes": "{number, plural, one {# n tesdat} other {# n tesdatin}}",
|
||||
"keyboard_shortcuts.back": "i tuɣalin ɣer deffir",
|
||||
"keyboard_shortcuts.blocked": "akken ad teldiḍ umuɣ n yimseqdacen yettwasḥebsen",
|
||||
|
@ -391,7 +391,6 @@
|
|||
"notification.favourite": "{name} yesmenyaf addad-ik·im",
|
||||
"notification.follow": "iṭṭafar-ik·em-id {name}",
|
||||
"notification.follow_request": "{name} yessuter-d ad k·m-yeḍfeṛ",
|
||||
"notification.mention": "{name} yebder-ik-id",
|
||||
"notification.moderation-warning.learn_more": "Issin ugar",
|
||||
"notification.moderation_warning.action_suspend": "Yettwaseḥbes umiḍan-ik.",
|
||||
"notification.own_poll": "Tafrant-ik·im tfuk",
|
||||
|
@ -433,12 +432,11 @@
|
|||
"notifications.permission_denied": "D awezɣi ad yili wermad n walɣuten n tnarit axateṛ turagt tettwagdel",
|
||||
"notifications.policy.filter_new_accounts.hint": "Imiḍanen imaynuten i d-yennulfan deg {days, plural, one {yiwen n wass} other {# n wussan}} yezrin",
|
||||
"notifications.policy.filter_new_accounts_title": "Imiḍan imaynuten",
|
||||
"notifications.policy.filter_not_followers_hint": "Ula d wid akked tid i k·m-id-iḍefren, ur wwiḍen ara {days, plural, one {yiwen n wass} other {# n wussan}}",
|
||||
"notifications.policy.filter_not_followers_hint": "Ula d wid akked tid i k·m-id-iḍefren, ur wwiḍen ara {days, plural, one {yiwen wass} other {# wussan}}",
|
||||
"notifications.policy.filter_not_followers_title": "Wid akked tid ur k·m-id-yeṭṭafaren ara",
|
||||
"notifications.policy.filter_not_following_hint": "Alamma tqebleḍ-ten s ufus",
|
||||
"notifications.policy.filter_not_following_title": "Wid akked tid ur tettḍafareḍ ara",
|
||||
"notifications.policy.filter_private_mentions_title": "Abdar uslig ur yettwasferken ara",
|
||||
"notifications.policy.title": "Sizdeg alɣuten sɣur …",
|
||||
"notifications_permission_banner.enable": "Rmed alɣuten n tnarit",
|
||||
"notifications_permission_banner.title": "Ur zeggel acemma",
|
||||
"onboarding.action.back": "Tuɣalin ɣer deffir",
|
||||
|
@ -488,7 +486,7 @@
|
|||
"privacy.private.short": "Imeḍfaren",
|
||||
"privacy.public.long": "Kra n win yellan deg Masṭudun neɣ berra-s",
|
||||
"privacy.public.short": "Azayez",
|
||||
"privacy.unlisted.long": "Kra kan n ilguritmen",
|
||||
"privacy.unlisted.long": "Kra kan yiwarzimen",
|
||||
"privacy_policy.last_updated": "Aleqqem aneggaru {date}",
|
||||
"privacy_policy.title": "Tasertit tabaḍnit",
|
||||
"recommended": "Yettuwelleh",
|
||||
|
@ -509,6 +507,7 @@
|
|||
"report.categories.other": "Tiyyaḍ",
|
||||
"report.categories.spam": "Aspam",
|
||||
"report.category.subtitle": "Fren amṣada akk ufrin",
|
||||
"report.category.title": "Ini-aɣ-d d acu i yuɣen {type}-a",
|
||||
"report.category.title_account": "ameɣnu",
|
||||
"report.category.title_status": "tasuffeɣt",
|
||||
"report.close": "Immed",
|
||||
|
@ -622,16 +621,17 @@
|
|||
"subscribed_languages.save": "Sekles ibeddilen",
|
||||
"tabs_bar.home": "Agejdan",
|
||||
"tabs_bar.notifications": "Alɣuten",
|
||||
"time_remaining.days": "Mazal {number, plural, one {# n wass} other {# n wussan}}",
|
||||
"time_remaining.hours": "Mazal {number, plural, one {# n usrag} other {# n yesragen}}",
|
||||
"time_remaining.days": "Mazal {number, plural, one {# wass} other {# wussan}}",
|
||||
"time_remaining.hours": "Mazal {number, plural, one {# usarag} other {# yisragen}}",
|
||||
"time_remaining.minutes": "Mazal {number, plural, one {# n tesdat} other {# n tesdatin}}",
|
||||
"time_remaining.moments": "Akuden i d-yeqqimen",
|
||||
"time_remaining.seconds": "Mazal {number, plural, one {# n tasint} other {# n tsinin}} id yugran",
|
||||
"timeline_hint.remote_resource_not_displayed": "{resource} seg yiqeddacen-nniḍen ur d-ttwaskanent ara.",
|
||||
"timeline_hint.resources.followers": "Imeḍfaṛen",
|
||||
"timeline_hint.resources.follows": "T·Yeṭafaṛ",
|
||||
"timeline_hint.resources.replies": "Kra tririyin",
|
||||
"timeline_hint.resources.statuses": "Tisuffaɣ tiqdimin",
|
||||
"trends.counter_by_accounts": "{count, plural, one {{counter} n wemdan} other {{counter} n medden}} deg {days, plural, one {ass} other {{days} n wussan}} iɛeddan",
|
||||
"trends.counter_by_accounts": "{count, plural, one {{counter} wemdan} other {{counter} medden}} deg {days, plural, one {ass} other {{days} wussan}} iɛeddan",
|
||||
"trends.trending_now": "Ayen mucaɛen tura",
|
||||
"ui.beforeunload": "Arewway-ik·im ad iruḥ ma yella tefeɣ-d deg Maṣṭudun.",
|
||||
"units.short.billion": "{count}B",
|
||||
|
|
|
@ -244,7 +244,6 @@
|
|||
"not_signed_in_indicator.not_signed_in": "You need to sign in to access this resource.",
|
||||
"notification.follow": "{name} сізге жазылды",
|
||||
"notification.follow_request": "{name} сізге жазылғысы келеді",
|
||||
"notification.mention": "{name} сізді атап өтті",
|
||||
"notification.own_poll": "Сауалнама аяқталды",
|
||||
"notification.reblog": "{name} жазбаңызды бөлісті",
|
||||
"notifications.clear": "Ескертпелерді тазарт",
|
||||
|
|
|
@ -482,7 +482,6 @@
|
|||
"notification.favourite": "{name} 님이 내 게시물을 좋아합니다",
|
||||
"notification.follow": "{name} 님이 나를 팔로우했습니다",
|
||||
"notification.follow_request": "{name} 님이 팔로우 요청을 보냈습니다",
|
||||
"notification.mention": "{name} 님의 멘션",
|
||||
"notification.moderation-warning.learn_more": "더 알아보기",
|
||||
"notification.moderation_warning": "중재 경고를 받았습니다",
|
||||
"notification.moderation_warning.action_delete_statuses": "게시물 몇 개가 삭제되었습니다.",
|
||||
|
@ -494,7 +493,6 @@
|
|||
"notification.moderation_warning.action_suspend": "계정이 정지되었습니다.",
|
||||
"notification.own_poll": "설문을 마침",
|
||||
"notification.poll": "참여한 투표가 끝났습니다",
|
||||
"notification.private_mention": "{name} 님이 나를 개인적으로 멘션했습니다",
|
||||
"notification.reblog": "{name} 님이 부스트했습니다",
|
||||
"notification.relationships_severance_event": "{name} 님과의 연결이 끊어졌습니다",
|
||||
"notification.relationships_severance_event.account_suspension": "{from}의 관리자가 {target}를 정지시켰기 때문에 그들과 더이상 상호작용 할 수 없고 정보를 받아볼 수 없습니다.",
|
||||
|
@ -505,6 +503,8 @@
|
|||
"notification.update": "{name} 님이 게시물을 수정했습니다",
|
||||
"notification_requests.accept": "수락",
|
||||
"notification_requests.dismiss": "지우기",
|
||||
"notification_requests.enter_selection_mode": "선택",
|
||||
"notification_requests.exit_selection_mode": "취소",
|
||||
"notification_requests.maximize": "최대화",
|
||||
"notification_requests.minimize_banner": "걸러진 알림 배너 최소화",
|
||||
"notification_requests.notifications_from": "{name} 님으로부터의 알림",
|
||||
|
@ -545,6 +545,9 @@
|
|||
"notifications.permission_denied": "권한이 거부되었기 때문에 데스크탑 알림을 활성화할 수 없음",
|
||||
"notifications.permission_denied_alert": "이전에 브라우저 권한이 거부되었기 때문에, 데스크탑 알림이 활성화 될 수 없습니다.",
|
||||
"notifications.permission_required": "필요한 권한이 승인되지 않아 데스크탑 알림을 사용할 수 없습니다.",
|
||||
"notifications.policy.accept": "허용",
|
||||
"notifications.policy.drop": "무시",
|
||||
"notifications.policy.filter": "필터",
|
||||
"notifications.policy.filter_limited_accounts_hint": "서버 중재자에 의해 제한됨",
|
||||
"notifications.policy.filter_limited_accounts_title": "중재된 계정",
|
||||
"notifications.policy.filter_new_accounts.hint": "{days, plural, one {하루} other {#일}} 안에 만들어진",
|
||||
|
@ -555,7 +558,6 @@
|
|||
"notifications.policy.filter_not_following_title": "내가 팔로우하지 않는 사람들",
|
||||
"notifications.policy.filter_private_mentions_hint": "내가 한 멘션에 단 답글이거나 내가 발신자를 팔로우 한 것이 아닌 이상 걸러집니다",
|
||||
"notifications.policy.filter_private_mentions_title": "청하지 않은 개인적인 멘션",
|
||||
"notifications.policy.title": "알림을 제외할 조건들…",
|
||||
"notifications_permission_banner.enable": "데스크탑 알림 활성화",
|
||||
"notifications_permission_banner.how_to_control": "마스토돈이 열려 있지 않을 때에도 알림을 받으려면, 데스크탑 알림을 활성화 하세요. 당신은 어떤 종류의 반응이 데스크탑 알림을 발생할 지를 {icon} 버튼을 통해 세세하게 설정할 수 있습니다.",
|
||||
"notifications_permission_banner.title": "아무것도 놓치지 마세요",
|
||||
|
@ -796,6 +798,7 @@
|
|||
"timeline_hint.remote_resource_not_displayed": "다른 서버의 {resource} 표시는 할 수 없습니다.",
|
||||
"timeline_hint.resources.followers": "팔로워",
|
||||
"timeline_hint.resources.follows": "팔로우",
|
||||
"timeline_hint.resources.replies": "몇몇 답글",
|
||||
"timeline_hint.resources.statuses": "이전 게시물",
|
||||
"trends.counter_by_accounts": "이전 {days}일 동안 {counter} 명의 사용자",
|
||||
"trends.trending_now": "지금 유행 중",
|
||||
|
|
|
@ -343,7 +343,6 @@
|
|||
"notification.admin.sign_up": "{name} tomar bû",
|
||||
"notification.follow": "{name} te şopand",
|
||||
"notification.follow_request": "{name} dixwazê te bişopîne",
|
||||
"notification.mention": "{name} qale te kir",
|
||||
"notification.own_poll": "Rapirsîya te qediya",
|
||||
"notification.reblog": "{name} şandiya te bilind kir",
|
||||
"notification.status": "{name} niha şand",
|
||||
|
|
|
@ -235,7 +235,6 @@
|
|||
"not_signed_in_indicator.not_signed_in": "You need to sign in to access this resource.",
|
||||
"notification.follow": "{name} a wrug agas holya",
|
||||
"notification.follow_request": "{name} a bysis agas holya",
|
||||
"notification.mention": "{name} a wrug agas meneges",
|
||||
"notification.own_poll": "Agas sondyans a worfennas",
|
||||
"notification.reblog": "{name} a generthas agas post",
|
||||
"notification.status": "{name} a wrug nowydh postya",
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
"compose_form.direct_message_warning_learn_more": "Discere plura",
|
||||
"compose_form.encryption_warning": "Posts on Mastodon are not end-to-end encrypted. Do not share any dangerous information over Mastodon.",
|
||||
"compose_form.hashtag_warning": "This post won't be listed under any hashtag as it is unlisted. Only public posts can be searched by hashtag.",
|
||||
"compose_form.lock_disclaimer": "Tua ratio non est {clausa}. Quisquis te sequi potest ut visum accipiat nuntios tuos tantum pro sectatoribus.",
|
||||
"compose_form.lock_disclaimer": "Tua ratio non est {locked}. Quisquis te sequi potest ut visum accipiat nuntios tuos tantum pro sectatoribus.",
|
||||
"compose_form.lock_disclaimer.lock": "clausum",
|
||||
"compose_form.placeholder": "What is on your mind?",
|
||||
"compose_form.publish_form": "Barrire",
|
||||
|
@ -128,6 +128,7 @@
|
|||
"lightbox.next": "Secundum",
|
||||
"lists.account.add": "Adde ad tabellās",
|
||||
"lists.new.create": "Addere tabella",
|
||||
"lists.subheading": "Tuae tabulae",
|
||||
"load_pending": "{count, plural, one {# novum item} other {# nova itema}}",
|
||||
"media_gallery.toggle_visible": "{number, plural, one {Cēla imaginem} other {Cēla imagines}}",
|
||||
"moved_to_account_banner.text": "Tua ratione {disabledAccount} interdum reposita est, quod ad {movedToAccount} migrāvisti.",
|
||||
|
@ -140,14 +141,13 @@
|
|||
"notification.favourite": "{name} nuntium tuum favit",
|
||||
"notification.follow": "{name} te secutus est",
|
||||
"notification.follow_request": "{name} postulavit ut te sequeretur",
|
||||
"notification.mention": "{name} memoravi",
|
||||
"notification.moderation_warning": "Accepistī monitionem moderationis.",
|
||||
"notification.moderation_warning.action_disable": "Ratio tua debilitata est.",
|
||||
"notification.moderation_warning.action_none": "Tua ratiō monitum moderātiōnis accēpit.",
|
||||
"notification.moderation_warning.action_sensitive": "Tua nuntia hinc sensibiliter notabuntur.",
|
||||
"notification.moderation_warning.action_silence": "Ratio tua est limitata.",
|
||||
"notification.moderation_warning.action_suspend": "Ratio tua suspensus est.",
|
||||
"notification.own_poll": "Suffragium tuum terminatum est.",
|
||||
"notification.own_poll": "Suffragium tuum terminatum est",
|
||||
"notification.reblog": "{name} tuum nuntium amplificavit.",
|
||||
"notification.relationships_severance_event.account_suspension": "Admin ab {from} {target} suspendit, quod significat nōn iam posse tē novitātēs ab eīs accipere aut cum eīs interagere.",
|
||||
"notification.relationships_severance_event.domain_block": "Admin ab {from} {target} obsēcāvit, includēns {followersCount} ex tuīs sectātōribus et {followingCount, plural, one {# ratione} other {# rationibus}} quās sequeris.",
|
||||
|
@ -162,7 +162,7 @@
|
|||
"onboarding.actions.go_to_home": "Go to your home feed",
|
||||
"onboarding.follows.lead": "Tua domus feed est principalis via Mastodon experīrī. Quō plūrēs persōnas sequeris, eō actīvior et interessantior erit. Ad tē incipiendum, ecce quaedam suāsiones:",
|
||||
"onboarding.follows.title": "Popular on Mastodon",
|
||||
"onboarding.profile.display_name_hint": "Tuum nomen completum aut tuum nomen ludens...",
|
||||
"onboarding.profile.display_name_hint": "Tuum nomen completum aut tuum nomen ludens…",
|
||||
"onboarding.start.lead": "Nunc pars es Mastodonis, singularis, socialis medii platformae decentralis ubi—non algorismus—tuam ipsius experientiam curas. Incipiāmus in nova hac socialis regione:",
|
||||
"onboarding.start.skip": "Want to skip right ahead?",
|
||||
"onboarding.start.title": "Perfecisti eam!",
|
||||
|
|
|
@ -449,7 +449,6 @@
|
|||
"notification.favourite": "A {name} le plaze tu publikasyon",
|
||||
"notification.follow": "{name} te ampeso a segir",
|
||||
"notification.follow_request": "{name} tiene solisitado segirte",
|
||||
"notification.mention": "{name} te enmento",
|
||||
"notification.moderation-warning.learn_more": "Ambezate mas",
|
||||
"notification.moderation_warning.action_disable": "Tu kuento tiene sido inkapasitado.",
|
||||
"notification.moderation_warning.action_mark_statuses_as_sensitive": "Algunas de tus publikasyones tienen sido markadas komo sensivles.",
|
||||
|
@ -506,7 +505,6 @@
|
|||
"notifications.policy.filter_not_following_hint": "Asta ke las aproves manualmente",
|
||||
"notifications.policy.filter_not_following_title": "Personas ke no siges",
|
||||
"notifications.policy.filter_private_mentions_title": "Enmentaduras privadas no solisitadas",
|
||||
"notifications.policy.title": "Filtra avizos de…",
|
||||
"notifications_permission_banner.enable": "Kapasita avizos de ensimameza",
|
||||
"notifications_permission_banner.how_to_control": "Para risivir avizos kuando Mastodon no esta avierto, kapasita avizos de ensimameza. Puedes kontrolar presizamente kualos tipos de enteraksiones djeneren avizos de ensimameza kon el boton {icon} arriva kuando esten kapasitadas.",
|
||||
"notifications_permission_banner.title": "Nunkua te piedres niente",
|
||||
|
|
|
@ -300,6 +300,7 @@
|
|||
"filter_modal.select_filter.subtitle": "Naudok esamą kategoriją arba sukurk naują.",
|
||||
"filter_modal.select_filter.title": "Filtruoti šį įrašą",
|
||||
"filter_modal.title.status": "Filtruoti įrašą",
|
||||
"filtered_notifications_banner.pending_requests": "Iš {count, plural, =0 {nė vieno} one {žmogaus} few {# žmonių} many {# žmonių} other {# žmonių}}, kuriuos galbūt pažįsti",
|
||||
"filtered_notifications_banner.title": "Filtruojami pranešimai",
|
||||
"firehose.all": "Visi",
|
||||
"firehose.local": "Šis serveris",
|
||||
|
@ -355,6 +356,17 @@
|
|||
"home.pending_critical_update.link": "Žiūrėti naujinimus",
|
||||
"home.pending_critical_update.title": "Galimas kritinis saugumo naujinimas.",
|
||||
"home.show_announcements": "Rodyti skelbimus",
|
||||
"ignore_notifications_modal.disclaimer": "„Mastodon“ negali informuoti naudotojų, kad ignoravai jų pranešimus. Ignoravus pranešimus, pačių pranešimų siuntimas nebus sustabdytas.",
|
||||
"ignore_notifications_modal.filter_instead": "Filtruoti vietoj to",
|
||||
"ignore_notifications_modal.filter_to_act_users": "Vis dar galėsi priimti, atmesti arba pranešti naudotojus.",
|
||||
"ignore_notifications_modal.filter_to_avoid_confusion": "Filtravimas padeda išvengti galimos painiavos.",
|
||||
"ignore_notifications_modal.filter_to_review_separately": "Filtruotus pranešimus gali peržiūrėti atskirai.",
|
||||
"ignore_notifications_modal.ignore": "Ignoruoti pranešimus",
|
||||
"ignore_notifications_modal.limited_accounts_title": "Ignoruoti pranešimus iš prižiūrėmų paskyrų?",
|
||||
"ignore_notifications_modal.new_accounts_title": "Ignoruoti pranešimus iš naujų paskyrų?",
|
||||
"ignore_notifications_modal.not_followers_title": "Ignoruoti pranešimus iš žmonių, kurie tave neseka?",
|
||||
"ignore_notifications_modal.not_following_title": "Ignoruoti pranešimus iš žmonių, kuriuos neseki?",
|
||||
"ignore_notifications_modal.private_mentions_title": "Ignoruoti pranešimus iš neprašytų privačių paminėjimų?",
|
||||
"interaction_modal.description.favourite": "Su Mastodon paskyra gali pamėgti šį įrašą, kad autorius (-ė) žinotų, jog vertinti tai ir išsaugoti jį vėliau.",
|
||||
"interaction_modal.description.follow": "Su Mastodon paskyra gali sekti {name}, kad gautum jų įrašus į pagrindinį srautą.",
|
||||
"interaction_modal.description.reblog": "Su Mastodon paskyra gali pakelti šią įrašą ir pasidalyti juo su savo sekėjais.",
|
||||
|
@ -481,7 +493,11 @@
|
|||
"notification.favourite": "{name} pamėgo tavo įrašą",
|
||||
"notification.follow": "{name} seka tave",
|
||||
"notification.follow_request": "{name} paprašė tave sekti",
|
||||
"notification.mention": "{name} paminėjo tave",
|
||||
"notification.label.mention": "Paminėjimas",
|
||||
"notification.label.private_mention": "Privatus paminėjimas",
|
||||
"notification.label.private_reply": "Privatus atsakymas",
|
||||
"notification.label.reply": "Atsakymas",
|
||||
"notification.mention": "Paminėjimas",
|
||||
"notification.moderation-warning.learn_more": "Sužinoti daugiau",
|
||||
"notification.moderation_warning": "Gavai prižiūrėjimo įspėjimą",
|
||||
"notification.moderation_warning.action_delete_statuses": "Kai kurie tavo įrašai buvo pašalintos.",
|
||||
|
@ -493,7 +509,6 @@
|
|||
"notification.moderation_warning.action_suspend": "Tavo paskyra buvo sustabdyta.",
|
||||
"notification.own_poll": "Tavo apklausa baigėsi",
|
||||
"notification.poll": "Baigėsi apklausa, kurioje balsavai",
|
||||
"notification.private_mention": "{name} privačiai paminėjo tave",
|
||||
"notification.reblog": "{name} pakėlė tavo įrašą",
|
||||
"notification.relationships_severance_event": "Prarasti sąryšiai su {name}",
|
||||
"notification.relationships_severance_event.learn_more": "Sužinoti daugiau",
|
||||
|
@ -501,9 +516,26 @@
|
|||
"notification.status": "{name} ką tik paskelbė",
|
||||
"notification.update": "{name} redagavo įrašą",
|
||||
"notification_requests.accept": "Priimti",
|
||||
"notification_requests.accept_all": "Priimti visus",
|
||||
"notification_requests.accept_multiple": "{count, plural, one {Priimti # prašymą} few {Priimti # prašymus} many {Priimti # prašymo} other {Priimti # prašymų}}",
|
||||
"notification_requests.confirm_accept_all.button": "Priimti visus",
|
||||
"notification_requests.confirm_accept_all.message": "Ketini priimti {count, plural, one {# pranešimo prašymą} few {# pranešimų prašymus} many {# pranešimo prašymo} other {# pranešimų prašymų}}. Ar tikrai nori tęsti?",
|
||||
"notification_requests.confirm_accept_all.title": "Priimti pranešimų prašymus?",
|
||||
"notification_requests.confirm_dismiss_all.button": "Atmesti visus",
|
||||
"notification_requests.confirm_dismiss_all.message": "Ketini atmesti {count, plural, one {# pranešimo prašymą} few {# pranešimų prašymus} many {# pranešimo prašymo} other {# pranešimų prašymų}}. Daugiau negalėsi lengvai pasiekti {count, plural, one {jo} few {jų} many {juos} other {jų}}. Ar tikrai nori tęsti?",
|
||||
"notification_requests.confirm_dismiss_all.title": "Atmesti pranešimų prašymus?",
|
||||
"notification_requests.dismiss": "Atmesti",
|
||||
"notification_requests.dismiss_all": "Atmesti visus",
|
||||
"notification_requests.dismiss_multiple": "{count, plural, one {Atmesti # prašymą} few {Atmesti # prašymus} many {Atmesti # prašymo} other {Atmesti # prašymų}}",
|
||||
"notification_requests.enter_selection_mode": "Pasirinkti",
|
||||
"notification_requests.exit_selection_mode": "Atšaukti",
|
||||
"notification_requests.explainer_for_limited_account": "Pranešimai iš šios paskyros buvo filtruojami, nes prižiūrėtojas (-a) apribojo paskyrą.",
|
||||
"notification_requests.explainer_for_limited_remote_account": "Pranešimai iš šios paskyros buvo filtruojami, nes prižiūrėtojas (-a) apribojo paskyrą arba serverį.",
|
||||
"notification_requests.maximize": "Padidinti",
|
||||
"notification_requests.minimize_banner": "Mažinti filtruotų pranešimų reklamjuostę",
|
||||
"notification_requests.notifications_from": "Pranešimai iš {name}",
|
||||
"notification_requests.title": "Filtruojami pranešimai",
|
||||
"notification_requests.view": "Peržiūrėti pranešimus",
|
||||
"notifications.clear": "Išvalyti pranešimus",
|
||||
"notifications.clear_confirmation": "Ar tikrai nori visam laikui išvalyti visus pranešimus?",
|
||||
"notifications.clear_title": "Valyti pranešimus?",
|
||||
|
@ -540,12 +572,20 @@
|
|||
"notifications.permission_denied": "Darbalaukio pranešimai nepasiekiami dėl anksčiau atmestos naršyklės leidimų užklausos.",
|
||||
"notifications.permission_denied_alert": "Negalima įjungti darbalaukio pranešimų, nes prieš tai naršyklės leidimas buvo atmestas.",
|
||||
"notifications.permission_required": "Darbalaukio pranešimai nepasiekiami, nes nebuvo suteiktas reikiamas leidimas.",
|
||||
"notifications.policy.accept": "Priimti",
|
||||
"notifications.policy.accept_hint": "Rodyti pranešimuose",
|
||||
"notifications.policy.drop": "Ignoruoti",
|
||||
"notifications.policy.drop_hint": "Siųsti į tuštumą, kad daugiau niekada nebepasirodytų",
|
||||
"notifications.policy.filter": "Filtruoti",
|
||||
"notifications.policy.filter_hint": "Siųsti į filtruotų pranešimų gautiejus",
|
||||
"notifications.policy.filter_limited_accounts_hint": "Apribota serverio prižiūrėtojų",
|
||||
"notifications.policy.filter_limited_accounts_title": "Prižiūrėmi paskyrai",
|
||||
"notifications.policy.filter_new_accounts.hint": "Sukurta per {days, plural, one {vieną dieną} few {# dienas} many {# dienos} other {# dienų}}",
|
||||
"notifications.policy.filter_new_accounts_title": "Naujos paskyros",
|
||||
"notifications.policy.filter_not_following_hint": "Kol jų nepatvirtinsi rankiniu būdu",
|
||||
"notifications.policy.filter_not_following_title": "Žmonių, kuriuos neseki",
|
||||
"notifications.policy.filter_private_mentions_title": "Nepageidaujami privatūs paminėjimai",
|
||||
"notifications.policy.title": "Filtruoti pranešimus iš…",
|
||||
"notifications.policy.title": "Tvarkyti pranešimus iš…",
|
||||
"notifications_permission_banner.enable": "Įjungti darbalaukio pranešimus",
|
||||
"notifications_permission_banner.how_to_control": "Jei nori gauti pranešimus, kai Mastodon nėra atidarytas, įjunk darbalaukio pranešimus. Įjungęs (-usi) darbalaukio pranešimus, gali tiksliai valdyti, kokių tipų sąveikos generuoja darbalaukio pranešimus, naudojant pirmiau esančiu mygtuku {icon}.",
|
||||
"notifications_permission_banner.title": "Niekada nieko nepraleisk",
|
||||
|
@ -785,6 +825,7 @@
|
|||
"timeline_hint.remote_resource_not_displayed": "{resource} iš kitų serverių nerodomi.",
|
||||
"timeline_hint.resources.followers": "Sekėjai",
|
||||
"timeline_hint.resources.follows": "Seka",
|
||||
"timeline_hint.resources.replies": "Kai kurie atsakymai",
|
||||
"timeline_hint.resources.statuses": "Senesni įrašai",
|
||||
"trends.counter_by_accounts": "{count, plural, one {{counter} žmogus} few {{counter} žmonės} many {{counter} žmogus} other {{counter} žmonių}} per {days, plural, one {dieną} few {{days} dienas} many {{days} dienas} other {{days} dienų}}",
|
||||
"trends.trending_now": "Tendencinga dabar",
|
||||
|
|
|
@ -426,7 +426,6 @@
|
|||
"notification.favourite": "{name} pievienoja tavu ziņu izlasei",
|
||||
"notification.follow": "{name} uzsāka Tev sekot",
|
||||
"notification.follow_request": "{name} nosūtīja Tev sekošanas pieprasījumu",
|
||||
"notification.mention": "{name} pieminēja Tevi",
|
||||
"notification.moderation-warning.learn_more": "Uzzināt vairāk",
|
||||
"notification.moderation_warning.action_delete_statuses": "Daži no Taviem ierakstiem tika noņemti.",
|
||||
"notification.moderation_warning.action_disable": "Tavs konts tika atspējots.",
|
||||
|
@ -481,7 +480,6 @@
|
|||
"notifications.policy.filter_not_followers_title": "Cilvēki, kuri Tev neseko",
|
||||
"notifications.policy.filter_not_following_hint": "Līdz tos pašrocīgi apstiprināsi",
|
||||
"notifications.policy.filter_not_following_title": "Cilvēki, kuriem Tu neseko",
|
||||
"notifications.policy.title": "Atlasīt paziņojumus no…",
|
||||
"notifications_permission_banner.enable": "Iespējot darbvirsmas paziņojumus",
|
||||
"notifications_permission_banner.how_to_control": "Lai saņemtu paziņojumus, kad Mastodon nav atvērts, iespējo darbvirsmas paziņojumus. Vari precīzi kontrolēt, kāda veida mijiedarbības rada darbvirsmas paziņojumus, izmantojot augstāk redzamo pogu {icon}, kad tie būs iespējoti.",
|
||||
"notifications_permission_banner.title": "Nekad nepalaid neko garām",
|
||||
|
|
|
@ -238,7 +238,6 @@
|
|||
"not_signed_in_indicator.not_signed_in": "You need to sign in to access this resource.",
|
||||
"notification.follow": "{name} നിങ്ങളെ പിന്തുടർന്നു",
|
||||
"notification.follow_request": "{name} നിങ്ങളെ പിന്തുടരാൻ അഭ്യർത്ഥിച്ചു",
|
||||
"notification.mention": "{name} നിങ്ങളെ സൂചിപ്പിച്ചു",
|
||||
"notification.own_poll": "നിങ്ങളുടെ പോൾ അവസാനിച്ചു",
|
||||
"notification.reblog": "{name} നിങ്ങളുടെ പോസ്റ്റ് ബൂസ്റ്റ് ചെയ്തു",
|
||||
"notification.status": "{name} ഇപ്പോൾ പോസ്റ്റുചെയ്തു",
|
||||
|
|
|
@ -415,7 +415,6 @@
|
|||
"notification.favourite": "{name} menggemari pos anda",
|
||||
"notification.follow": "{name} mengikuti anda",
|
||||
"notification.follow_request": "{name} meminta untuk mengikuti anda",
|
||||
"notification.mention": "{name} menyebut anda",
|
||||
"notification.own_poll": "Undian anda telah tamat",
|
||||
"notification.reblog": "{name} menggalak hantaran anda",
|
||||
"notification.status": "{name} baru sahaja mengirim hantaran",
|
||||
|
|
|
@ -396,7 +396,6 @@
|
|||
"notification.favourite": "{name} က သင့်ပို့စ်ကို နှစ်သက်ခဲ့သည်",
|
||||
"notification.follow": "{name} က သင့်ကို စောင့်ကြည့်ခဲ့သည်",
|
||||
"notification.follow_request": "{name} က သင့်ကို စောင့်ကြည့်ရန် တောင်းဆိုထားသည်",
|
||||
"notification.mention": "{name} က သင့်ကို ဖော်ပြခဲ့သည်",
|
||||
"notification.own_poll": "စစ်တမ်းကောက်မှု ပြီးဆုံးပါပြီ",
|
||||
"notification.reblog": "{name} boosted your status",
|
||||
"notification.status": "{name} က အခုလေးတင် ပို့စ်တင်လိုက်ပါပြီ",
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue