Merge remote-tracking branch 'parent/main' into upstream-20240813
This commit is contained in:
commit
e7ccc0539f
358 changed files with 4653 additions and 4261 deletions
|
@ -758,7 +758,7 @@ GEM
|
||||||
rack (>= 1.1)
|
rack (>= 1.1)
|
||||||
rubocop (>= 1.33.0, < 2.0)
|
rubocop (>= 1.33.0, < 2.0)
|
||||||
rubocop-ast (>= 1.31.1, < 2.0)
|
rubocop-ast (>= 1.31.1, < 2.0)
|
||||||
rubocop-rspec (3.0.3)
|
rubocop-rspec (3.0.4)
|
||||||
rubocop (~> 1.61)
|
rubocop (~> 1.61)
|
||||||
rubocop-rspec_rails (2.30.0)
|
rubocop-rspec_rails (2.30.0)
|
||||||
rubocop (~> 1.61)
|
rubocop (~> 1.61)
|
||||||
|
|
|
@ -8,12 +8,12 @@ class Api::V1::Notifications::PoliciesController < Api::BaseController
|
||||||
before_action :set_policy
|
before_action :set_policy
|
||||||
|
|
||||||
def show
|
def show
|
||||||
render json: @policy, serializer: REST::NotificationPolicySerializer
|
render json: @policy, serializer: REST::V1::NotificationPolicySerializer
|
||||||
end
|
end
|
||||||
|
|
||||||
def update
|
def update
|
||||||
@policy.update!(resource_params)
|
@policy.update!(resource_params)
|
||||||
render json: @policy, serializer: REST::NotificationPolicySerializer
|
render json: @policy, serializer: REST::V1::NotificationPolicySerializer
|
||||||
end
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
|
@ -29,7 +29,7 @@ class Api::V1::Notifications::RequestsController < Api::BaseController
|
||||||
end
|
end
|
||||||
|
|
||||||
def dismiss
|
def dismiss
|
||||||
@request.destroy!
|
DismissNotificationRequestService.new.call(@request)
|
||||||
render_empty
|
render_empty
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
38
app/controllers/api/v2/notifications/policies_controller.rb
Normal file
38
app/controllers/api/v2/notifications/policies_controller.rb
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
class Api::V2::Notifications::PoliciesController < Api::BaseController
|
||||||
|
before_action -> { doorkeeper_authorize! :read, :'read:notifications' }, only: :show
|
||||||
|
before_action -> { doorkeeper_authorize! :write, :'write:notifications' }, only: :update
|
||||||
|
|
||||||
|
before_action :require_user!
|
||||||
|
before_action :set_policy
|
||||||
|
|
||||||
|
def show
|
||||||
|
render json: @policy, serializer: REST::NotificationPolicySerializer
|
||||||
|
end
|
||||||
|
|
||||||
|
def update
|
||||||
|
@policy.update!(resource_params)
|
||||||
|
render json: @policy, serializer: REST::NotificationPolicySerializer
|
||||||
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def set_policy
|
||||||
|
@policy = NotificationPolicy.find_or_initialize_by(account: current_account)
|
||||||
|
|
||||||
|
with_read_replica do
|
||||||
|
@policy.summarize!
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def resource_params
|
||||||
|
params.permit(
|
||||||
|
:for_not_following,
|
||||||
|
:for_not_followers,
|
||||||
|
:for_new_accounts,
|
||||||
|
:for_private_mentions,
|
||||||
|
:for_limited_accounts
|
||||||
|
)
|
||||||
|
end
|
||||||
|
end
|
|
@ -16,10 +16,10 @@ class Api::V2Alpha::NotificationsController < Api::BaseController
|
||||||
@group_metadata = load_group_metadata
|
@group_metadata = load_group_metadata
|
||||||
@grouped_notifications = load_grouped_notifications
|
@grouped_notifications = load_grouped_notifications
|
||||||
@relationships = StatusRelationshipsPresenter.new(target_statuses_from_notifications, current_user&.account_id)
|
@relationships = StatusRelationshipsPresenter.new(target_statuses_from_notifications, current_user&.account_id)
|
||||||
@sample_accounts = @grouped_notifications.flat_map(&:sample_accounts)
|
@presenter = GroupedNotificationsPresenter.new(@grouped_notifications, expand_accounts: expand_accounts_param)
|
||||||
|
|
||||||
# Preload associations to avoid N+1s
|
# Preload associations to avoid N+1s
|
||||||
ActiveRecord::Associations::Preloader.new(records: @sample_accounts, associations: [:account_stat, { user: :role }]).call
|
ActiveRecord::Associations::Preloader.new(records: @presenter.accounts, associations: [:account_stat, { user: :role }]).call
|
||||||
end
|
end
|
||||||
|
|
||||||
MastodonOTELTracer.in_span('Api::V2Alpha::NotificationsController#index rendering') do |span|
|
MastodonOTELTracer.in_span('Api::V2Alpha::NotificationsController#index rendering') do |span|
|
||||||
|
@ -27,14 +27,14 @@ class Api::V2Alpha::NotificationsController < Api::BaseController
|
||||||
|
|
||||||
span.add_attributes(
|
span.add_attributes(
|
||||||
'app.notification_grouping.count' => @grouped_notifications.size,
|
'app.notification_grouping.count' => @grouped_notifications.size,
|
||||||
'app.notification_grouping.sample_account.count' => @sample_accounts.size,
|
'app.notification_grouping.account.count' => @presenter.accounts.size,
|
||||||
'app.notification_grouping.sample_account.unique_count' => @sample_accounts.pluck(:id).uniq.size,
|
'app.notification_grouping.partial_account.count' => @presenter.partial_accounts.size,
|
||||||
'app.notification_grouping.status.count' => statuses.size,
|
'app.notification_grouping.status.count' => statuses.size,
|
||||||
'app.notification_grouping.status.unique_count' => statuses.uniq.size
|
'app.notification_grouping.status.unique_count' => statuses.uniq.size,
|
||||||
|
'app.notification_grouping.expand_accounts_param' => expand_accounts_param
|
||||||
)
|
)
|
||||||
|
|
||||||
presenter = GroupedNotificationsPresenter.new(@grouped_notifications)
|
render json: @presenter, serializer: REST::DedupNotificationGroupSerializer, relationships: @relationships, group_metadata: @group_metadata, expand_accounts: expand_accounts_param
|
||||||
render json: presenter, serializer: REST::DedupNotificationGroupSerializer, relationships: @relationships, group_metadata: @group_metadata
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -131,4 +131,15 @@ class Api::V2Alpha::NotificationsController < Api::BaseController
|
||||||
def pagination_params(core_params)
|
def pagination_params(core_params)
|
||||||
params.slice(:limit, :types, :exclude_types, :include_filtered).permit(:limit, :include_filtered, types: [], exclude_types: []).merge(core_params)
|
params.slice(:limit, :types, :exclude_types, :include_filtered).permit(:limit, :include_filtered, types: [], exclude_types: []).merge(core_params)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def expand_accounts_param
|
||||||
|
case params[:expand_accounts]
|
||||||
|
when nil, 'full'
|
||||||
|
'full'
|
||||||
|
when 'partial_avatars'
|
||||||
|
'partial_avatars'
|
||||||
|
else
|
||||||
|
raise Mastodon::InvalidParameterError, "Invalid value for 'expand_accounts': '#{params[:expand_accounts]}', allowed values are 'full' and 'partial_avatars'"
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -118,7 +118,7 @@ module ApplicationHelper
|
||||||
def material_symbol(icon, attributes = {})
|
def material_symbol(icon, attributes = {})
|
||||||
inline_svg_tag(
|
inline_svg_tag(
|
||||||
"400-24px/#{icon}.svg",
|
"400-24px/#{icon}.svg",
|
||||||
class: %w(icon).concat(attributes[:class].to_s.split),
|
class: ['icon', "material-#{icon}"].concat(attributes[:class].to_s.split),
|
||||||
role: :img
|
role: :img
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
@ -129,27 +129,27 @@ module ApplicationHelper
|
||||||
|
|
||||||
def visibility_icon(status)
|
def visibility_icon(status)
|
||||||
if status.public_visibility?
|
if status.public_visibility?
|
||||||
fa_icon('globe', title: I18n.t('statuses.visibilities.public'))
|
material_symbol('globe', title: I18n.t('statuses.visibilities.public'))
|
||||||
elsif status.unlisted_visibility?
|
elsif status.unlisted_visibility?
|
||||||
fa_icon('unlock', title: I18n.t('statuses.visibilities.unlisted'))
|
material_symbol('lock_open', title: I18n.t('statuses.visibilities.unlisted'))
|
||||||
elsif status.public_unlisted_visibility?
|
elsif status.public_unlisted_visibility?
|
||||||
fa_icon('cloud', title: I18n.t('statuses.visibilities.public_unlisted'))
|
material_symbol('cloud', title: I18n.t('statuses.visibilities.public_unlisted'))
|
||||||
elsif status.login_visibility?
|
elsif status.login_visibility?
|
||||||
fa_icon('key', title: I18n.t('statuses.visibilities.login'))
|
material_symbol('key', title: I18n.t('statuses.visibilities.login'))
|
||||||
elsif status.private_visibility? || status.limited_visibility?
|
elsif status.private_visibility? || status.limited_visibility?
|
||||||
fa_icon('lock', title: I18n.t('statuses.visibilities.private'))
|
material_symbol('lock', title: I18n.t('statuses.visibilities.private'))
|
||||||
elsif status.direct_visibility?
|
elsif status.direct_visibility?
|
||||||
fa_icon('at', title: I18n.t('statuses.visibilities.direct'))
|
material_symbol('alternate_email', title: I18n.t('statuses.visibilities.direct'))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def interrelationships_icon(relationships, account_id)
|
def interrelationships_icon(relationships, account_id)
|
||||||
if relationships.following[account_id] && relationships.followed_by[account_id]
|
if relationships.following[account_id] && relationships.followed_by[account_id]
|
||||||
fa_icon('exchange', title: I18n.t('relationships.mutual'), class: 'fa-fw active passive')
|
material_symbol('sync_alt', title: I18n.t('relationships.mutual'), class: 'active passive')
|
||||||
elsif relationships.following[account_id]
|
elsif relationships.following[account_id]
|
||||||
fa_icon(locale_direction == 'ltr' ? 'arrow-right' : 'arrow-left', title: I18n.t('relationships.following'), class: 'fa-fw active')
|
material_symbol(locale_direction == 'ltr' ? 'arrow_right_alt' : 'arrow_left_alt', title: I18n.t('relationships.following'), class: 'active')
|
||||||
elsif relationships.followed_by[account_id]
|
elsif relationships.followed_by[account_id]
|
||||||
fa_icon(locale_direction == 'ltr' ? 'arrow-left' : 'arrow-right', title: I18n.t('relationships.followers'), class: 'fa-fw passive')
|
material_symbol(locale_direction == 'ltr' ? 'arrow_left_alt' : 'arrow_right_alt', title: I18n.t('relationships.followers'), class: 'passive')
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -60,19 +60,19 @@ module StatusesHelper
|
||||||
def fa_visibility_icon(status)
|
def fa_visibility_icon(status)
|
||||||
case status.visibility
|
case status.visibility
|
||||||
when 'public'
|
when 'public'
|
||||||
fa_icon 'globe fw'
|
material_symbol 'globe'
|
||||||
when 'unlisted'
|
when 'unlisted'
|
||||||
fa_icon 'unlock fw'
|
material_symbol 'lock_open'
|
||||||
when 'public_unlisted'
|
when 'public_unlisted'
|
||||||
fa_icon 'cloud fw'
|
material_symbol 'cloud'
|
||||||
when 'login'
|
when 'login'
|
||||||
fa_icon 'key fw'
|
material_symbol 'key'
|
||||||
when 'private'
|
when 'private'
|
||||||
fa_icon 'lock fw'
|
material_symbol 'lock'
|
||||||
when 'limited'
|
when 'limited'
|
||||||
fa_icon 'get-pocket fw'
|
material_symbol 'shield'
|
||||||
when 'direct'
|
when 'direct'
|
||||||
fa_icon 'at fw'
|
material_symbol 'alternate_email'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -15,6 +15,7 @@ import type { NotificationGap } from 'mastodon/reducers/notification_groups';
|
||||||
import {
|
import {
|
||||||
selectSettingsNotificationsExcludedTypes,
|
selectSettingsNotificationsExcludedTypes,
|
||||||
selectSettingsNotificationsQuickFilterActive,
|
selectSettingsNotificationsQuickFilterActive,
|
||||||
|
selectSettingsNotificationsShows,
|
||||||
} from 'mastodon/selectors/settings';
|
} from 'mastodon/selectors/settings';
|
||||||
import type { AppDispatch } from 'mastodon/store';
|
import type { AppDispatch } from 'mastodon/store';
|
||||||
import {
|
import {
|
||||||
|
@ -107,7 +108,31 @@ export const fetchNotificationsGap = createDataLoadingThunk(
|
||||||
|
|
||||||
export const processNewNotificationForGroups = createAppAsyncThunk(
|
export const processNewNotificationForGroups = createAppAsyncThunk(
|
||||||
'notificationGroups/processNew',
|
'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]);
|
dispatchAssociatedRecords(dispatch, [notification]);
|
||||||
|
|
||||||
return notification;
|
return notification;
|
||||||
|
|
|
@ -65,6 +65,14 @@ export const NOTIFICATION_REQUEST_DISMISS_REQUEST = 'NOTIFICATION_REQUEST_DISMIS
|
||||||
export const NOTIFICATION_REQUEST_DISMISS_SUCCESS = 'NOTIFICATION_REQUEST_DISMISS_SUCCESS';
|
export const NOTIFICATION_REQUEST_DISMISS_SUCCESS = 'NOTIFICATION_REQUEST_DISMISS_SUCCESS';
|
||||||
export const NOTIFICATION_REQUEST_DISMISS_FAIL = 'NOTIFICATION_REQUEST_DISMISS_FAIL';
|
export const NOTIFICATION_REQUEST_DISMISS_FAIL = 'NOTIFICATION_REQUEST_DISMISS_FAIL';
|
||||||
|
|
||||||
|
export const NOTIFICATION_REQUESTS_ACCEPT_REQUEST = 'NOTIFICATION_REQUESTS_ACCEPT_REQUEST';
|
||||||
|
export const NOTIFICATION_REQUESTS_ACCEPT_SUCCESS = 'NOTIFICATION_REQUESTS_ACCEPT_SUCCESS';
|
||||||
|
export const NOTIFICATION_REQUESTS_ACCEPT_FAIL = 'NOTIFICATION_REQUESTS_ACCEPT_FAIL';
|
||||||
|
|
||||||
|
export const NOTIFICATION_REQUESTS_DISMISS_REQUEST = 'NOTIFICATION_REQUESTS_DISMISS_REQUEST';
|
||||||
|
export const NOTIFICATION_REQUESTS_DISMISS_SUCCESS = 'NOTIFICATION_REQUESTS_DISMISS_SUCCESS';
|
||||||
|
export const NOTIFICATION_REQUESTS_DISMISS_FAIL = 'NOTIFICATION_REQUESTS_DISMISS_FAIL';
|
||||||
|
|
||||||
export const NOTIFICATIONS_FOR_REQUEST_FETCH_REQUEST = 'NOTIFICATIONS_FOR_REQUEST_FETCH_REQUEST';
|
export const NOTIFICATIONS_FOR_REQUEST_FETCH_REQUEST = 'NOTIFICATIONS_FOR_REQUEST_FETCH_REQUEST';
|
||||||
export const NOTIFICATIONS_FOR_REQUEST_FETCH_SUCCESS = 'NOTIFICATIONS_FOR_REQUEST_FETCH_SUCCESS';
|
export const NOTIFICATIONS_FOR_REQUEST_FETCH_SUCCESS = 'NOTIFICATIONS_FOR_REQUEST_FETCH_SUCCESS';
|
||||||
export const NOTIFICATIONS_FOR_REQUEST_FETCH_FAIL = 'NOTIFICATIONS_FOR_REQUEST_FETCH_FAIL';
|
export const NOTIFICATIONS_FOR_REQUEST_FETCH_FAIL = 'NOTIFICATIONS_FOR_REQUEST_FETCH_FAIL';
|
||||||
|
@ -513,6 +521,62 @@ export const dismissNotificationRequestFail = (id, error) => ({
|
||||||
error,
|
error,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
export const acceptNotificationRequests = (ids) => (dispatch, getState) => {
|
||||||
|
const count = ids.reduce((count, id) => count + selectNotificationCountForRequest(getState(), id), 0);
|
||||||
|
dispatch(acceptNotificationRequestsRequest(ids));
|
||||||
|
|
||||||
|
api().post(`/api/v1/notifications/requests/accept`, { id: ids }).then(() => {
|
||||||
|
dispatch(acceptNotificationRequestsSuccess(ids));
|
||||||
|
dispatch(decreasePendingNotificationsCount(count));
|
||||||
|
}).catch(err => {
|
||||||
|
dispatch(acceptNotificationRequestFail(ids, err));
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
export const acceptNotificationRequestsRequest = ids => ({
|
||||||
|
type: NOTIFICATION_REQUESTS_ACCEPT_REQUEST,
|
||||||
|
ids,
|
||||||
|
});
|
||||||
|
|
||||||
|
export const acceptNotificationRequestsSuccess = ids => ({
|
||||||
|
type: NOTIFICATION_REQUESTS_ACCEPT_SUCCESS,
|
||||||
|
ids,
|
||||||
|
});
|
||||||
|
|
||||||
|
export const acceptNotificationRequestsFail = (ids, error) => ({
|
||||||
|
type: NOTIFICATION_REQUESTS_ACCEPT_FAIL,
|
||||||
|
ids,
|
||||||
|
error,
|
||||||
|
});
|
||||||
|
|
||||||
|
export const dismissNotificationRequests = (ids) => (dispatch, getState) => {
|
||||||
|
const count = ids.reduce((count, id) => count + selectNotificationCountForRequest(getState(), id), 0);
|
||||||
|
dispatch(acceptNotificationRequestsRequest(ids));
|
||||||
|
|
||||||
|
api().post(`/api/v1/notifications/requests/dismiss`, { id: ids }).then(() => {
|
||||||
|
dispatch(dismissNotificationRequestsSuccess(ids));
|
||||||
|
dispatch(decreasePendingNotificationsCount(count));
|
||||||
|
}).catch(err => {
|
||||||
|
dispatch(dismissNotificationRequestFail(ids, err));
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
export const dismissNotificationRequestsRequest = ids => ({
|
||||||
|
type: NOTIFICATION_REQUESTS_DISMISS_REQUEST,
|
||||||
|
ids,
|
||||||
|
});
|
||||||
|
|
||||||
|
export const dismissNotificationRequestsSuccess = ids => ({
|
||||||
|
type: NOTIFICATION_REQUESTS_DISMISS_SUCCESS,
|
||||||
|
ids,
|
||||||
|
});
|
||||||
|
|
||||||
|
export const dismissNotificationRequestsFail = (ids, error) => ({
|
||||||
|
type: NOTIFICATION_REQUESTS_DISMISS_FAIL,
|
||||||
|
ids,
|
||||||
|
error,
|
||||||
|
});
|
||||||
|
|
||||||
export const fetchNotificationsForRequest = accountId => (dispatch, getState) => {
|
export const fetchNotificationsForRequest = accountId => (dispatch, getState) => {
|
||||||
const current = getState().getIn(['notificationRequests', 'current']);
|
const current = getState().getIn(['notificationRequests', 'current']);
|
||||||
const params = { account_id: accountId };
|
const params = { account_id: accountId };
|
||||||
|
|
|
@ -105,7 +105,7 @@ export const connectTimelineStream = (timelineId, channelName, params = {}, opti
|
||||||
const notificationJSON = JSON.parse(data.payload);
|
const notificationJSON = JSON.parse(data.payload);
|
||||||
dispatch(updateNotifications(notificationJSON, messages, locale));
|
dispatch(updateNotifications(notificationJSON, messages, locale));
|
||||||
// TODO: remove this once the groups feature replaces the previous one
|
// 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));
|
dispatch(processNewNotificationForGroups(notificationJSON));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -2,8 +2,8 @@ import { apiRequestGet, apiRequestPut } from 'mastodon/api';
|
||||||
import type { NotificationPolicyJSON } from 'mastodon/api_types/notification_policies';
|
import type { NotificationPolicyJSON } from 'mastodon/api_types/notification_policies';
|
||||||
|
|
||||||
export const apiGetNotificationPolicy = () =>
|
export const apiGetNotificationPolicy = () =>
|
||||||
apiRequestGet<NotificationPolicyJSON>('/v1/notifications/policy');
|
apiRequestGet<NotificationPolicyJSON>('v2/notifications/policy');
|
||||||
|
|
||||||
export const apiUpdateNotificationsPolicy = (
|
export const apiUpdateNotificationsPolicy = (
|
||||||
policy: Partial<NotificationPolicyJSON>,
|
policy: Partial<NotificationPolicyJSON>,
|
||||||
) => apiRequestPut<NotificationPolicyJSON>('/v1/notifications/policy', policy);
|
) => apiRequestPut<NotificationPolicyJSON>('v2/notifications/policy', policy);
|
||||||
|
|
|
@ -1,10 +1,13 @@
|
||||||
// See app/serializers/rest/notification_policy_serializer.rb
|
// See app/serializers/rest/notification_policy_serializer.rb
|
||||||
|
|
||||||
|
export type NotificationPolicyValue = 'accept' | 'filter' | 'drop';
|
||||||
|
|
||||||
export interface NotificationPolicyJSON {
|
export interface NotificationPolicyJSON {
|
||||||
filter_not_following: boolean;
|
for_not_following: NotificationPolicyValue;
|
||||||
filter_not_followers: boolean;
|
for_not_followers: NotificationPolicyValue;
|
||||||
filter_new_accounts: boolean;
|
for_new_accounts: NotificationPolicyValue;
|
||||||
filter_private_mentions: boolean;
|
for_private_mentions: NotificationPolicyValue;
|
||||||
|
for_limited_accounts: NotificationPolicyValue;
|
||||||
summary: {
|
summary: {
|
||||||
pending_requests_count: number;
|
pending_requests_count: number;
|
||||||
pending_notifications_count: number;
|
pending_notifications_count: number;
|
||||||
|
|
|
@ -64,6 +64,29 @@ export interface ApiPreviewCardJSON {
|
||||||
authors: ApiPreviewCardAuthorJSON[];
|
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 {
|
export interface ApiStatusJSON {
|
||||||
id: string;
|
id: string;
|
||||||
created_at: string;
|
created_at: string;
|
||||||
|
@ -86,8 +109,7 @@ export interface ApiStatusJSON {
|
||||||
bookmarked?: boolean;
|
bookmarked?: boolean;
|
||||||
pinned?: boolean;
|
pinned?: boolean;
|
||||||
|
|
||||||
// filtered: FilterResult[]
|
filtered?: ApiFilterResultJSON[];
|
||||||
filtered: unknown; // TODO
|
|
||||||
content?: string;
|
content?: string;
|
||||||
text?: string;
|
text?: string;
|
||||||
|
|
||||||
|
|
|
@ -106,7 +106,7 @@ const Account = ({ size = 46, account, onFollow, onBlock, onMute, onMuteNotifica
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
} else if (defaultAction === 'mute') {
|
} else if (defaultAction === 'mute') {
|
||||||
buttons = <Button title={intl.formatMessage(messages.mute)} onClick={handleMute} />;
|
buttons = <Button text={intl.formatMessage(messages.mute)} onClick={handleMute} />;
|
||||||
} else if (defaultAction === 'block') {
|
} else if (defaultAction === 'block') {
|
||||||
buttons = <Button text={intl.formatMessage(messages.block)} onClick={handleBlock} />;
|
buttons = <Button text={intl.formatMessage(messages.block)} onClick={handleBlock} />;
|
||||||
} else if (!account.get('suspended') && !account.get('moved') || following) {
|
} else if (!account.get('suspended') && !account.get('moved') || following) {
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
import classNames from 'classnames';
|
import classNames from 'classnames';
|
||||||
|
|
||||||
|
import CheckIndeterminateSmallIcon from '@/material-icons/400-24px/check_indeterminate_small.svg?react';
|
||||||
import DoneIcon from '@/material-icons/400-24px/done.svg?react';
|
import DoneIcon from '@/material-icons/400-24px/done.svg?react';
|
||||||
|
|
||||||
import { Icon } from './icon';
|
import { Icon } from './icon';
|
||||||
|
@ -7,6 +8,7 @@ import { Icon } from './icon';
|
||||||
interface Props {
|
interface Props {
|
||||||
value: string;
|
value: string;
|
||||||
checked: boolean;
|
checked: boolean;
|
||||||
|
indeterminate: boolean;
|
||||||
name: string;
|
name: string;
|
||||||
onChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
onChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
||||||
label: React.ReactNode;
|
label: React.ReactNode;
|
||||||
|
@ -16,6 +18,7 @@ export const CheckBox: React.FC<Props> = ({
|
||||||
name,
|
name,
|
||||||
value,
|
value,
|
||||||
checked,
|
checked,
|
||||||
|
indeterminate,
|
||||||
onChange,
|
onChange,
|
||||||
label,
|
label,
|
||||||
}) => {
|
}) => {
|
||||||
|
@ -29,8 +32,14 @@ export const CheckBox: React.FC<Props> = ({
|
||||||
onChange={onChange}
|
onChange={onChange}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<span className={classNames('check-box__input', { checked })}>
|
<span
|
||||||
{checked && <Icon id='check' icon={DoneIcon} />}
|
className={classNames('check-box__input', { checked, indeterminate })}
|
||||||
|
>
|
||||||
|
{indeterminate ? (
|
||||||
|
<Icon id='indeterminate' icon={CheckIndeterminateSmallIcon} />
|
||||||
|
) : (
|
||||||
|
checked && <Icon id='check' icon={DoneIcon} />
|
||||||
|
)}
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<span>{label}</span>
|
<span>{label}</span>
|
||||||
|
|
189
app/javascript/mastodon/components/dropdown_selector.tsx
Normal file
189
app/javascript/mastodon/components/dropdown_selector.tsx
Normal file
|
@ -0,0 +1,189 @@
|
||||||
|
import { useCallback, useEffect, useRef, useState } from 'react';
|
||||||
|
|
||||||
|
import classNames from 'classnames';
|
||||||
|
|
||||||
|
import { supportsPassiveEvents } from 'detect-passive-events';
|
||||||
|
|
||||||
|
import InfoIcon from '@/material-icons/400-24px/info.svg?react';
|
||||||
|
|
||||||
|
import type { IconProp } from './icon';
|
||||||
|
import { Icon } from './icon';
|
||||||
|
|
||||||
|
const listenerOptions = supportsPassiveEvents
|
||||||
|
? { passive: true, capture: true }
|
||||||
|
: true;
|
||||||
|
|
||||||
|
export interface SelectItem {
|
||||||
|
value: string;
|
||||||
|
icon?: string;
|
||||||
|
iconComponent?: IconProp;
|
||||||
|
extraIconComponent?: IconProp;
|
||||||
|
text: string;
|
||||||
|
meta: string;
|
||||||
|
extra?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
value: string;
|
||||||
|
classNamePrefix: string;
|
||||||
|
style?: React.CSSProperties;
|
||||||
|
items: SelectItem[];
|
||||||
|
onChange: (value: string) => void;
|
||||||
|
onClose: () => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const DropdownSelector: React.FC<Props> = ({
|
||||||
|
style,
|
||||||
|
items,
|
||||||
|
value,
|
||||||
|
classNamePrefix = 'privacy-dropdown',
|
||||||
|
onClose,
|
||||||
|
onChange,
|
||||||
|
}) => {
|
||||||
|
const nodeRef = useRef<HTMLUListElement>(null);
|
||||||
|
const focusedItemRef = useRef<HTMLLIElement>(null);
|
||||||
|
const [currentValue, setCurrentValue] = useState(value);
|
||||||
|
|
||||||
|
const handleDocumentClick = useCallback(
|
||||||
|
(e: MouseEvent | TouchEvent) => {
|
||||||
|
if (
|
||||||
|
nodeRef.current &&
|
||||||
|
e.target instanceof Node &&
|
||||||
|
!nodeRef.current.contains(e.target)
|
||||||
|
) {
|
||||||
|
onClose();
|
||||||
|
e.stopPropagation();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
[nodeRef, onClose],
|
||||||
|
);
|
||||||
|
|
||||||
|
const handleClick = useCallback(
|
||||||
|
(
|
||||||
|
e: React.MouseEvent<HTMLLIElement> | React.KeyboardEvent<HTMLLIElement>,
|
||||||
|
) => {
|
||||||
|
const value = e.currentTarget.getAttribute('data-index');
|
||||||
|
|
||||||
|
e.preventDefault();
|
||||||
|
|
||||||
|
onClose();
|
||||||
|
if (value) onChange(value);
|
||||||
|
},
|
||||||
|
[onClose, onChange],
|
||||||
|
);
|
||||||
|
|
||||||
|
const handleKeyDown = useCallback(
|
||||||
|
(e: React.KeyboardEvent<HTMLLIElement>) => {
|
||||||
|
const value = e.currentTarget.getAttribute('data-index');
|
||||||
|
const index = items.findIndex((item) => item.value === value);
|
||||||
|
|
||||||
|
let element: Element | null | undefined = null;
|
||||||
|
|
||||||
|
switch (e.key) {
|
||||||
|
case 'Escape':
|
||||||
|
onClose();
|
||||||
|
break;
|
||||||
|
case ' ':
|
||||||
|
case 'Enter':
|
||||||
|
handleClick(e);
|
||||||
|
break;
|
||||||
|
case 'ArrowDown':
|
||||||
|
element =
|
||||||
|
nodeRef.current?.children[index + 1] ??
|
||||||
|
nodeRef.current?.firstElementChild;
|
||||||
|
break;
|
||||||
|
case 'ArrowUp':
|
||||||
|
element =
|
||||||
|
nodeRef.current?.children[index - 1] ??
|
||||||
|
nodeRef.current?.lastElementChild;
|
||||||
|
break;
|
||||||
|
case 'Tab':
|
||||||
|
if (e.shiftKey) {
|
||||||
|
element =
|
||||||
|
nodeRef.current?.children[index + 1] ??
|
||||||
|
nodeRef.current?.firstElementChild;
|
||||||
|
} else {
|
||||||
|
element =
|
||||||
|
nodeRef.current?.children[index - 1] ??
|
||||||
|
nodeRef.current?.lastElementChild;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 'Home':
|
||||||
|
element = nodeRef.current?.firstElementChild;
|
||||||
|
break;
|
||||||
|
case 'End':
|
||||||
|
element = nodeRef.current?.lastElementChild;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (element && element instanceof HTMLElement) {
|
||||||
|
const selectedValue = element.getAttribute('data-index');
|
||||||
|
element.focus();
|
||||||
|
if (selectedValue) setCurrentValue(selectedValue);
|
||||||
|
e.preventDefault();
|
||||||
|
e.stopPropagation();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
[nodeRef, items, onClose, handleClick, setCurrentValue],
|
||||||
|
);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
document.addEventListener('click', handleDocumentClick, { capture: true });
|
||||||
|
document.addEventListener('touchend', handleDocumentClick, listenerOptions);
|
||||||
|
focusedItemRef.current?.focus({ preventScroll: true });
|
||||||
|
|
||||||
|
return () => {
|
||||||
|
document.removeEventListener('click', handleDocumentClick, {
|
||||||
|
capture: true,
|
||||||
|
});
|
||||||
|
document.removeEventListener(
|
||||||
|
'touchend',
|
||||||
|
handleDocumentClick,
|
||||||
|
listenerOptions,
|
||||||
|
);
|
||||||
|
};
|
||||||
|
}, [handleDocumentClick]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ul style={style} role='listbox' ref={nodeRef}>
|
||||||
|
{items.map((item) => (
|
||||||
|
<li
|
||||||
|
role='option'
|
||||||
|
tabIndex={0}
|
||||||
|
key={item.value}
|
||||||
|
data-index={item.value}
|
||||||
|
onKeyDown={handleKeyDown}
|
||||||
|
onClick={handleClick}
|
||||||
|
className={classNames(`${classNamePrefix}__option`, {
|
||||||
|
active: item.value === currentValue,
|
||||||
|
})}
|
||||||
|
aria-selected={item.value === currentValue}
|
||||||
|
ref={item.value === currentValue ? focusedItemRef : null}
|
||||||
|
>
|
||||||
|
{item.icon && item.iconComponent && (
|
||||||
|
<div className={`${classNamePrefix}__option__icon`}>
|
||||||
|
<Icon id={item.icon} icon={item.iconComponent} />
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<div className={`${classNamePrefix}__option__content`}>
|
||||||
|
<strong>{item.text}</strong>
|
||||||
|
{item.meta}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{item.extra && (
|
||||||
|
<div
|
||||||
|
className={`${classNamePrefix}__option__additional`}
|
||||||
|
title={item.extra}
|
||||||
|
>
|
||||||
|
<Icon
|
||||||
|
id='info-circle'
|
||||||
|
icon={item.extraIconComponent ?? InfoIcon}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</ul>
|
||||||
|
);
|
||||||
|
};
|
|
@ -1,5 +1,7 @@
|
||||||
import { useEffect, forwardRef } from 'react';
|
import { useEffect, forwardRef } from 'react';
|
||||||
|
|
||||||
|
import { FormattedMessage } from 'react-intl';
|
||||||
|
|
||||||
import classNames from 'classnames';
|
import classNames from 'classnames';
|
||||||
import { Link } from 'react-router-dom';
|
import { Link } from 'react-router-dom';
|
||||||
|
|
||||||
|
@ -25,6 +27,11 @@ export const HoverCardAccount = forwardRef<
|
||||||
accountId ? state.accounts.get(accountId) : undefined,
|
accountId ? state.accounts.get(accountId) : undefined,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
const note = useAppSelector(
|
||||||
|
(state) =>
|
||||||
|
state.relationships.getIn([accountId, 'note']) as string | undefined,
|
||||||
|
);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (accountId && !account) {
|
if (accountId && !account) {
|
||||||
dispatch(fetchAccount(accountId));
|
dispatch(fetchAccount(accountId));
|
||||||
|
@ -53,6 +60,17 @@ export const HoverCardAccount = forwardRef<
|
||||||
className='hover-card__bio'
|
className='hover-card__bio'
|
||||||
/>
|
/>
|
||||||
<AccountFields fields={account.fields} limit={2} />
|
<AccountFields fields={account.fields} limit={2} />
|
||||||
|
{note && note.length > 0 && (
|
||||||
|
<dl className='hover-card__note'>
|
||||||
|
<dt className='hover-card__note-label'>
|
||||||
|
<FormattedMessage
|
||||||
|
id='account.account_note_header'
|
||||||
|
defaultMessage='Personal note'
|
||||||
|
/>
|
||||||
|
</dt>
|
||||||
|
<dd>{note}</dd>
|
||||||
|
</dl>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className='hover-card__number'>
|
<div className='hover-card__number'>
|
||||||
|
|
|
@ -151,7 +151,7 @@ class AccountNote extends ImmutablePureComponent {
|
||||||
return (
|
return (
|
||||||
<div className='account__header__account-note'>
|
<div className='account__header__account-note'>
|
||||||
<label htmlFor={`account-note-${account.get('id')}`}>
|
<label htmlFor={`account-note-${account.get('id')}`}>
|
||||||
<FormattedMessage id='account.account_note_header' defaultMessage='Note' /> <InlineAlert show={saved} />
|
<FormattedMessage id='account.account_note_header' defaultMessage='Personal note' /> <InlineAlert show={saved} />
|
||||||
</label>
|
</label>
|
||||||
|
|
||||||
<Textarea
|
<Textarea
|
||||||
|
|
|
@ -18,11 +18,10 @@ import PublicIcon from '@/material-icons/400-24px/public.svg?react';
|
||||||
import QuietTimeIcon from '@/material-icons/400-24px/quiet_time.svg?react';
|
import QuietTimeIcon from '@/material-icons/400-24px/quiet_time.svg?react';
|
||||||
import ReplyIcon from '@/material-icons/400-24px/reply.svg?react';
|
import ReplyIcon from '@/material-icons/400-24px/reply.svg?react';
|
||||||
import LimitedIcon from '@/material-icons/400-24px/shield.svg?react';
|
import LimitedIcon from '@/material-icons/400-24px/shield.svg?react';
|
||||||
|
import { DropdownSelector } from 'mastodon/components/dropdown_selector';
|
||||||
import { Icon } from 'mastodon/components/icon';
|
import { Icon } from 'mastodon/components/icon';
|
||||||
import { enabledVisibilites } from 'mastodon/initial_state';
|
import { enabledVisibilites } from 'mastodon/initial_state';
|
||||||
|
|
||||||
import { PrivacyDropdownMenu } from './privacy_dropdown_menu';
|
|
||||||
|
|
||||||
const messages = defineMessages({
|
const messages = defineMessages({
|
||||||
public_short: { id: 'privacy.public.short', defaultMessage: 'Public' },
|
public_short: { id: 'privacy.public.short', defaultMessage: 'Public' },
|
||||||
public_long: { id: 'privacy.public.long', defaultMessage: 'Anyone on and off Mastodon' },
|
public_long: { id: 'privacy.public.long', defaultMessage: 'Anyone on and off Mastodon' },
|
||||||
|
@ -135,7 +134,7 @@ class PrivacyDropdown extends PureComponent {
|
||||||
const { intl: { formatMessage } } = this.props;
|
const { intl: { formatMessage } } = this.props;
|
||||||
|
|
||||||
this.dynamicOptions = [
|
this.dynamicOptions = [
|
||||||
{ icon: 'reply', iconComponent: ReplyIcon, value: 'reply', text: formatMessage(messages.reply_short), meta: formatMessage(messages.reply_long), extra: formatMessage(messages.limited_short), extraIcomComponent: LimitedIcon },
|
{ icon: 'reply', iconComponent: ReplyIcon, value: 'reply', text: formatMessage(messages.reply_short), meta: formatMessage(messages.reply_long), extra: formatMessage(messages.limited_short), extraIconComponent: LimitedIcon },
|
||||||
{ icon: 'ban', iconComponent: BlockIcon, value: 'banned', text: formatMessage(messages.banned_short), meta: formatMessage(messages.banned_long) },
|
{ icon: 'ban', iconComponent: BlockIcon, value: 'banned', text: formatMessage(messages.banned_short), meta: formatMessage(messages.banned_long) },
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -145,8 +144,8 @@ class PrivacyDropdown extends PureComponent {
|
||||||
{ icon: 'key', iconComponent: LoginIcon, value: 'login', text: formatMessage(messages.login_short), meta: formatMessage(messages.login_long) },
|
{ icon: 'key', iconComponent: LoginIcon, value: 'login', text: formatMessage(messages.login_short), meta: formatMessage(messages.login_long) },
|
||||||
{ icon: 'unlock', iconComponent: QuietTimeIcon, value: 'unlisted', text: formatMessage(messages.unlisted_short), meta: formatMessage(messages.unlisted_long), extra: formatMessage(messages.unlisted_extra) },
|
{ icon: 'unlock', iconComponent: QuietTimeIcon, value: 'unlisted', text: formatMessage(messages.unlisted_short), meta: formatMessage(messages.unlisted_long), extra: formatMessage(messages.unlisted_extra) },
|
||||||
{ icon: 'lock', iconComponent: LockIcon, value: 'private', text: formatMessage(messages.private_short), meta: formatMessage(messages.private_long) },
|
{ icon: 'lock', iconComponent: LockIcon, value: 'private', text: formatMessage(messages.private_short), meta: formatMessage(messages.private_long) },
|
||||||
{ icon: 'exchange', iconComponent: MutualIcon, value: 'mutual', text: formatMessage(messages.mutual_short), meta: formatMessage(messages.mutual_long), extra: formatMessage(messages.limited_short), extraIcomComponent: LimitedIcon },
|
{ icon: 'exchange', iconComponent: MutualIcon, value: 'mutual', text: formatMessage(messages.mutual_short), meta: formatMessage(messages.mutual_long), extra: formatMessage(messages.limited_short), extraIconComponent: LimitedIcon },
|
||||||
{ icon: 'user-circle', iconComponent: CircleIcon, value: 'circle', text: formatMessage(messages.circle_short), meta: formatMessage(messages.circle_long), extra: formatMessage(messages.limited_short), extraIcomComponent: LimitedIcon },
|
{ icon: 'user-circle', iconComponent: CircleIcon, value: 'circle', text: formatMessage(messages.circle_short), meta: formatMessage(messages.circle_long), extra: formatMessage(messages.limited_short), extraIconComponent: LimitedIcon },
|
||||||
{ icon: 'at', iconComponent: AlternateEmailIcon, value: 'direct', text: formatMessage(messages.direct_short), meta: formatMessage(messages.direct_long) },
|
{ icon: 'at', iconComponent: AlternateEmailIcon, value: 'direct', text: formatMessage(messages.direct_short), meta: formatMessage(messages.direct_long) },
|
||||||
...this.dynamicOptions,
|
...this.dynamicOptions,
|
||||||
];
|
];
|
||||||
|
@ -219,7 +218,7 @@ class PrivacyDropdown extends PureComponent {
|
||||||
{({ props, placement }) => (
|
{({ props, placement }) => (
|
||||||
<div {...props}>
|
<div {...props}>
|
||||||
<div className={`dropdown-animation privacy-dropdown__dropdown ${placement}`}>
|
<div className={`dropdown-animation privacy-dropdown__dropdown ${placement}`}>
|
||||||
<PrivacyDropdownMenu
|
<DropdownSelector
|
||||||
items={this.options}
|
items={this.options}
|
||||||
value={value}
|
value={value}
|
||||||
onClose={this.handleClose}
|
onClose={this.handleClose}
|
||||||
|
|
|
@ -1,128 +0,0 @@
|
||||||
import PropTypes from 'prop-types';
|
|
||||||
import { useCallback, useEffect, useRef, useState } from 'react';
|
|
||||||
|
|
||||||
import classNames from 'classnames';
|
|
||||||
|
|
||||||
import { supportsPassiveEvents } from 'detect-passive-events';
|
|
||||||
|
|
||||||
import InfoIcon from '@/material-icons/400-24px/info.svg?react';
|
|
||||||
import { Icon } from 'mastodon/components/icon';
|
|
||||||
|
|
||||||
const listenerOptions = supportsPassiveEvents ? { passive: true, capture: true } : true;
|
|
||||||
|
|
||||||
export const PrivacyDropdownMenu = ({ style, items, value, onClose, onChange }) => {
|
|
||||||
const nodeRef = useRef(null);
|
|
||||||
const focusedItemRef = useRef(null);
|
|
||||||
const [currentValue, setCurrentValue] = useState(value);
|
|
||||||
|
|
||||||
const handleDocumentClick = useCallback((e) => {
|
|
||||||
if (nodeRef.current && !nodeRef.current.contains(e.target)) {
|
|
||||||
onClose();
|
|
||||||
e.stopPropagation();
|
|
||||||
}
|
|
||||||
}, [nodeRef, onClose]);
|
|
||||||
|
|
||||||
const handleClick = useCallback((e) => {
|
|
||||||
const value = e.currentTarget.getAttribute('data-index');
|
|
||||||
|
|
||||||
e.preventDefault();
|
|
||||||
|
|
||||||
onClose();
|
|
||||||
onChange(value);
|
|
||||||
}, [onClose, onChange]);
|
|
||||||
|
|
||||||
const handleKeyDown = useCallback((e) => {
|
|
||||||
const value = e.currentTarget.getAttribute('data-index');
|
|
||||||
const index = items.findIndex(item => (item.value === value));
|
|
||||||
|
|
||||||
let element = null;
|
|
||||||
|
|
||||||
switch (e.key) {
|
|
||||||
case 'Escape':
|
|
||||||
onClose();
|
|
||||||
break;
|
|
||||||
case ' ':
|
|
||||||
case 'Enter':
|
|
||||||
handleClick(e);
|
|
||||||
break;
|
|
||||||
case 'ArrowDown':
|
|
||||||
element = nodeRef.current.childNodes[index + 1] || nodeRef.current.firstChild;
|
|
||||||
break;
|
|
||||||
case 'ArrowUp':
|
|
||||||
element = nodeRef.current.childNodes[index - 1] || nodeRef.current.lastChild;
|
|
||||||
break;
|
|
||||||
case 'Tab':
|
|
||||||
if (e.shiftKey) {
|
|
||||||
element = nodeRef.current.childNodes[index + 1] || nodeRef.current.firstChild;
|
|
||||||
} else {
|
|
||||||
element = nodeRef.current.childNodes[index - 1] || nodeRef.current.lastChild;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 'Home':
|
|
||||||
element = nodeRef.current.firstChild;
|
|
||||||
break;
|
|
||||||
case 'End':
|
|
||||||
element = nodeRef.current.lastChild;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (element) {
|
|
||||||
element.focus();
|
|
||||||
setCurrentValue(element.getAttribute('data-index'));
|
|
||||||
e.preventDefault();
|
|
||||||
e.stopPropagation();
|
|
||||||
}
|
|
||||||
}, [nodeRef, items, onClose, handleClick, setCurrentValue]);
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
document.addEventListener('click', handleDocumentClick, { capture: true });
|
|
||||||
document.addEventListener('touchend', handleDocumentClick, listenerOptions);
|
|
||||||
focusedItemRef.current?.focus({ preventScroll: true });
|
|
||||||
|
|
||||||
return () => {
|
|
||||||
document.removeEventListener('click', handleDocumentClick, { capture: true });
|
|
||||||
document.removeEventListener('touchend', handleDocumentClick, listenerOptions);
|
|
||||||
};
|
|
||||||
}, [handleDocumentClick]);
|
|
||||||
|
|
||||||
return (
|
|
||||||
<ul style={{ ...style }} role='listbox' ref={nodeRef}>
|
|
||||||
{items.map(item => (
|
|
||||||
<li
|
|
||||||
role='option'
|
|
||||||
tabIndex={0}
|
|
||||||
key={item.value}
|
|
||||||
data-index={item.value}
|
|
||||||
onKeyDown={handleKeyDown}
|
|
||||||
onClick={handleClick}
|
|
||||||
className={classNames('privacy-dropdown__option', { active: item.value === currentValue })}
|
|
||||||
aria-selected={item.value === currentValue}
|
|
||||||
ref={item.value === currentValue ? focusedItemRef : null}
|
|
||||||
>
|
|
||||||
<div className='privacy-dropdown__option__icon'>
|
|
||||||
<Icon id={item.icon} icon={item.iconComponent} />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className='privacy-dropdown__option__content'>
|
|
||||||
<strong>{item.text}</strong>
|
|
||||||
{item.meta}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{item.extra && (
|
|
||||||
<div className='privacy-dropdown__option__additional' title={item.extra}>
|
|
||||||
<Icon id='info-circle' icon={item.extraIcomComponent ?? InfoIcon} />
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</li>
|
|
||||||
))}
|
|
||||||
</ul>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
PrivacyDropdownMenu.propTypes = {
|
|
||||||
style: PropTypes.object,
|
|
||||||
items: PropTypes.array.isRequired,
|
|
||||||
value: PropTypes.string.isRequired,
|
|
||||||
onClose: PropTypes.func.isRequired,
|
|
||||||
onChange: PropTypes.func.isRequired,
|
|
||||||
};
|
|
|
@ -3,15 +3,21 @@ import { useCallback } from 'react';
|
||||||
|
|
||||||
import { defineMessages, useIntl } from 'react-intl';
|
import { defineMessages, useIntl } from 'react-intl';
|
||||||
|
|
||||||
import { Link } from 'react-router-dom';
|
import classNames from 'classnames';
|
||||||
|
import { Link, useHistory } from 'react-router-dom';
|
||||||
|
|
||||||
import { useSelector, useDispatch } from 'react-redux';
|
import { useSelector, useDispatch } from 'react-redux';
|
||||||
|
|
||||||
import DeleteIcon from '@/material-icons/400-24px/delete.svg?react';
|
import DeleteIcon from '@/material-icons/400-24px/delete.svg?react';
|
||||||
import DoneIcon from '@/material-icons/400-24px/done.svg?react';
|
import MoreHorizIcon from '@/material-icons/400-24px/more_horiz.svg?react';
|
||||||
|
import { initBlockModal } from 'mastodon/actions/blocks';
|
||||||
|
import { initMuteModal } from 'mastodon/actions/mutes';
|
||||||
import { acceptNotificationRequest, dismissNotificationRequest } from 'mastodon/actions/notifications';
|
import { acceptNotificationRequest, dismissNotificationRequest } from 'mastodon/actions/notifications';
|
||||||
|
import { initReport } from 'mastodon/actions/reports';
|
||||||
import { Avatar } from 'mastodon/components/avatar';
|
import { Avatar } from 'mastodon/components/avatar';
|
||||||
|
import { CheckBox } from 'mastodon/components/check_box';
|
||||||
import { IconButton } from 'mastodon/components/icon_button';
|
import { IconButton } from 'mastodon/components/icon_button';
|
||||||
|
import DropdownMenuContainer from 'mastodon/containers/dropdown_menu_container';
|
||||||
import { makeGetAccount } from 'mastodon/selectors';
|
import { makeGetAccount } from 'mastodon/selectors';
|
||||||
import { toCappedNumber } from 'mastodon/utils/numbers';
|
import { toCappedNumber } from 'mastodon/utils/numbers';
|
||||||
|
|
||||||
|
@ -20,12 +26,18 @@ const getAccount = makeGetAccount();
|
||||||
const messages = defineMessages({
|
const messages = defineMessages({
|
||||||
accept: { id: 'notification_requests.accept', defaultMessage: 'Accept' },
|
accept: { id: 'notification_requests.accept', defaultMessage: 'Accept' },
|
||||||
dismiss: { id: 'notification_requests.dismiss', defaultMessage: 'Dismiss' },
|
dismiss: { id: 'notification_requests.dismiss', defaultMessage: 'Dismiss' },
|
||||||
|
view: { id: 'notification_requests.view', defaultMessage: 'View notifications' },
|
||||||
|
mute: { id: 'account.mute', defaultMessage: 'Mute @{name}' },
|
||||||
|
block: { id: 'account.block', defaultMessage: 'Block @{name}' },
|
||||||
|
report: { id: 'status.report', defaultMessage: 'Report @{name}' },
|
||||||
|
more: { id: 'status.more', defaultMessage: 'More' },
|
||||||
});
|
});
|
||||||
|
|
||||||
export const NotificationRequest = ({ id, accountId, notificationsCount }) => {
|
export const NotificationRequest = ({ id, accountId, notificationsCount, checked, showCheckbox, toggleCheck }) => {
|
||||||
const dispatch = useDispatch();
|
const dispatch = useDispatch();
|
||||||
const account = useSelector(state => getAccount(state, accountId));
|
const account = useSelector(state => getAccount(state, accountId));
|
||||||
const intl = useIntl();
|
const intl = useIntl();
|
||||||
|
const { push: historyPush } = useHistory();
|
||||||
|
|
||||||
const handleDismiss = useCallback(() => {
|
const handleDismiss = useCallback(() => {
|
||||||
dispatch(dismissNotificationRequest(id));
|
dispatch(dismissNotificationRequest(id));
|
||||||
|
@ -35,9 +47,51 @@ export const NotificationRequest = ({ id, accountId, notificationsCount }) => {
|
||||||
dispatch(acceptNotificationRequest(id));
|
dispatch(acceptNotificationRequest(id));
|
||||||
}, [dispatch, id]);
|
}, [dispatch, id]);
|
||||||
|
|
||||||
|
const handleMute = useCallback(() => {
|
||||||
|
dispatch(initMuteModal(account));
|
||||||
|
}, [dispatch, account]);
|
||||||
|
|
||||||
|
const handleBlock = useCallback(() => {
|
||||||
|
dispatch(initBlockModal(account));
|
||||||
|
}, [dispatch, account]);
|
||||||
|
|
||||||
|
const handleReport = useCallback(() => {
|
||||||
|
dispatch(initReport(account));
|
||||||
|
}, [dispatch, account]);
|
||||||
|
|
||||||
|
const handleView = useCallback(() => {
|
||||||
|
historyPush(`/notifications/requests/${id}`);
|
||||||
|
}, [historyPush, id]);
|
||||||
|
|
||||||
|
const menu = [
|
||||||
|
{ text: intl.formatMessage(messages.view), action: handleView },
|
||||||
|
null,
|
||||||
|
{ text: intl.formatMessage(messages.accept), action: handleAccept },
|
||||||
|
null,
|
||||||
|
{ text: intl.formatMessage(messages.mute, { name: account.username }), action: handleMute, dangerous: true },
|
||||||
|
{ text: intl.formatMessage(messages.block, { name: account.username }), action: handleBlock, dangerous: true },
|
||||||
|
{ text: intl.formatMessage(messages.report, { name: account.username }), action: handleReport, dangerous: true },
|
||||||
|
];
|
||||||
|
|
||||||
|
const handleCheck = useCallback(() => {
|
||||||
|
toggleCheck(id);
|
||||||
|
}, [toggleCheck, id]);
|
||||||
|
|
||||||
|
const handleClick = useCallback((e) => {
|
||||||
|
if (showCheckbox) {
|
||||||
|
toggleCheck(id);
|
||||||
|
e.preventDefault();
|
||||||
|
e.stopPropagation();
|
||||||
|
}
|
||||||
|
}, [toggleCheck, id, showCheckbox]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className='notification-request'>
|
/* eslint-disable-next-line jsx-a11y/no-static-element-interactions -- this is just a minor affordance, but we will need a comprehensive accessibility pass */
|
||||||
<Link to={`/notifications/requests/${id}`} className='notification-request__link'>
|
<div className={classNames('notification-request', showCheckbox && 'notification-request--forced-checkbox')} onClick={handleClick}>
|
||||||
|
<div className='notification-request__checkbox' aria-hidden={!showCheckbox}>
|
||||||
|
<CheckBox checked={checked} onChange={handleCheck} />
|
||||||
|
</div>
|
||||||
|
<Link to={`/notifications/requests/${id}`} className='notification-request__link' onClick={handleClick} title={account?.acct}>
|
||||||
<Avatar account={account} size={40} counter={toCappedNumber(notificationsCount)} />
|
<Avatar account={account} size={40} counter={toCappedNumber(notificationsCount)} />
|
||||||
|
|
||||||
<div className='notification-request__name'>
|
<div className='notification-request__name'>
|
||||||
|
@ -51,7 +105,13 @@ export const NotificationRequest = ({ id, accountId, notificationsCount }) => {
|
||||||
|
|
||||||
<div className='notification-request__actions'>
|
<div className='notification-request__actions'>
|
||||||
<IconButton iconComponent={DeleteIcon} onClick={handleDismiss} title={intl.formatMessage(messages.dismiss)} />
|
<IconButton iconComponent={DeleteIcon} onClick={handleDismiss} title={intl.formatMessage(messages.dismiss)} />
|
||||||
<IconButton iconComponent={DoneIcon} onClick={handleAccept} title={intl.formatMessage(messages.accept)} />
|
<DropdownMenuContainer
|
||||||
|
items={menu}
|
||||||
|
icons='ellipsis-h'
|
||||||
|
iconComponent={MoreHorizIcon}
|
||||||
|
direction='right'
|
||||||
|
title={intl.formatMessage(messages.more)}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
@ -61,4 +121,7 @@ NotificationRequest.propTypes = {
|
||||||
id: PropTypes.string.isRequired,
|
id: PropTypes.string.isRequired,
|
||||||
accountId: PropTypes.string.isRequired,
|
accountId: PropTypes.string.isRequired,
|
||||||
notificationsCount: PropTypes.string.isRequired,
|
notificationsCount: PropTypes.string.isRequired,
|
||||||
|
checked: PropTypes.bool,
|
||||||
|
showCheckbox: PropTypes.bool,
|
||||||
|
toggleCheck: PropTypes.func,
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,13 +1,52 @@
|
||||||
import { useCallback } from 'react';
|
import { useCallback } from 'react';
|
||||||
|
|
||||||
import { FormattedMessage } from 'react-intl';
|
import { useIntl, defineMessages, FormattedMessage } from 'react-intl';
|
||||||
|
|
||||||
|
import { openModal } from 'mastodon/actions/modal';
|
||||||
import { updateNotificationsPolicy } from 'mastodon/actions/notification_policies';
|
import { updateNotificationsPolicy } from 'mastodon/actions/notification_policies';
|
||||||
|
import type { AppDispatch } from 'mastodon/store';
|
||||||
import { useAppSelector, useAppDispatch } from 'mastodon/store';
|
import { useAppSelector, useAppDispatch } from 'mastodon/store';
|
||||||
|
|
||||||
import { CheckboxWithLabel } from './checkbox_with_label';
|
import { SelectWithLabel } from './select_with_label';
|
||||||
|
|
||||||
|
const messages = defineMessages({
|
||||||
|
accept: { id: 'notifications.policy.accept', defaultMessage: 'Accept' },
|
||||||
|
accept_hint: {
|
||||||
|
id: 'notifications.policy.accept_hint',
|
||||||
|
defaultMessage: 'Show in notifications',
|
||||||
|
},
|
||||||
|
filter: { id: 'notifications.policy.filter', defaultMessage: 'Filter' },
|
||||||
|
filter_hint: {
|
||||||
|
id: 'notifications.policy.filter_hint',
|
||||||
|
defaultMessage: 'Send to filtered notifications inbox',
|
||||||
|
},
|
||||||
|
drop: { id: 'notifications.policy.drop', defaultMessage: 'Ignore' },
|
||||||
|
drop_hint: {
|
||||||
|
id: 'notifications.policy.drop_hint',
|
||||||
|
defaultMessage: 'Send to the void, never to be seen again',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
// TODO: change the following when we change the API
|
||||||
|
const changeFilter = (
|
||||||
|
dispatch: AppDispatch,
|
||||||
|
filterType: string,
|
||||||
|
value: string,
|
||||||
|
) => {
|
||||||
|
if (value === 'drop') {
|
||||||
|
dispatch(
|
||||||
|
openModal({
|
||||||
|
modalType: 'IGNORE_NOTIFICATIONS',
|
||||||
|
modalProps: { filterType },
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
void dispatch(updateNotificationsPolicy({ [filterType]: value }));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
export const PolicyControls: React.FC = () => {
|
export const PolicyControls: React.FC = () => {
|
||||||
|
const intl = useIntl();
|
||||||
const dispatch = useAppDispatch();
|
const dispatch = useAppDispatch();
|
||||||
|
|
||||||
const notificationPolicy = useAppSelector(
|
const notificationPolicy = useAppSelector(
|
||||||
|
@ -15,56 +54,74 @@ export const PolicyControls: React.FC = () => {
|
||||||
);
|
);
|
||||||
|
|
||||||
const handleFilterNotFollowing = useCallback(
|
const handleFilterNotFollowing = useCallback(
|
||||||
(checked: boolean) => {
|
(value: string) => {
|
||||||
void dispatch(
|
changeFilter(dispatch, 'for_not_following', value);
|
||||||
updateNotificationsPolicy({ filter_not_following: checked }),
|
|
||||||
);
|
|
||||||
},
|
},
|
||||||
[dispatch],
|
[dispatch],
|
||||||
);
|
);
|
||||||
|
|
||||||
const handleFilterNotFollowers = useCallback(
|
const handleFilterNotFollowers = useCallback(
|
||||||
(checked: boolean) => {
|
(value: string) => {
|
||||||
void dispatch(
|
changeFilter(dispatch, 'for_not_followers', value);
|
||||||
updateNotificationsPolicy({ filter_not_followers: checked }),
|
|
||||||
);
|
|
||||||
},
|
},
|
||||||
[dispatch],
|
[dispatch],
|
||||||
);
|
);
|
||||||
|
|
||||||
const handleFilterNewAccounts = useCallback(
|
const handleFilterNewAccounts = useCallback(
|
||||||
(checked: boolean) => {
|
(value: string) => {
|
||||||
void dispatch(
|
changeFilter(dispatch, 'for_new_accounts', value);
|
||||||
updateNotificationsPolicy({ filter_new_accounts: checked }),
|
|
||||||
);
|
|
||||||
},
|
},
|
||||||
[dispatch],
|
[dispatch],
|
||||||
);
|
);
|
||||||
|
|
||||||
const handleFilterPrivateMentions = useCallback(
|
const handleFilterPrivateMentions = useCallback(
|
||||||
(checked: boolean) => {
|
(value: string) => {
|
||||||
void dispatch(
|
changeFilter(dispatch, 'for_private_mentions', value);
|
||||||
updateNotificationsPolicy({ filter_private_mentions: checked }),
|
},
|
||||||
);
|
[dispatch],
|
||||||
|
);
|
||||||
|
|
||||||
|
const handleFilterLimitedAccounts = useCallback(
|
||||||
|
(value: string) => {
|
||||||
|
changeFilter(dispatch, 'for_limited_accounts', value);
|
||||||
},
|
},
|
||||||
[dispatch],
|
[dispatch],
|
||||||
);
|
);
|
||||||
|
|
||||||
if (!notificationPolicy) return null;
|
if (!notificationPolicy) return null;
|
||||||
|
|
||||||
|
const options = [
|
||||||
|
{
|
||||||
|
value: 'accept',
|
||||||
|
text: intl.formatMessage(messages.accept),
|
||||||
|
meta: intl.formatMessage(messages.accept_hint),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: 'filter',
|
||||||
|
text: intl.formatMessage(messages.filter),
|
||||||
|
meta: intl.formatMessage(messages.filter_hint),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: 'drop',
|
||||||
|
text: intl.formatMessage(messages.drop),
|
||||||
|
meta: intl.formatMessage(messages.drop_hint),
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<section>
|
<section>
|
||||||
<h3>
|
<h3>
|
||||||
<FormattedMessage
|
<FormattedMessage
|
||||||
id='notifications.policy.title'
|
id='notifications.policy.title'
|
||||||
defaultMessage='Filter out notifications from…'
|
defaultMessage='Manage notifications from…'
|
||||||
/>
|
/>
|
||||||
</h3>
|
</h3>
|
||||||
|
|
||||||
<div className='column-settings__row'>
|
<div className='column-settings__row'>
|
||||||
<CheckboxWithLabel
|
<SelectWithLabel
|
||||||
checked={notificationPolicy.filter_not_following}
|
value={notificationPolicy.for_not_following}
|
||||||
onChange={handleFilterNotFollowing}
|
onChange={handleFilterNotFollowing}
|
||||||
|
options={options}
|
||||||
>
|
>
|
||||||
<strong>
|
<strong>
|
||||||
<FormattedMessage
|
<FormattedMessage
|
||||||
|
@ -78,11 +135,12 @@ export const PolicyControls: React.FC = () => {
|
||||||
defaultMessage='Until you manually approve them'
|
defaultMessage='Until you manually approve them'
|
||||||
/>
|
/>
|
||||||
</span>
|
</span>
|
||||||
</CheckboxWithLabel>
|
</SelectWithLabel>
|
||||||
|
|
||||||
<CheckboxWithLabel
|
<SelectWithLabel
|
||||||
checked={notificationPolicy.filter_not_followers}
|
value={notificationPolicy.for_not_followers}
|
||||||
onChange={handleFilterNotFollowers}
|
onChange={handleFilterNotFollowers}
|
||||||
|
options={options}
|
||||||
>
|
>
|
||||||
<strong>
|
<strong>
|
||||||
<FormattedMessage
|
<FormattedMessage
|
||||||
|
@ -97,11 +155,12 @@ export const PolicyControls: React.FC = () => {
|
||||||
values={{ days: 3 }}
|
values={{ days: 3 }}
|
||||||
/>
|
/>
|
||||||
</span>
|
</span>
|
||||||
</CheckboxWithLabel>
|
</SelectWithLabel>
|
||||||
|
|
||||||
<CheckboxWithLabel
|
<SelectWithLabel
|
||||||
checked={notificationPolicy.filter_new_accounts}
|
value={notificationPolicy.for_new_accounts}
|
||||||
onChange={handleFilterNewAccounts}
|
onChange={handleFilterNewAccounts}
|
||||||
|
options={options}
|
||||||
>
|
>
|
||||||
<strong>
|
<strong>
|
||||||
<FormattedMessage
|
<FormattedMessage
|
||||||
|
@ -116,11 +175,12 @@ export const PolicyControls: React.FC = () => {
|
||||||
values={{ days: 30 }}
|
values={{ days: 30 }}
|
||||||
/>
|
/>
|
||||||
</span>
|
</span>
|
||||||
</CheckboxWithLabel>
|
</SelectWithLabel>
|
||||||
|
|
||||||
<CheckboxWithLabel
|
<SelectWithLabel
|
||||||
checked={notificationPolicy.filter_private_mentions}
|
value={notificationPolicy.for_private_mentions}
|
||||||
onChange={handleFilterPrivateMentions}
|
onChange={handleFilterPrivateMentions}
|
||||||
|
options={options}
|
||||||
>
|
>
|
||||||
<strong>
|
<strong>
|
||||||
<FormattedMessage
|
<FormattedMessage
|
||||||
|
@ -134,7 +194,26 @@ export const PolicyControls: React.FC = () => {
|
||||||
defaultMessage="Filtered unless it's in reply to your own mention or if you follow the sender"
|
defaultMessage="Filtered unless it's in reply to your own mention or if you follow the sender"
|
||||||
/>
|
/>
|
||||||
</span>
|
</span>
|
||||||
</CheckboxWithLabel>
|
</SelectWithLabel>
|
||||||
|
|
||||||
|
<SelectWithLabel
|
||||||
|
value={notificationPolicy.for_limited_accounts}
|
||||||
|
onChange={handleFilterLimitedAccounts}
|
||||||
|
options={options}
|
||||||
|
>
|
||||||
|
<strong>
|
||||||
|
<FormattedMessage
|
||||||
|
id='notifications.policy.filter_limited_accounts_title'
|
||||||
|
defaultMessage='Moderated accounts'
|
||||||
|
/>
|
||||||
|
</strong>
|
||||||
|
<span className='hint'>
|
||||||
|
<FormattedMessage
|
||||||
|
id='notifications.policy.filter_limited_accounts_hint'
|
||||||
|
defaultMessage='Limited by server moderators'
|
||||||
|
/>
|
||||||
|
</span>
|
||||||
|
</SelectWithLabel>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
);
|
);
|
||||||
|
|
|
@ -0,0 +1,153 @@
|
||||||
|
import type { PropsWithChildren } from 'react';
|
||||||
|
import { useCallback, useState, useRef } from 'react';
|
||||||
|
|
||||||
|
import classNames from 'classnames';
|
||||||
|
|
||||||
|
import type { Placement, State as PopperState } from '@popperjs/core';
|
||||||
|
import Overlay from 'react-overlays/Overlay';
|
||||||
|
|
||||||
|
import ArrowDropDownIcon from '@/material-icons/400-24px/arrow_drop_down.svg?react';
|
||||||
|
import type { SelectItem } from 'mastodon/components/dropdown_selector';
|
||||||
|
import { DropdownSelector } from 'mastodon/components/dropdown_selector';
|
||||||
|
import { Icon } from 'mastodon/components/icon';
|
||||||
|
|
||||||
|
interface DropdownProps {
|
||||||
|
value: string;
|
||||||
|
options: SelectItem[];
|
||||||
|
disabled?: boolean;
|
||||||
|
onChange: (value: string) => void;
|
||||||
|
placement?: Placement;
|
||||||
|
}
|
||||||
|
|
||||||
|
const Dropdown: React.FC<DropdownProps> = ({
|
||||||
|
value,
|
||||||
|
options,
|
||||||
|
disabled,
|
||||||
|
onChange,
|
||||||
|
placement: initialPlacement = 'bottom-end',
|
||||||
|
}) => {
|
||||||
|
const activeElementRef = useRef<Element | null>(null);
|
||||||
|
const containerRef = useRef(null);
|
||||||
|
const [isOpen, setOpen] = useState<boolean>(false);
|
||||||
|
const [placement, setPlacement] = useState<Placement>(initialPlacement);
|
||||||
|
|
||||||
|
const handleToggle = useCallback(() => {
|
||||||
|
if (
|
||||||
|
isOpen &&
|
||||||
|
activeElementRef.current &&
|
||||||
|
activeElementRef.current instanceof HTMLElement
|
||||||
|
) {
|
||||||
|
activeElementRef.current.focus({ preventScroll: true });
|
||||||
|
}
|
||||||
|
|
||||||
|
setOpen(!isOpen);
|
||||||
|
}, [isOpen, setOpen]);
|
||||||
|
|
||||||
|
const handleMouseDown = useCallback(() => {
|
||||||
|
if (!isOpen) activeElementRef.current = document.activeElement;
|
||||||
|
}, [isOpen]);
|
||||||
|
|
||||||
|
const handleKeyDown = useCallback(
|
||||||
|
(e: React.KeyboardEvent) => {
|
||||||
|
switch (e.key) {
|
||||||
|
case ' ':
|
||||||
|
case 'Enter':
|
||||||
|
if (!isOpen) activeElementRef.current = document.activeElement;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
[isOpen],
|
||||||
|
);
|
||||||
|
|
||||||
|
const handleClose = useCallback(() => {
|
||||||
|
if (
|
||||||
|
isOpen &&
|
||||||
|
activeElementRef.current &&
|
||||||
|
activeElementRef.current instanceof HTMLElement
|
||||||
|
)
|
||||||
|
activeElementRef.current.focus({ preventScroll: true });
|
||||||
|
setOpen(false);
|
||||||
|
}, [isOpen]);
|
||||||
|
|
||||||
|
const handleOverlayEnter = useCallback(
|
||||||
|
(state: Partial<PopperState>) => {
|
||||||
|
if (state.placement) setPlacement(state.placement);
|
||||||
|
},
|
||||||
|
[setPlacement],
|
||||||
|
);
|
||||||
|
|
||||||
|
const valueOption = options.find((item) => item.value === value);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div ref={containerRef}>
|
||||||
|
<button
|
||||||
|
type='button'
|
||||||
|
onClick={handleToggle}
|
||||||
|
onMouseDown={handleMouseDown}
|
||||||
|
onKeyDown={handleKeyDown}
|
||||||
|
disabled={disabled}
|
||||||
|
className={classNames('dropdown-button', { active: isOpen })}
|
||||||
|
>
|
||||||
|
<span className='dropdown-button__label'>{valueOption?.text}</span>
|
||||||
|
<Icon id='down' icon={ArrowDropDownIcon} />
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<Overlay
|
||||||
|
show={isOpen}
|
||||||
|
offset={[5, 5]}
|
||||||
|
placement={placement}
|
||||||
|
flip
|
||||||
|
target={containerRef}
|
||||||
|
popperConfig={{ strategy: 'fixed', onFirstUpdate: handleOverlayEnter }}
|
||||||
|
>
|
||||||
|
{({ props, placement }) => (
|
||||||
|
<div {...props}>
|
||||||
|
<div
|
||||||
|
className={`dropdown-animation privacy-dropdown__dropdown ${placement}`}
|
||||||
|
>
|
||||||
|
<DropdownSelector
|
||||||
|
items={options}
|
||||||
|
value={value}
|
||||||
|
onClose={handleClose}
|
||||||
|
onChange={onChange}
|
||||||
|
classNamePrefix='privacy-dropdown'
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</Overlay>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
value: string;
|
||||||
|
options: SelectItem[];
|
||||||
|
disabled?: boolean;
|
||||||
|
onChange: (value: string) => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const SelectWithLabel: React.FC<PropsWithChildren<Props>> = ({
|
||||||
|
value,
|
||||||
|
options,
|
||||||
|
disabled,
|
||||||
|
children,
|
||||||
|
onChange,
|
||||||
|
}) => {
|
||||||
|
return (
|
||||||
|
<label className='app-form__toggle'>
|
||||||
|
<div className='app-form__toggle__label'>{children}</div>
|
||||||
|
|
||||||
|
<div className='app-form__toggle__toggle'>
|
||||||
|
<div>
|
||||||
|
<Dropdown
|
||||||
|
value={value}
|
||||||
|
onChange={onChange}
|
||||||
|
disabled={disabled}
|
||||||
|
options={options}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</label>
|
||||||
|
);
|
||||||
|
};
|
|
@ -1,7 +1,7 @@
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import { useRef, useCallback, useEffect } from 'react';
|
import { useRef, useCallback, useEffect } from 'react';
|
||||||
|
|
||||||
import { defineMessages, useIntl } from 'react-intl';
|
import { defineMessages, useIntl, FormattedMessage } from 'react-intl';
|
||||||
|
|
||||||
import { Helmet } from 'react-helmet';
|
import { Helmet } from 'react-helmet';
|
||||||
|
|
||||||
|
@ -90,6 +90,23 @@ export const NotificationRequest = ({ multiColumn, params: { id } }) => {
|
||||||
|
|
||||||
const columnTitle = intl.formatMessage(messages.title, { name: account?.get('display_name') || account?.get('username') });
|
const columnTitle = intl.formatMessage(messages.title, { name: account?.get('display_name') || account?.get('username') });
|
||||||
|
|
||||||
|
let explainer = null;
|
||||||
|
|
||||||
|
if (account?.limited) {
|
||||||
|
const isLocal = account.acct.indexOf('@') === -1;
|
||||||
|
explainer = (
|
||||||
|
<div className='dismissable-banner'>
|
||||||
|
<div className='dismissable-banner__message'>
|
||||||
|
{isLocal ? (
|
||||||
|
<FormattedMessage id='notification_requests.explainer_for_limited_account' defaultMessage='Notifications from this account have been filtered because the account has been limited by a moderator.' />
|
||||||
|
) : (
|
||||||
|
<FormattedMessage id='notification_requests.explainer_for_limited_remote_account' defaultMessage='Notifications from this account have been filtered because the account or its server has been limited by a moderator.' />
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Column bindToDocument={!multiColumn} ref={columnRef} label={columnTitle}>
|
<Column bindToDocument={!multiColumn} ref={columnRef} label={columnTitle}>
|
||||||
<ColumnHeader
|
<ColumnHeader
|
||||||
|
@ -109,6 +126,7 @@ export const NotificationRequest = ({ multiColumn, params: { id } }) => {
|
||||||
|
|
||||||
<SensitiveMediaContextProvider hideMediaByDefault>
|
<SensitiveMediaContextProvider hideMediaByDefault>
|
||||||
<ScrollableList
|
<ScrollableList
|
||||||
|
prepend={explainer}
|
||||||
scrollKey={`notification_requests/${id}`}
|
scrollKey={`notification_requests/${id}`}
|
||||||
trackScroll={!multiColumn}
|
trackScroll={!multiColumn}
|
||||||
bindToDocument={!multiColumn}
|
bindToDocument={!multiColumn}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import { useRef, useCallback, useEffect } from 'react';
|
import { useRef, useCallback, useEffect, useState } from 'react';
|
||||||
|
|
||||||
import { defineMessages, useIntl, FormattedMessage } from 'react-intl';
|
import { defineMessages, useIntl, FormattedMessage } from 'react-intl';
|
||||||
|
|
||||||
|
@ -8,11 +8,15 @@ import { Helmet } from 'react-helmet';
|
||||||
import { useSelector, useDispatch } from 'react-redux';
|
import { useSelector, useDispatch } from 'react-redux';
|
||||||
|
|
||||||
import InventoryIcon from '@/material-icons/400-24px/inventory_2.svg?react';
|
import InventoryIcon from '@/material-icons/400-24px/inventory_2.svg?react';
|
||||||
import { fetchNotificationRequests, expandNotificationRequests } from 'mastodon/actions/notifications';
|
import MoreHorizIcon from '@/material-icons/400-24px/more_horiz.svg?react';
|
||||||
|
import { openModal } from 'mastodon/actions/modal';
|
||||||
|
import { fetchNotificationRequests, expandNotificationRequests, acceptNotificationRequests, dismissNotificationRequests } from 'mastodon/actions/notifications';
|
||||||
import { changeSetting } from 'mastodon/actions/settings';
|
import { changeSetting } from 'mastodon/actions/settings';
|
||||||
|
import { CheckBox } from 'mastodon/components/check_box';
|
||||||
import Column from 'mastodon/components/column';
|
import Column from 'mastodon/components/column';
|
||||||
import ColumnHeader from 'mastodon/components/column_header';
|
import ColumnHeader from 'mastodon/components/column_header';
|
||||||
import ScrollableList from 'mastodon/components/scrollable_list';
|
import ScrollableList from 'mastodon/components/scrollable_list';
|
||||||
|
import DropdownMenuContainer from 'mastodon/containers/dropdown_menu_container';
|
||||||
|
|
||||||
import { NotificationRequest } from './components/notification_request';
|
import { NotificationRequest } from './components/notification_request';
|
||||||
import { PolicyControls } from './components/policy_controls';
|
import { PolicyControls } from './components/policy_controls';
|
||||||
|
@ -20,7 +24,18 @@ import SettingToggle from './components/setting_toggle';
|
||||||
|
|
||||||
const messages = defineMessages({
|
const messages = defineMessages({
|
||||||
title: { id: 'notification_requests.title', defaultMessage: 'Filtered notifications' },
|
title: { id: 'notification_requests.title', defaultMessage: 'Filtered notifications' },
|
||||||
maximize: { id: 'notification_requests.maximize', defaultMessage: 'Maximize' }
|
maximize: { id: 'notification_requests.maximize', defaultMessage: 'Maximize' },
|
||||||
|
more: { id: 'status.more', defaultMessage: 'More' },
|
||||||
|
acceptAll: { id: 'notification_requests.accept_all', defaultMessage: 'Accept all' },
|
||||||
|
dismissAll: { id: 'notification_requests.dismiss_all', defaultMessage: 'Dismiss all' },
|
||||||
|
acceptMultiple: { id: 'notification_requests.accept_multiple', defaultMessage: '{count, plural, one {Accept # request} other {Accept # requests}}' },
|
||||||
|
dismissMultiple: { id: 'notification_requests.dismiss_multiple', defaultMessage: '{count, plural, one {Dismiss # request} other {Dismiss # requests}}' },
|
||||||
|
confirmAcceptAllTitle: { id: 'notification_requests.confirm_accept_all.title', defaultMessage: 'Accept notification requests?' },
|
||||||
|
confirmAcceptAllMessage: { id: 'notification_requests.confirm_accept_all.message', defaultMessage: 'You are about to accept {count, plural, one {one notification request} other {# notification requests}}. Are you sure you want to proceed?' },
|
||||||
|
confirmAcceptAllButton: { id: 'notification_requests.confirm_accept_all.button', defaultMessage: 'Accept all' },
|
||||||
|
confirmDismissAllTitle: { id: 'notification_requests.confirm_dismiss_all.title', defaultMessage: 'Dismiss notification requests?' },
|
||||||
|
confirmDismissAllMessage: { id: 'notification_requests.confirm_dismiss_all.message', defaultMessage: "You are about to dismiss {count, plural, one {one notification request} other {# notification requests}}. You won't be able to easily access {count, plural, one {it} other {them}} again. Are you sure you want to proceed?" },
|
||||||
|
confirmDismissAllButton: { id: 'notification_requests.confirm_dismiss_all.button', defaultMessage: 'Dismiss all' },
|
||||||
});
|
});
|
||||||
|
|
||||||
const ColumnSettings = () => {
|
const ColumnSettings = () => {
|
||||||
|
@ -55,6 +70,124 @@ const ColumnSettings = () => {
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const SelectRow = ({selectAllChecked, toggleSelectAll, selectedItems, selectionMode, setSelectionMode}) => {
|
||||||
|
const intl = useIntl();
|
||||||
|
const dispatch = useDispatch();
|
||||||
|
|
||||||
|
const notificationRequests = useSelector(state => state.getIn(['notificationRequests', 'items']));
|
||||||
|
|
||||||
|
const selectedCount = selectedItems.length;
|
||||||
|
|
||||||
|
const handleAcceptAll = useCallback(() => {
|
||||||
|
const items = notificationRequests.map(request => request.get('id')).toArray();
|
||||||
|
dispatch(openModal({
|
||||||
|
modalType: 'CONFIRM',
|
||||||
|
modalProps: {
|
||||||
|
title: intl.formatMessage(messages.confirmAcceptAllTitle),
|
||||||
|
message: intl.formatMessage(messages.confirmAcceptAllMessage, { count: items.length }),
|
||||||
|
confirm: intl.formatMessage(messages.confirmAcceptAllButton),
|
||||||
|
onConfirm: () =>
|
||||||
|
dispatch(acceptNotificationRequests(items)),
|
||||||
|
},
|
||||||
|
}));
|
||||||
|
}, [dispatch, intl, notificationRequests]);
|
||||||
|
|
||||||
|
const handleDismissAll = useCallback(() => {
|
||||||
|
const items = notificationRequests.map(request => request.get('id')).toArray();
|
||||||
|
dispatch(openModal({
|
||||||
|
modalType: 'CONFIRM',
|
||||||
|
modalProps: {
|
||||||
|
title: intl.formatMessage(messages.confirmDismissAllTitle),
|
||||||
|
message: intl.formatMessage(messages.confirmDismissAllMessage, { count: items.length }),
|
||||||
|
confirm: intl.formatMessage(messages.confirmDismissAllButton),
|
||||||
|
onConfirm: () =>
|
||||||
|
dispatch(dismissNotificationRequests(items)),
|
||||||
|
},
|
||||||
|
}));
|
||||||
|
}, [dispatch, intl, notificationRequests]);
|
||||||
|
|
||||||
|
const handleAcceptMultiple = useCallback(() => {
|
||||||
|
dispatch(openModal({
|
||||||
|
modalType: 'CONFIRM',
|
||||||
|
modalProps: {
|
||||||
|
title: intl.formatMessage(messages.confirmAcceptAllTitle),
|
||||||
|
message: intl.formatMessage(messages.confirmAcceptAllMessage, { count: selectedItems.length }),
|
||||||
|
confirm: intl.formatMessage(messages.confirmAcceptAllButton),
|
||||||
|
onConfirm: () =>
|
||||||
|
dispatch(acceptNotificationRequests(selectedItems)),
|
||||||
|
},
|
||||||
|
}));
|
||||||
|
}, [dispatch, intl, selectedItems]);
|
||||||
|
|
||||||
|
const handleDismissMultiple = useCallback(() => {
|
||||||
|
dispatch(openModal({
|
||||||
|
modalType: 'CONFIRM',
|
||||||
|
modalProps: {
|
||||||
|
title: intl.formatMessage(messages.confirmDismissAllTitle),
|
||||||
|
message: intl.formatMessage(messages.confirmDismissAllMessage, { count: selectedItems.length }),
|
||||||
|
confirm: intl.formatMessage(messages.confirmDismissAllButton),
|
||||||
|
onConfirm: () =>
|
||||||
|
dispatch(dismissNotificationRequests(selectedItems)),
|
||||||
|
},
|
||||||
|
}));
|
||||||
|
}, [dispatch, intl, selectedItems]);
|
||||||
|
|
||||||
|
const handleToggleSelectionMode = useCallback(() => {
|
||||||
|
setSelectionMode((mode) => !mode);
|
||||||
|
}, [setSelectionMode]);
|
||||||
|
|
||||||
|
const menu = selectedCount === 0 ?
|
||||||
|
[
|
||||||
|
{ text: intl.formatMessage(messages.acceptAll), action: handleAcceptAll },
|
||||||
|
{ text: intl.formatMessage(messages.dismissAll), action: handleDismissAll },
|
||||||
|
] : [
|
||||||
|
{ text: intl.formatMessage(messages.acceptMultiple, { count: selectedCount }), action: handleAcceptMultiple },
|
||||||
|
{ text: intl.formatMessage(messages.dismissMultiple, { count: selectedCount }), action: handleDismissMultiple },
|
||||||
|
];
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className='column-header__select-row'>
|
||||||
|
{selectionMode && (
|
||||||
|
<div className='column-header__select-row__checkbox'>
|
||||||
|
<CheckBox checked={selectAllChecked} indeterminate={selectedCount > 0 && !selectAllChecked} onChange={toggleSelectAll} />
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
<div className='column-header__select-row__selection-mode'>
|
||||||
|
<button className='text-btn' tabIndex={0} onClick={handleToggleSelectionMode}>
|
||||||
|
{selectionMode ? (
|
||||||
|
<FormattedMessage id='notification_requests.exit_selection_mode' defaultMessage='Cancel' />
|
||||||
|
) :
|
||||||
|
(
|
||||||
|
<FormattedMessage id='notification_requests.enter_selection_mode' defaultMessage='Select' />
|
||||||
|
)}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
{selectedCount > 0 &&
|
||||||
|
<div className='column-header__select-row__selected-count'>
|
||||||
|
{selectedCount} selected
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
<div className='column-header__select-row__actions'>
|
||||||
|
<DropdownMenuContainer
|
||||||
|
items={menu}
|
||||||
|
icons='ellipsis-h'
|
||||||
|
iconComponent={MoreHorizIcon}
|
||||||
|
direction='right'
|
||||||
|
title={intl.formatMessage(messages.more)}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
SelectRow.propTypes = {
|
||||||
|
selectAllChecked: PropTypes.func.isRequired,
|
||||||
|
toggleSelectAll: PropTypes.func.isRequired,
|
||||||
|
selectedItems: PropTypes.arrayOf(PropTypes.string).isRequired,
|
||||||
|
selectionMode: PropTypes.bool,
|
||||||
|
setSelectionMode: PropTypes.func.isRequired,
|
||||||
|
};
|
||||||
|
|
||||||
export const NotificationRequests = ({ multiColumn }) => {
|
export const NotificationRequests = ({ multiColumn }) => {
|
||||||
const columnRef = useRef();
|
const columnRef = useRef();
|
||||||
const intl = useIntl();
|
const intl = useIntl();
|
||||||
|
@ -63,10 +196,40 @@ export const NotificationRequests = ({ multiColumn }) => {
|
||||||
const notificationRequests = useSelector(state => state.getIn(['notificationRequests', 'items']));
|
const notificationRequests = useSelector(state => state.getIn(['notificationRequests', 'items']));
|
||||||
const hasMore = useSelector(state => !!state.getIn(['notificationRequests', 'next']));
|
const hasMore = useSelector(state => !!state.getIn(['notificationRequests', 'next']));
|
||||||
|
|
||||||
|
const [selectionMode, setSelectionMode] = useState(false);
|
||||||
|
const [checkedRequestIds, setCheckedRequestIds] = useState([]);
|
||||||
|
const [selectAllChecked, setSelectAllChecked] = useState(false);
|
||||||
|
|
||||||
const handleHeaderClick = useCallback(() => {
|
const handleHeaderClick = useCallback(() => {
|
||||||
columnRef.current?.scrollTop();
|
columnRef.current?.scrollTop();
|
||||||
}, [columnRef]);
|
}, [columnRef]);
|
||||||
|
|
||||||
|
const handleCheck = useCallback(id => {
|
||||||
|
setCheckedRequestIds(ids => {
|
||||||
|
const position = ids.indexOf(id);
|
||||||
|
|
||||||
|
if(position > -1)
|
||||||
|
ids.splice(position, 1);
|
||||||
|
else
|
||||||
|
ids.push(id);
|
||||||
|
|
||||||
|
setSelectAllChecked(ids.length === notificationRequests.size);
|
||||||
|
|
||||||
|
return [...ids];
|
||||||
|
});
|
||||||
|
}, [setCheckedRequestIds, notificationRequests]);
|
||||||
|
|
||||||
|
const toggleSelectAll = useCallback(() => {
|
||||||
|
setSelectAllChecked(checked => {
|
||||||
|
if(checked)
|
||||||
|
setCheckedRequestIds([]);
|
||||||
|
else
|
||||||
|
setCheckedRequestIds(notificationRequests.map(request => request.get('id')).toArray());
|
||||||
|
|
||||||
|
return !checked;
|
||||||
|
});
|
||||||
|
}, [notificationRequests]);
|
||||||
|
|
||||||
const handleLoadMore = useCallback(() => {
|
const handleLoadMore = useCallback(() => {
|
||||||
dispatch(expandNotificationRequests());
|
dispatch(expandNotificationRequests());
|
||||||
}, [dispatch]);
|
}, [dispatch]);
|
||||||
|
@ -84,6 +247,8 @@ export const NotificationRequests = ({ multiColumn }) => {
|
||||||
onClick={handleHeaderClick}
|
onClick={handleHeaderClick}
|
||||||
multiColumn={multiColumn}
|
multiColumn={multiColumn}
|
||||||
showBackButton
|
showBackButton
|
||||||
|
appendContent={
|
||||||
|
<SelectRow selectionMode={selectionMode} setSelectionMode={setSelectionMode} selectAllChecked={selectAllChecked} toggleSelectAll={toggleSelectAll} selectedItems={checkedRequestIds} />}
|
||||||
>
|
>
|
||||||
<ColumnSettings />
|
<ColumnSettings />
|
||||||
</ColumnHeader>
|
</ColumnHeader>
|
||||||
|
@ -104,6 +269,9 @@ export const NotificationRequests = ({ multiColumn }) => {
|
||||||
id={request.get('id')}
|
id={request.get('id')}
|
||||||
accountId={request.get('account')}
|
accountId={request.get('account')}
|
||||||
notificationsCount={request.get('notifications_count')}
|
notificationsCount={request.get('notifications_count')}
|
||||||
|
showCheckbox={selectionMode}
|
||||||
|
checked={checkedRequestIds.includes(request.get('id'))}
|
||||||
|
toggleCheck={handleCheck}
|
||||||
/>
|
/>
|
||||||
))}
|
))}
|
||||||
</ScrollableList>
|
</ScrollableList>
|
||||||
|
|
|
@ -2,26 +2,33 @@ import { FormattedMessage } from 'react-intl';
|
||||||
|
|
||||||
import AlternateEmailIcon from '@/material-icons/400-24px/alternate_email.svg?react';
|
import AlternateEmailIcon from '@/material-icons/400-24px/alternate_email.svg?react';
|
||||||
import ReplyIcon from '@/material-icons/400-24px/reply-fill.svg?react';
|
import ReplyIcon from '@/material-icons/400-24px/reply-fill.svg?react';
|
||||||
import type { StatusVisibility } from 'mastodon/api_types/statuses';
|
import { me } from 'mastodon/initial_state';
|
||||||
import type { NotificationGroupMention } from 'mastodon/models/notification_group';
|
import type { NotificationGroupMention } from 'mastodon/models/notification_group';
|
||||||
|
import type { Status } from 'mastodon/models/status';
|
||||||
import { useAppSelector } from 'mastodon/store';
|
import { useAppSelector } from 'mastodon/store';
|
||||||
|
|
||||||
import type { LabelRenderer } from './notification_group_with_status';
|
import type { LabelRenderer } from './notification_group_with_status';
|
||||||
import { NotificationWithStatus } from './notification_with_status';
|
import { NotificationWithStatus } from './notification_with_status';
|
||||||
|
|
||||||
const labelRenderer: LabelRenderer = (values) => (
|
const mentionLabelRenderer: LabelRenderer = () => (
|
||||||
|
<FormattedMessage id='notification.label.mention' defaultMessage='Mention' />
|
||||||
|
);
|
||||||
|
|
||||||
|
const privateMentionLabelRenderer: LabelRenderer = () => (
|
||||||
<FormattedMessage
|
<FormattedMessage
|
||||||
id='notification.mention'
|
id='notification.label.private_mention'
|
||||||
defaultMessage='{name} mentioned you'
|
defaultMessage='Private mention'
|
||||||
values={values}
|
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|
||||||
const privateMentionLabelRenderer: LabelRenderer = (values) => (
|
const replyLabelRenderer: LabelRenderer = () => (
|
||||||
|
<FormattedMessage id='notification.label.reply' defaultMessage='Reply' />
|
||||||
|
);
|
||||||
|
|
||||||
|
const privateReplyLabelRenderer: LabelRenderer = () => (
|
||||||
<FormattedMessage
|
<FormattedMessage
|
||||||
id='notification.private_mention'
|
id='notification.label.private_reply'
|
||||||
defaultMessage='{name} privately mentioned you'
|
defaultMessage='Private reply'
|
||||||
values={values}
|
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -29,27 +36,30 @@ export const NotificationMention: React.FC<{
|
||||||
notification: NotificationGroupMention;
|
notification: NotificationGroupMention;
|
||||||
unread: boolean;
|
unread: boolean;
|
||||||
}> = ({ notification, unread }) => {
|
}> = ({ notification, unread }) => {
|
||||||
const statusVisibility = useAppSelector(
|
const [isDirect, isReply] = useAppSelector((state) => {
|
||||||
(state) =>
|
const status = state.statuses.get(notification.statusId) as Status;
|
||||||
state.statuses.getIn([
|
|
||||||
notification.statusId,
|
return [
|
||||||
'visibility',
|
status.get('visibility') === 'direct',
|
||||||
]) as StatusVisibility,
|
status.get('in_reply_to_account_id') === me,
|
||||||
);
|
] as const;
|
||||||
|
});
|
||||||
|
|
||||||
|
let labelRenderer = mentionLabelRenderer;
|
||||||
|
|
||||||
|
if (isReply && isDirect) labelRenderer = privateReplyLabelRenderer;
|
||||||
|
else if (isReply) labelRenderer = replyLabelRenderer;
|
||||||
|
else if (isDirect) labelRenderer = privateMentionLabelRenderer;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<NotificationWithStatus
|
<NotificationWithStatus
|
||||||
type='mention'
|
type='mention'
|
||||||
icon={statusVisibility === 'direct' ? AlternateEmailIcon : ReplyIcon}
|
icon={isReply ? ReplyIcon : AlternateEmailIcon}
|
||||||
iconId='reply'
|
iconId='reply'
|
||||||
accountIds={notification.sampleAccountIds}
|
accountIds={notification.sampleAccountIds}
|
||||||
count={notification.notifications_count}
|
count={notification.notifications_count}
|
||||||
statusId={notification.statusId}
|
statusId={notification.statusId}
|
||||||
labelRenderer={
|
labelRenderer={labelRenderer}
|
||||||
statusVisibility === 'direct'
|
|
||||||
? privateMentionLabelRenderer
|
|
||||||
: labelRenderer
|
|
||||||
}
|
|
||||||
unread={unread}
|
unread={unread}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|
|
@ -4,8 +4,6 @@ import { defineMessages, FormattedMessage, useIntl } from 'react-intl';
|
||||||
|
|
||||||
import { Helmet } from 'react-helmet';
|
import { Helmet } from 'react-helmet';
|
||||||
|
|
||||||
import { createSelector } from '@reduxjs/toolkit';
|
|
||||||
|
|
||||||
import { useDebouncedCallback } from 'use-debounce';
|
import { useDebouncedCallback } from 'use-debounce';
|
||||||
|
|
||||||
import DoneAllIcon from '@/material-icons/400-24px/done_all.svg?react';
|
import DoneAllIcon from '@/material-icons/400-24px/done_all.svg?react';
|
||||||
|
@ -26,16 +24,14 @@ import type { NotificationGap } from 'mastodon/reducers/notification_groups';
|
||||||
import {
|
import {
|
||||||
selectUnreadNotificationGroupsCount,
|
selectUnreadNotificationGroupsCount,
|
||||||
selectPendingNotificationGroupsCount,
|
selectPendingNotificationGroupsCount,
|
||||||
|
selectAnyPendingNotification,
|
||||||
|
selectNotificationGroups,
|
||||||
} from 'mastodon/selectors/notifications';
|
} from 'mastodon/selectors/notifications';
|
||||||
import {
|
import {
|
||||||
selectNeedsNotificationPermission,
|
selectNeedsNotificationPermission,
|
||||||
selectSettingsNotificationsExcludedTypes,
|
|
||||||
selectSettingsNotificationsQuickFilterActive,
|
|
||||||
selectSettingsNotificationsQuickFilterShow,
|
|
||||||
selectSettingsNotificationsShowUnread,
|
selectSettingsNotificationsShowUnread,
|
||||||
} from 'mastodon/selectors/settings';
|
} from 'mastodon/selectors/settings';
|
||||||
import { useAppDispatch, useAppSelector } from 'mastodon/store';
|
import { useAppDispatch, useAppSelector } from 'mastodon/store';
|
||||||
import type { RootState } from 'mastodon/store';
|
|
||||||
|
|
||||||
import { addColumn, removeColumn, moveColumn } from '../../actions/columns';
|
import { addColumn, removeColumn, moveColumn } from '../../actions/columns';
|
||||||
import { submitMarkers } from '../../actions/markers';
|
import { submitMarkers } from '../../actions/markers';
|
||||||
|
@ -61,41 +57,19 @@ const messages = defineMessages({
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const getNotifications = createSelector(
|
|
||||||
[
|
|
||||||
selectSettingsNotificationsQuickFilterShow,
|
|
||||||
selectSettingsNotificationsQuickFilterActive,
|
|
||||||
selectSettingsNotificationsExcludedTypes,
|
|
||||||
(state: RootState) => state.notificationGroups.groups,
|
|
||||||
],
|
|
||||||
(showFilterBar, allowedType, excludedTypes, notifications) => {
|
|
||||||
if (!showFilterBar || allowedType === 'all') {
|
|
||||||
// used if user changed the notification settings after loading the notifications from the server
|
|
||||||
// otherwise a list of notifications will come pre-filtered from the backend
|
|
||||||
// we need to turn it off for FilterBar in order not to block ourselves from seeing a specific category
|
|
||||||
return notifications.filter(
|
|
||||||
(item) => item.type === 'gap' || !excludedTypes.includes(item.type),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return notifications.filter(
|
|
||||||
(item) => item.type === 'gap' || allowedType === item.type,
|
|
||||||
);
|
|
||||||
},
|
|
||||||
);
|
|
||||||
|
|
||||||
export const Notifications: React.FC<{
|
export const Notifications: React.FC<{
|
||||||
columnId?: string;
|
columnId?: string;
|
||||||
multiColumn?: boolean;
|
multiColumn?: boolean;
|
||||||
}> = ({ columnId, multiColumn }) => {
|
}> = ({ columnId, multiColumn }) => {
|
||||||
const intl = useIntl();
|
const intl = useIntl();
|
||||||
const notifications = useAppSelector(getNotifications);
|
const notifications = useAppSelector(selectNotificationGroups);
|
||||||
const dispatch = useAppDispatch();
|
const dispatch = useAppDispatch();
|
||||||
const isLoading = useAppSelector((s) => s.notificationGroups.isLoading);
|
const isLoading = useAppSelector((s) => s.notificationGroups.isLoading);
|
||||||
const hasMore = notifications.at(-1)?.type === 'gap';
|
const hasMore = notifications.at(-1)?.type === 'gap';
|
||||||
|
|
||||||
const lastReadId = useAppSelector((s) =>
|
const lastReadId = useAppSelector((s) =>
|
||||||
selectSettingsNotificationsShowUnread(s)
|
selectSettingsNotificationsShowUnread(s)
|
||||||
? s.notificationGroups.lastReadId
|
? s.notificationGroups.readMarkerId
|
||||||
: '0',
|
: '0',
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -105,11 +79,13 @@ export const Notifications: React.FC<{
|
||||||
selectUnreadNotificationGroupsCount,
|
selectUnreadNotificationGroupsCount,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
const anyPendingNotification = useAppSelector(selectAnyPendingNotification);
|
||||||
|
|
||||||
const isUnread = unreadNotificationsCount > 0;
|
const isUnread = unreadNotificationsCount > 0;
|
||||||
|
|
||||||
const canMarkAsRead =
|
const canMarkAsRead =
|
||||||
useAppSelector(selectSettingsNotificationsShowUnread) &&
|
useAppSelector(selectSettingsNotificationsShowUnread) &&
|
||||||
unreadNotificationsCount > 0;
|
anyPendingNotification;
|
||||||
|
|
||||||
const needsNotificationPermission = useAppSelector(
|
const needsNotificationPermission = useAppSelector(
|
||||||
selectNeedsNotificationPermission,
|
selectNeedsNotificationPermission,
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
|
|
||||||
import { defineMessages, injectIntl } from 'react-intl';
|
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
||||||
|
|
||||||
import classNames from 'classnames';
|
import classNames from 'classnames';
|
||||||
import { Helmet } from 'react-helmet';
|
import { Helmet } from 'react-helmet';
|
||||||
|
@ -18,6 +18,7 @@ import VisibilityIcon from '@/material-icons/400-24px/visibility.svg?react';
|
||||||
import VisibilityOffIcon from '@/material-icons/400-24px/visibility_off.svg?react';
|
import VisibilityOffIcon from '@/material-icons/400-24px/visibility_off.svg?react';
|
||||||
import { Icon } from 'mastodon/components/icon';
|
import { Icon } from 'mastodon/components/icon';
|
||||||
import { LoadingIndicator } from 'mastodon/components/loading_indicator';
|
import { LoadingIndicator } from 'mastodon/components/loading_indicator';
|
||||||
|
import { TimelineHint } from 'mastodon/components/timeline_hint';
|
||||||
import ScrollContainer from 'mastodon/containers/scroll_container';
|
import ScrollContainer from 'mastodon/containers/scroll_container';
|
||||||
import BundleColumnError from 'mastodon/features/ui/components/bundle_column_error';
|
import BundleColumnError from 'mastodon/features/ui/components/bundle_column_error';
|
||||||
import { identityContextPropShape, withIdentity } from 'mastodon/identity_context';
|
import { identityContextPropShape, withIdentity } from 'mastodon/identity_context';
|
||||||
|
@ -670,7 +671,7 @@ class Status extends ImmutablePureComponent {
|
||||||
};
|
};
|
||||||
|
|
||||||
render () {
|
render () {
|
||||||
let ancestors, descendants, references;
|
let ancestors, descendants, references, remoteHint;
|
||||||
const { isLoading, status, ancestorsIds, descendantsIds, referenceIds, intl, domain, multiColumn, pictureInPicture } = this.props;
|
const { isLoading, status, ancestorsIds, descendantsIds, referenceIds, intl, domain, multiColumn, pictureInPicture } = this.props;
|
||||||
const { fullscreen } = this.state;
|
const { fullscreen } = this.state;
|
||||||
|
|
||||||
|
@ -703,6 +704,10 @@ class Status extends ImmutablePureComponent {
|
||||||
const isLocal = status.getIn(['account', 'acct'], '').indexOf('@') === -1;
|
const isLocal = status.getIn(['account', 'acct'], '').indexOf('@') === -1;
|
||||||
const isIndexable = !status.getIn(['account', 'noindex']);
|
const isIndexable = !status.getIn(['account', 'noindex']);
|
||||||
|
|
||||||
|
if (!isLocal) {
|
||||||
|
remoteHint = <TimelineHint url={status.get('url')} resource={<FormattedMessage id='timeline_hint.resources.replies' defaultMessage='Some replies' />} />;
|
||||||
|
}
|
||||||
|
|
||||||
const handlers = {
|
const handlers = {
|
||||||
moveUp: this.handleHotkeyMoveUp,
|
moveUp: this.handleHotkeyMoveUp,
|
||||||
moveDown: this.handleHotkeyMoveDown,
|
moveDown: this.handleHotkeyMoveDown,
|
||||||
|
@ -779,6 +784,7 @@ class Status extends ImmutablePureComponent {
|
||||||
</HotKeys>
|
</HotKeys>
|
||||||
|
|
||||||
{descendants}
|
{descendants}
|
||||||
|
{remoteHint}
|
||||||
</div>
|
</div>
|
||||||
</ScrollContainer>
|
</ScrollContainer>
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,108 @@
|
||||||
|
import PropTypes from 'prop-types';
|
||||||
|
import { useCallback } from 'react';
|
||||||
|
|
||||||
|
import { FormattedMessage } from 'react-intl';
|
||||||
|
|
||||||
|
import { useDispatch } from 'react-redux';
|
||||||
|
|
||||||
|
import InventoryIcon from '@/material-icons/400-24px/inventory_2.svg?react';
|
||||||
|
import PersonAlertIcon from '@/material-icons/400-24px/person_alert.svg?react';
|
||||||
|
import ShieldQuestionIcon from '@/material-icons/400-24px/shield_question.svg?react';
|
||||||
|
import { closeModal } from 'mastodon/actions/modal';
|
||||||
|
import { updateNotificationsPolicy } from 'mastodon/actions/notification_policies';
|
||||||
|
import { Button } from 'mastodon/components/button';
|
||||||
|
import { Icon } from 'mastodon/components/icon';
|
||||||
|
|
||||||
|
export const IgnoreNotificationsModal = ({ filterType }) => {
|
||||||
|
const dispatch = useDispatch();
|
||||||
|
|
||||||
|
const handleClick = useCallback(() => {
|
||||||
|
dispatch(closeModal({ modalType: undefined, ignoreFocus: false }));
|
||||||
|
void dispatch(updateNotificationsPolicy({ [filterType]: 'drop' }));
|
||||||
|
}, [dispatch, filterType]);
|
||||||
|
|
||||||
|
const handleSecondaryClick = useCallback(() => {
|
||||||
|
dispatch(closeModal({ modalType: undefined, ignoreFocus: false }));
|
||||||
|
void dispatch(updateNotificationsPolicy({ [filterType]: 'filter' }));
|
||||||
|
}, [dispatch, filterType]);
|
||||||
|
|
||||||
|
const handleCancel = useCallback(() => {
|
||||||
|
dispatch(closeModal({ modalType: undefined, ignoreFocus: false }));
|
||||||
|
}, [dispatch]);
|
||||||
|
|
||||||
|
let title = null;
|
||||||
|
|
||||||
|
switch(filterType) {
|
||||||
|
case 'for_not_following':
|
||||||
|
title = <FormattedMessage id='ignore_notifications_modal.not_following_title' defaultMessage="Ignore notifications from people you don't follow?" />;
|
||||||
|
break;
|
||||||
|
case 'for_not_followers':
|
||||||
|
title = <FormattedMessage id='ignore_notifications_modal.not_followers_title' defaultMessage='Ignore notifications from people not following you?' />;
|
||||||
|
break;
|
||||||
|
case 'for_new_accounts':
|
||||||
|
title = <FormattedMessage id='ignore_notifications_modal.new_accounts_title' defaultMessage='Ignore notifications from new accounts?' />;
|
||||||
|
break;
|
||||||
|
case 'for_private_mentions':
|
||||||
|
title = <FormattedMessage id='ignore_notifications_modal.private_mentions_title' defaultMessage='Ignore notifications from unsolicited Private Mentions?' />;
|
||||||
|
break;
|
||||||
|
case 'for_limited_accounts':
|
||||||
|
title = <FormattedMessage id='ignore_notifications_modal.limited_accounts_title' defaultMessage='Ignore notifications from moderated accounts?' />;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className='modal-root__modal safety-action-modal'>
|
||||||
|
<div className='safety-action-modal__top'>
|
||||||
|
<div className='safety-action-modal__header'>
|
||||||
|
<h1>{title}</h1>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<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 separately' /></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<div className='safety-action-modal__bullet-points__icon'><Icon icon={PersonAlertIcon} /></div>
|
||||||
|
<div><FormattedMessage id='ignore_notifications_modal.filter_to_act_users' defaultMessage="You'll still be able to accept, reject, or report users" /></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<div className='safety-action-modal__bullet-points__icon'><Icon icon={ShieldQuestionIcon} /></div>
|
||||||
|
<div><FormattedMessage id='ignore_notifications_modal.filter_to_avoid_confusion' defaultMessage='Filtering helps avoid potential confusion' /></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<FormattedMessage id='ignore_notifications_modal.disclaimer' defaultMessage="Mastodon cannot inform users that you've ignored their notifications. Ignoring notifications will not stop the messages themselves from being sent." />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div className='safety-action-modal__bottom'>
|
||||||
|
<div className='safety-action-modal__actions'>
|
||||||
|
<Button onClick={handleSecondaryClick} secondary>
|
||||||
|
<FormattedMessage id='ignore_notifications_modal.filter_instead' defaultMessage='Filter instead' />
|
||||||
|
</Button>
|
||||||
|
|
||||||
|
<div className='spacer' />
|
||||||
|
|
||||||
|
<button onClick={handleCancel} className='link-button'>
|
||||||
|
<FormattedMessage id='confirmation_modal.cancel' defaultMessage='Cancel' />
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<button onClick={handleClick} className='link-button'>
|
||||||
|
<FormattedMessage id='ignore_notifications_modal.ignore' defaultMessage='Ignore notifications' />
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
IgnoreNotificationsModal.propTypes = {
|
||||||
|
filterType: PropTypes.string.isRequired,
|
||||||
|
};
|
||||||
|
|
||||||
|
export default IgnoreNotificationsModal;
|
|
@ -22,6 +22,7 @@ import {
|
||||||
InteractionModal,
|
InteractionModal,
|
||||||
SubscribedLanguagesModal,
|
SubscribedLanguagesModal,
|
||||||
ClosedRegistrationsModal,
|
ClosedRegistrationsModal,
|
||||||
|
IgnoreNotificationsModal,
|
||||||
} from 'mastodon/features/ui/util/async-components';
|
} from 'mastodon/features/ui/util/async-components';
|
||||||
import { getScrollbarWidth } from 'mastodon/utils/scrollbar';
|
import { getScrollbarWidth } from 'mastodon/utils/scrollbar';
|
||||||
|
|
||||||
|
@ -80,6 +81,7 @@ export const MODAL_COMPONENTS = {
|
||||||
'SUBSCRIBED_LANGUAGES': SubscribedLanguagesModal,
|
'SUBSCRIBED_LANGUAGES': SubscribedLanguagesModal,
|
||||||
'INTERACTION': InteractionModal,
|
'INTERACTION': InteractionModal,
|
||||||
'CLOSED_REGISTRATIONS': ClosedRegistrationsModal,
|
'CLOSED_REGISTRATIONS': ClosedRegistrationsModal,
|
||||||
|
'IGNORE_NOTIFICATIONS': IgnoreNotificationsModal,
|
||||||
};
|
};
|
||||||
|
|
||||||
export default class ModalRoot extends PureComponent {
|
export default class ModalRoot extends PureComponent {
|
||||||
|
|
|
@ -178,6 +178,10 @@ export function ReportModal () {
|
||||||
return import(/* webpackChunkName: "modals/report_modal" */'../components/report_modal');
|
return import(/* webpackChunkName: "modals/report_modal" */'../components/report_modal');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function IgnoreNotificationsModal () {
|
||||||
|
return import(/* webpackChunkName: "modals/domain_block_modal" */'../components/ignore_notifications_modal');
|
||||||
|
}
|
||||||
|
|
||||||
export function MediaGallery () {
|
export function MediaGallery () {
|
||||||
return import(/* webpackChunkName: "status/media_gallery" */'../../../components/media_gallery');
|
return import(/* webpackChunkName: "status/media_gallery" */'../../../components/media_gallery');
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
"about.not_available": "Hierdie inligting is nie op hierdie bediener beskikbaar gestel nie.",
|
"about.not_available": "Hierdie inligting is nie op hierdie bediener beskikbaar gestel nie.",
|
||||||
"about.powered_by": "Gedesentraliseerde sosiale media aangedryf deur {mastodon}",
|
"about.powered_by": "Gedesentraliseerde sosiale media aangedryf deur {mastodon}",
|
||||||
"about.rules": "Bedienerreëls",
|
"about.rules": "Bedienerreëls",
|
||||||
"account.account_note_header": "Nota",
|
|
||||||
"account.add_or_remove_from_list": "Voeg by of verwyder van lyste",
|
"account.add_or_remove_from_list": "Voeg by of verwyder van lyste",
|
||||||
"account.badges.bot": "Bot",
|
"account.badges.bot": "Bot",
|
||||||
"account.badges.group": "Groep",
|
"account.badges.group": "Groep",
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
"about.not_available": "Esta información no ye disponible en este servidor.",
|
"about.not_available": "Esta información no ye disponible en este servidor.",
|
||||||
"about.powered_by": "Retz socials descentralizaus con tecnolochía de {mastodon}",
|
"about.powered_by": "Retz socials descentralizaus con tecnolochía de {mastodon}",
|
||||||
"about.rules": "Reglas d'o servidor",
|
"about.rules": "Reglas d'o servidor",
|
||||||
"account.account_note_header": "Nota",
|
|
||||||
"account.add_or_remove_from_list": "Adhibir u eliminar de listas",
|
"account.add_or_remove_from_list": "Adhibir u eliminar de listas",
|
||||||
"account.badges.bot": "Bot",
|
"account.badges.bot": "Bot",
|
||||||
"account.badges.group": "Grupo",
|
"account.badges.group": "Grupo",
|
||||||
|
@ -337,7 +336,6 @@
|
||||||
"notification.admin.sign_up": "{name} se rechistró",
|
"notification.admin.sign_up": "{name} se rechistró",
|
||||||
"notification.follow": "{name} t'empecipió a seguir",
|
"notification.follow": "{name} t'empecipió a seguir",
|
||||||
"notification.follow_request": "{name} ha solicitau seguir-te",
|
"notification.follow_request": "{name} ha solicitau seguir-te",
|
||||||
"notification.mention": "{name} t'ha mencionau",
|
|
||||||
"notification.own_poll": "La tuya enqüesta ha rematau",
|
"notification.own_poll": "La tuya enqüesta ha rematau",
|
||||||
"notification.reblog": "{name} ha retutau la tuya publicación",
|
"notification.reblog": "{name} ha retutau la tuya publicación",
|
||||||
"notification.status": "{name} acaba de publicar",
|
"notification.status": "{name} acaba de publicar",
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
"about.not_available": "لم يتم توفير هذه المعلومات على هذا الخادم.",
|
"about.not_available": "لم يتم توفير هذه المعلومات على هذا الخادم.",
|
||||||
"about.powered_by": "شبكة اجتماعية لامركزية مدعومة من {mastodon}",
|
"about.powered_by": "شبكة اجتماعية لامركزية مدعومة من {mastodon}",
|
||||||
"about.rules": "قواعد الخادم",
|
"about.rules": "قواعد الخادم",
|
||||||
"account.account_note_header": "مُلاحظة",
|
|
||||||
"account.add_or_remove_from_list": "الإضافة أو الإزالة من القائمة",
|
"account.add_or_remove_from_list": "الإضافة أو الإزالة من القائمة",
|
||||||
"account.badges.bot": "آلي",
|
"account.badges.bot": "آلي",
|
||||||
"account.badges.group": "فريق",
|
"account.badges.group": "فريق",
|
||||||
|
@ -465,7 +464,6 @@
|
||||||
"notification.favourite": "أضاف {name} منشورك إلى مفضلته",
|
"notification.favourite": "أضاف {name} منشورك إلى مفضلته",
|
||||||
"notification.follow": "يتابعك {name}",
|
"notification.follow": "يتابعك {name}",
|
||||||
"notification.follow_request": "لقد طلب {name} متابعتك",
|
"notification.follow_request": "لقد طلب {name} متابعتك",
|
||||||
"notification.mention": "{name} ذكرك",
|
|
||||||
"notification.moderation-warning.learn_more": "اعرف المزيد",
|
"notification.moderation-warning.learn_more": "اعرف المزيد",
|
||||||
"notification.moderation_warning": "لقد تلقيت تحذيرًا بالإشراف",
|
"notification.moderation_warning": "لقد تلقيت تحذيرًا بالإشراف",
|
||||||
"notification.moderation_warning.action_delete_statuses": "تم إزالة بعض مشاركاتك.",
|
"notification.moderation_warning.action_delete_statuses": "تم إزالة بعض مشاركاتك.",
|
||||||
|
@ -529,7 +527,6 @@
|
||||||
"notifications.policy.filter_not_following_title": "أشخاص لا تتابعهم",
|
"notifications.policy.filter_not_following_title": "أشخاص لا تتابعهم",
|
||||||
"notifications.policy.filter_private_mentions_hint": "تمت تصفيته إلا إذا أن يكون ردًا على ذكرك أو إذا كنت تتابع الحساب",
|
"notifications.policy.filter_private_mentions_hint": "تمت تصفيته إلا إذا أن يكون ردًا على ذكرك أو إذا كنت تتابع الحساب",
|
||||||
"notifications.policy.filter_private_mentions_title": "إشارات خاصة غير مرغوب فيها",
|
"notifications.policy.filter_private_mentions_title": "إشارات خاصة غير مرغوب فيها",
|
||||||
"notifications.policy.title": "تصفية الإشعارات من…",
|
|
||||||
"notifications_permission_banner.enable": "تفعيل إشعارات سطح المكتب",
|
"notifications_permission_banner.enable": "تفعيل إشعارات سطح المكتب",
|
||||||
"notifications_permission_banner.how_to_control": "لتلقي الإشعارات عندما لا يكون ماستدون مفتوح، قم بتفعيل إشعارات سطح المكتب، يمكنك التحكم بدقة في أنواع التفاعلات التي تولد إشعارات سطح المكتب من خلال زر الـ{icon} أعلاه بمجرد تفعيلها.",
|
"notifications_permission_banner.how_to_control": "لتلقي الإشعارات عندما لا يكون ماستدون مفتوح، قم بتفعيل إشعارات سطح المكتب، يمكنك التحكم بدقة في أنواع التفاعلات التي تولد إشعارات سطح المكتب من خلال زر الـ{icon} أعلاه بمجرد تفعيلها.",
|
||||||
"notifications_permission_banner.title": "لا تفوت شيئاً أبداً",
|
"notifications_permission_banner.title": "لا تفوت شيئاً أبداً",
|
||||||
|
|
|
@ -11,15 +11,13 @@
|
||||||
"about.not_available": "Esta información nun ta disponible nesti sirvidor.",
|
"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.powered_by": "Una rede social descentralizada que tien la teunoloxía de {mastodon}",
|
||||||
"about.rules": "Normes del sirvidor",
|
"about.rules": "Normes del sirvidor",
|
||||||
"account.account_note_header": "Nota",
|
"account.account_note_header": "Nota personal",
|
||||||
"account.add_or_remove_from_list": "Amestar o quitar de les llistes",
|
"account.add_or_remove_from_list": "Amestar o quitar de les llistes",
|
||||||
"account.badges.group": "Grupu",
|
"account.badges.group": "Grupu",
|
||||||
"account.block": "Bloquiar a @{name}",
|
"account.block": "Bloquiar a @{name}",
|
||||||
"account.block_domain": "Bloquiar el dominiu {domain}",
|
"account.block_domain": "Bloquiar el dominiu {domain}",
|
||||||
"account.block_short": "Bloquiar",
|
|
||||||
"account.blocked": "Perfil bloquiáu",
|
"account.blocked": "Perfil bloquiáu",
|
||||||
"account.browse_more_on_origin_server": "Restolar más nel perfil orixinal",
|
"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.direct": "Mentar a @{name} per privao",
|
||||||
"account.disable_notifications": "Dexar d'avisame cuando @{name} espublice artículos",
|
"account.disable_notifications": "Dexar d'avisame cuando @{name} espublice artículos",
|
||||||
"account.domain_blocked": "Dominiu bloquiáu",
|
"account.domain_blocked": "Dominiu bloquiáu",
|
||||||
|
@ -31,9 +29,7 @@
|
||||||
"account.follow": "Siguir",
|
"account.follow": "Siguir",
|
||||||
"account.followers": "Siguidores",
|
"account.followers": "Siguidores",
|
||||||
"account.followers.empty": "Naide sigue a esti perfil.",
|
"account.followers.empty": "Naide sigue a esti perfil.",
|
||||||
"account.following": "Siguiendo",
|
|
||||||
"account.follows.empty": "Esti perfil nun sigue a naide.",
|
"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.hide_reblogs": "Anubrir los artículos compartíos de @{name}",
|
||||||
"account.in_memoriam": "N'alcordanza.",
|
"account.in_memoriam": "N'alcordanza.",
|
||||||
"account.joined_short": "Data de xunión",
|
"account.joined_short": "Data de xunión",
|
||||||
|
@ -42,15 +38,16 @@
|
||||||
"account.mention": "Mentar a @{name}",
|
"account.mention": "Mentar a @{name}",
|
||||||
"account.moved_to": "{name} indicó qu'agora la so cuenta nueva ye:",
|
"account.moved_to": "{name} indicó qu'agora la so cuenta nueva ye:",
|
||||||
"account.mute": "Desactivar los avisos de @{name}",
|
"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.open_original_page": "Abrir la páxina orixinal",
|
||||||
"account.posts": "Artículos",
|
"account.posts": "Artículos",
|
||||||
"account.posts_with_replies": "Artículos y rempuestes",
|
"account.posts_with_replies": "Artículos y rempuestes",
|
||||||
"account.report": "Informar de @{name}",
|
"account.report": "Informar de @{name}",
|
||||||
"account.requested_follow": "{name} solicitó siguite",
|
"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.show_reblogs": "Amosar los artículos compartíos de @{name}",
|
||||||
"account.unblock": "Desbloquiar a @{name}",
|
"account.unblock": "Desbloquiar a @{name}",
|
||||||
"account.unblock_domain": "Desbloquiar el dominiu «{domain}»",
|
"account.unblock_domain": "Desbloquiar el dominiu «{domain}»",
|
||||||
"account.unblock_short": "Desbloquiar",
|
|
||||||
"account.unendorse": "Dexar de destacar nel perfil",
|
"account.unendorse": "Dexar de destacar nel perfil",
|
||||||
"account.unfollow": "Dexar de siguir",
|
"account.unfollow": "Dexar de siguir",
|
||||||
"account.unmute": "Activar los avisos de @{name}",
|
"account.unmute": "Activar los avisos de @{name}",
|
||||||
|
@ -151,7 +148,6 @@
|
||||||
"empty_column.account_timeline": "¡Equí nun hai nengún artículu!",
|
"empty_column.account_timeline": "¡Equí nun hai nengún artículu!",
|
||||||
"empty_column.blocks": "Nun bloquiesti a nengún perfil.",
|
"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.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.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.domain_blocks": "Nun hai nengún dominiu bloquiáu.",
|
||||||
"empty_column.explore_statuses": "Agora nun hai nada en tendencia. ¡Volvi equí dempués!",
|
"empty_column.explore_statuses": "Agora nun hai nada en tendencia. ¡Volvi equí dempués!",
|
||||||
|
@ -187,6 +183,7 @@
|
||||||
"filter_modal.select_filter.subtitle": "Usa una categoría esistente o créala",
|
"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.select_filter.title": "Peñerar esti artículu",
|
||||||
"filter_modal.title.status": "Peñera d'un artículu",
|
"filter_modal.title.status": "Peñera d'un artículu",
|
||||||
|
"firehose.all": "Tolos sirvidores",
|
||||||
"firehose.local": "Esti sirvidor",
|
"firehose.local": "Esti sirvidor",
|
||||||
"firehose.remote": "Otros sirvidores",
|
"firehose.remote": "Otros sirvidores",
|
||||||
"follow_request.authorize": "Autorizar",
|
"follow_request.authorize": "Autorizar",
|
||||||
|
@ -196,6 +193,7 @@
|
||||||
"follow_suggestions.friends_of_friends_longer": "Ye popular ente los perfiles que sigues",
|
"follow_suggestions.friends_of_friends_longer": "Ye popular ente los perfiles que sigues",
|
||||||
"follow_suggestions.personalized_suggestion": "Suxerencia personalizada",
|
"follow_suggestions.personalized_suggestion": "Suxerencia personalizada",
|
||||||
"follow_suggestions.popular_suggestion": "Suxerencia popular",
|
"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.similar_to_recently_followed_longer": "Aseméyase a los perfiles que siguiesti apocayá",
|
||||||
"follow_suggestions.view_all": "Ver too",
|
"follow_suggestions.view_all": "Ver too",
|
||||||
"follow_suggestions.who_to_follow": "A quién siguir",
|
"follow_suggestions.who_to_follow": "A quién siguir",
|
||||||
|
@ -297,7 +295,6 @@
|
||||||
"notification.admin.sign_up": "{name} rexistróse",
|
"notification.admin.sign_up": "{name} rexistróse",
|
||||||
"notification.follow": "{name} siguióte",
|
"notification.follow": "{name} siguióte",
|
||||||
"notification.follow_request": "{name} solicitó siguite",
|
"notification.follow_request": "{name} solicitó siguite",
|
||||||
"notification.mention": "{name} mentóte",
|
|
||||||
"notification.reblog": "{name} compartió'l to artículu",
|
"notification.reblog": "{name} compartió'l to artículu",
|
||||||
"notification.status": "{name} ta acabante d'espublizar",
|
"notification.status": "{name} ta acabante d'espublizar",
|
||||||
"notification.update": "{name} editó un artículu",
|
"notification.update": "{name} editó un artículu",
|
||||||
|
@ -355,7 +352,6 @@
|
||||||
"relative_time.seconds": "{number} s",
|
"relative_time.seconds": "{number} s",
|
||||||
"relative_time.today": "güei",
|
"relative_time.today": "güei",
|
||||||
"reply_indicator.cancel": "Encaboxar",
|
"reply_indicator.cancel": "Encaboxar",
|
||||||
"reply_indicator.poll": "Encuesta",
|
|
||||||
"report.block": "Bloquiar",
|
"report.block": "Bloquiar",
|
||||||
"report.categories.spam": "Spam",
|
"report.categories.spam": "Spam",
|
||||||
"report.categories.violation": "El conteníu incumple una o más normes del sirvidor",
|
"report.categories.violation": "El conteníu incumple una o más normes del sirvidor",
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
"about.not_available": "Дадзеная інфармацыя не дасяжная на гэтым серверы.",
|
"about.not_available": "Дадзеная інфармацыя не дасяжная на гэтым серверы.",
|
||||||
"about.powered_by": "Дэцэнтралізаваная сацыяльная сетка, створаная {mastodon}",
|
"about.powered_by": "Дэцэнтралізаваная сацыяльная сетка, створаная {mastodon}",
|
||||||
"about.rules": "Правілы сервера",
|
"about.rules": "Правілы сервера",
|
||||||
"account.account_note_header": "Нататка",
|
|
||||||
"account.add_or_remove_from_list": "Дадаць або выдаліць са спісаў",
|
"account.add_or_remove_from_list": "Дадаць або выдаліць са спісаў",
|
||||||
"account.badges.bot": "Бот",
|
"account.badges.bot": "Бот",
|
||||||
"account.badges.group": "Група",
|
"account.badges.group": "Група",
|
||||||
|
@ -482,7 +481,6 @@
|
||||||
"notification.favourite": "Ваш допіс упадабаны {name}",
|
"notification.favourite": "Ваш допіс упадабаны {name}",
|
||||||
"notification.follow": "{name} падпісаўся на вас",
|
"notification.follow": "{name} падпісаўся на вас",
|
||||||
"notification.follow_request": "{name} адправіў запыт на падпіску",
|
"notification.follow_request": "{name} адправіў запыт на падпіску",
|
||||||
"notification.mention": "{name} згадаў вас",
|
|
||||||
"notification.moderation-warning.learn_more": "Даведацца больш",
|
"notification.moderation-warning.learn_more": "Даведацца больш",
|
||||||
"notification.moderation_warning": "Вы атрымалі папярэджанне аб мадэрацыі",
|
"notification.moderation_warning": "Вы атрымалі папярэджанне аб мадэрацыі",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Некаторыя вашыя допісы былі выдаленыя.",
|
"notification.moderation_warning.action_delete_statuses": "Некаторыя вашыя допісы былі выдаленыя.",
|
||||||
|
@ -494,7 +492,6 @@
|
||||||
"notification.moderation_warning.action_suspend": "Ваш уліковы запіс быў прыпынены.",
|
"notification.moderation_warning.action_suspend": "Ваш уліковы запіс быў прыпынены.",
|
||||||
"notification.own_poll": "Ваша апытанне скончылася",
|
"notification.own_poll": "Ваша апытанне скончылася",
|
||||||
"notification.poll": "Апытанне, дзе вы прынялі ўдзел, скончылася",
|
"notification.poll": "Апытанне, дзе вы прынялі ўдзел, скончылася",
|
||||||
"notification.private_mention": "{name} згадаў вас асабіста",
|
|
||||||
"notification.reblog": "{name} пашырыў ваш допіс",
|
"notification.reblog": "{name} пашырыў ваш допіс",
|
||||||
"notification.relationships_severance_event": "Страціў сувязь з {name}",
|
"notification.relationships_severance_event": "Страціў сувязь з {name}",
|
||||||
"notification.relationships_severance_event.account_suspension": "Адміністратар з {from} прыпыніў працу {target}, што азначае, што вы больш не можаце атрымліваць ад іх абнаўлення ці ўзаемадзейнічаць з імі.",
|
"notification.relationships_severance_event.account_suspension": "Адміністратар з {from} прыпыніў працу {target}, што азначае, што вы больш не можаце атрымліваць ад іх абнаўлення ці ўзаемадзейнічаць з імі.",
|
||||||
|
@ -553,7 +550,6 @@
|
||||||
"notifications.policy.filter_not_following_title": "Людзі, на якіх вы не падпісаны",
|
"notifications.policy.filter_not_following_title": "Людзі, на якіх вы не падпісаны",
|
||||||
"notifications.policy.filter_private_mentions_hint": "Фільтруецца за выключэннем адказу на вашае згадванне ці калі вы падпісаны на адпраўніка",
|
"notifications.policy.filter_private_mentions_hint": "Фільтруецца за выключэннем адказу на вашае згадванне ці калі вы падпісаны на адпраўніка",
|
||||||
"notifications.policy.filter_private_mentions_title": "Непажаданыя асаблівыя згадванні",
|
"notifications.policy.filter_private_mentions_title": "Непажаданыя асаблівыя згадванні",
|
||||||
"notifications.policy.title": "Адфільтроўваць апавяшчэнні ад…",
|
|
||||||
"notifications_permission_banner.enable": "Уключыць апавяшчэнні на працоўным стале",
|
"notifications_permission_banner.enable": "Уключыць апавяшчэнні на працоўным стале",
|
||||||
"notifications_permission_banner.how_to_control": "Каб атрымліваць апавяшчэнні, калі Mastodon не адкрыты, уключыце апавяшчэнні працоўнага стала. Вы зможаце дакладна кантраляваць, якія падзеі будуць ствараць апавяшчэнні з дапамогай {icon} кнопкі, як толькі яны будуць уключаны.",
|
"notifications_permission_banner.how_to_control": "Каб атрымліваць апавяшчэнні, калі Mastodon не адкрыты, уключыце апавяшчэнні працоўнага стала. Вы зможаце дакладна кантраляваць, якія падзеі будуць ствараць апавяшчэнні з дапамогай {icon} кнопкі, як толькі яны будуць уключаны.",
|
||||||
"notifications_permission_banner.title": "Не прапусціце нічога",
|
"notifications_permission_banner.title": "Не прапусціце нічога",
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"about.not_available": "Тази информация не е публична на този сървър.",
|
"about.not_available": "Тази информация не е публична на този сървър.",
|
||||||
"about.powered_by": "Децентрализирана социална мрежа, захранвана от {mastodon}",
|
"about.powered_by": "Децентрализирана социална мрежа, захранвана от {mastodon}",
|
||||||
"about.rules": "Правила на сървъра",
|
"about.rules": "Правила на сървъра",
|
||||||
"account.account_note_header": "Бележка",
|
"account.account_note_header": "Лична бележка",
|
||||||
"account.add_or_remove_from_list": "Добавяне или премахване от списъци",
|
"account.add_or_remove_from_list": "Добавяне или премахване от списъци",
|
||||||
"account.badges.bot": "Бот",
|
"account.badges.bot": "Бот",
|
||||||
"account.badges.group": "Група",
|
"account.badges.group": "Група",
|
||||||
|
@ -482,7 +482,6 @@
|
||||||
"notification.favourite": "{name} направи любима публикацията ви",
|
"notification.favourite": "{name} направи любима публикацията ви",
|
||||||
"notification.follow": "{name} ви последва",
|
"notification.follow": "{name} ви последва",
|
||||||
"notification.follow_request": "{name} поиска да ви последва",
|
"notification.follow_request": "{name} поиска да ви последва",
|
||||||
"notification.mention": "{name} ви спомена",
|
|
||||||
"notification.moderation-warning.learn_more": "Научете повече",
|
"notification.moderation-warning.learn_more": "Научете повече",
|
||||||
"notification.moderation_warning": "Получихте предупреждение за модериране",
|
"notification.moderation_warning": "Получихте предупреждение за модериране",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Някои от публикациите ви са премахнати.",
|
"notification.moderation_warning.action_delete_statuses": "Някои от публикациите ви са премахнати.",
|
||||||
|
@ -494,7 +493,6 @@
|
||||||
"notification.moderation_warning.action_suspend": "Вашият акаунт е спрян.",
|
"notification.moderation_warning.action_suspend": "Вашият акаунт е спрян.",
|
||||||
"notification.own_poll": "Анкетата ви приключи",
|
"notification.own_poll": "Анкетата ви приключи",
|
||||||
"notification.poll": "Анкета, в която гласувахте, приключи",
|
"notification.poll": "Анкета, в която гласувахте, приключи",
|
||||||
"notification.private_mention": "{name} лично ви спомена",
|
|
||||||
"notification.reblog": "{name} подсили ваша публикация",
|
"notification.reblog": "{name} подсили ваша публикация",
|
||||||
"notification.relationships_severance_event": "Изгуби се връзката с {name}",
|
"notification.relationships_severance_event": "Изгуби се връзката с {name}",
|
||||||
"notification.relationships_severance_event.account_suspension": "Администратор от {from} спря {target}, което значи че повече не може да получавате новости от тях или да взаимодействате с тях.",
|
"notification.relationships_severance_event.account_suspension": "Администратор от {from} спря {target}, което значи че повече не може да получавате новости от тях или да взаимодействате с тях.",
|
||||||
|
@ -505,6 +503,8 @@
|
||||||
"notification.update": "{name} промени публикация",
|
"notification.update": "{name} промени публикация",
|
||||||
"notification_requests.accept": "Приемам",
|
"notification_requests.accept": "Приемам",
|
||||||
"notification_requests.dismiss": "Отхвърлям",
|
"notification_requests.dismiss": "Отхвърлям",
|
||||||
|
"notification_requests.explainer_for_limited_account": "Известията от този акаунт са прецедени, защото акаунтът е ограничен от модератор.",
|
||||||
|
"notification_requests.explainer_for_limited_remote_account": "Известията от този акаунт са прецедени, защото акаунтът или сървърът му е ограничен от модератор.",
|
||||||
"notification_requests.maximize": "Максимизиране",
|
"notification_requests.maximize": "Максимизиране",
|
||||||
"notification_requests.minimize_banner": "Минимизиране на банера за филтрирани известия",
|
"notification_requests.minimize_banner": "Минимизиране на банера за филтрирани известия",
|
||||||
"notification_requests.notifications_from": "Известия от {name}",
|
"notification_requests.notifications_from": "Известия от {name}",
|
||||||
|
@ -545,6 +545,8 @@
|
||||||
"notifications.permission_denied": "Известията на работния плот не са налични поради предварително отказана заявка за разрешение в браузъра",
|
"notifications.permission_denied": "Известията на работния плот не са налични поради предварително отказана заявка за разрешение в браузъра",
|
||||||
"notifications.permission_denied_alert": "Известията на работния плот не могат да се включат, тъй като разрешението на браузъра е отказвано преди",
|
"notifications.permission_denied_alert": "Известията на работния плот не могат да се включат, тъй като разрешението на браузъра е отказвано преди",
|
||||||
"notifications.permission_required": "Известията на работния плот ги няма, щото няма дадено нужното позволение.",
|
"notifications.permission_required": "Известията на работния плот ги няма, щото няма дадено нужното позволение.",
|
||||||
|
"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.hint": "Сътворено през {days, plural, one {последния ден} other {последните # дена}}",
|
||||||
"notifications.policy.filter_new_accounts_title": "Нови акаунти",
|
"notifications.policy.filter_new_accounts_title": "Нови акаунти",
|
||||||
"notifications.policy.filter_not_followers_hint": "Включително хора, които са ви последвали по-малко от {days, plural, one {ден} other {# дни}}",
|
"notifications.policy.filter_not_followers_hint": "Включително хора, които са ви последвали по-малко от {days, plural, one {ден} other {# дни}}",
|
||||||
|
@ -553,7 +555,6 @@
|
||||||
"notifications.policy.filter_not_following_title": "Хора, които не следвате",
|
"notifications.policy.filter_not_following_title": "Хора, които не следвате",
|
||||||
"notifications.policy.filter_private_mentions_hint": "Филтрирано, освен ако е отговор към ваше собствено споменаване или ако следвате подателя",
|
"notifications.policy.filter_private_mentions_hint": "Филтрирано, освен ако е отговор към ваше собствено споменаване или ако следвате подателя",
|
||||||
"notifications.policy.filter_private_mentions_title": "Непоискани частни споменавания",
|
"notifications.policy.filter_private_mentions_title": "Непоискани частни споменавания",
|
||||||
"notifications.policy.title": "Да се филтрират известия от…",
|
|
||||||
"notifications_permission_banner.enable": "Включване на известията на работния плот",
|
"notifications_permission_banner.enable": "Включване на известията на работния плот",
|
||||||
"notifications_permission_banner.how_to_control": "За да получавате известия, когато Mastodon не е отворен, включете известията на работния плот. Може да управлявате точно кои видове взаимодействия пораждат известия на работния плот чрез бутона {icon} по-горе, след като бъдат включени.",
|
"notifications_permission_banner.how_to_control": "За да получавате известия, когато Mastodon не е отворен, включете известията на работния плот. Може да управлявате точно кои видове взаимодействия пораждат известия на работния плот чрез бутона {icon} по-горе, след като бъдат включени.",
|
||||||
"notifications_permission_banner.title": "Никога не пропускайте нищо",
|
"notifications_permission_banner.title": "Никога не пропускайте нищо",
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
"about.not_available": "এই তথ্য এই সার্ভারে উন্মুক্ত করা হয়নি.",
|
"about.not_available": "এই তথ্য এই সার্ভারে উন্মুক্ত করা হয়নি.",
|
||||||
"about.powered_by": "{mastodon} দ্বারা তৈরি বিকেন্দ্রীভূত সামাজিক মিডিয়া।",
|
"about.powered_by": "{mastodon} দ্বারা তৈরি বিকেন্দ্রীভূত সামাজিক মিডিয়া।",
|
||||||
"about.rules": "সার্ভারের নিয়মাবলী",
|
"about.rules": "সার্ভারের নিয়মাবলী",
|
||||||
"account.account_note_header": "বিজ্ঞপ্তি",
|
|
||||||
"account.add_or_remove_from_list": "তালিকাতে যোগ বা অপসারণ করো",
|
"account.add_or_remove_from_list": "তালিকাতে যোগ বা অপসারণ করো",
|
||||||
"account.badges.bot": "বট",
|
"account.badges.bot": "বট",
|
||||||
"account.badges.group": "দল",
|
"account.badges.group": "দল",
|
||||||
|
@ -315,7 +314,6 @@
|
||||||
"not_signed_in_indicator.not_signed_in": "You need to sign in to access this resource.",
|
"not_signed_in_indicator.not_signed_in": "You need to sign in to access this resource.",
|
||||||
"notification.follow": "{name} আপনাকে অনুসরণ করেছেন",
|
"notification.follow": "{name} আপনাকে অনুসরণ করেছেন",
|
||||||
"notification.follow_request": "{name} আপনাকে অনুসরণ করার জন্য অনুরধ করেছে",
|
"notification.follow_request": "{name} আপনাকে অনুসরণ করার জন্য অনুরধ করেছে",
|
||||||
"notification.mention": "{name} আপনাকে উল্লেখ করেছেন",
|
|
||||||
"notification.own_poll": "আপনার পোল শেষ হয়েছে",
|
"notification.own_poll": "আপনার পোল শেষ হয়েছে",
|
||||||
"notification.reblog": "{name} আপনার কার্যক্রমে সমর্থন দেখিয়েছেন",
|
"notification.reblog": "{name} আপনার কার্যক্রমে সমর্থন দেখিয়েছেন",
|
||||||
"notifications.clear": "প্রজ্ঞাপনগুলো মুছে ফেলতে",
|
"notifications.clear": "প্রজ্ঞাপনগুলো মুছে ফেলতে",
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
"about.not_available": "An titour-mañ ne c'heller ket gwelet war ar servijer-mañ.",
|
"about.not_available": "An titour-mañ ne c'heller ket gwelet war ar servijer-mañ.",
|
||||||
"about.powered_by": "Rouedad sokial digreizenned kaset gant {mastodon}",
|
"about.powered_by": "Rouedad sokial digreizenned kaset gant {mastodon}",
|
||||||
"about.rules": "Reolennoù ar servijer",
|
"about.rules": "Reolennoù ar servijer",
|
||||||
"account.account_note_header": "Notenn",
|
|
||||||
"account.add_or_remove_from_list": "Ouzhpenn pe dilemel eus al listennadoù",
|
"account.add_or_remove_from_list": "Ouzhpenn pe dilemel eus al listennadoù",
|
||||||
"account.badges.bot": "Robot",
|
"account.badges.bot": "Robot",
|
||||||
"account.badges.group": "Strollad",
|
"account.badges.group": "Strollad",
|
||||||
|
@ -391,7 +390,6 @@
|
||||||
"notification.admin.sign_up": "{name} en·he deus lakaet e·hec'h anv",
|
"notification.admin.sign_up": "{name} en·he deus lakaet e·hec'h anv",
|
||||||
"notification.follow": "heuliañ a ra {name} ac'hanoc'h",
|
"notification.follow": "heuliañ a ra {name} ac'hanoc'h",
|
||||||
"notification.follow_request": "Gant {name} eo bet goulennet ho heuliañ",
|
"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.moderation-warning.learn_more": "Gouzout hiroc'h",
|
||||||
"notification.own_poll": "Echu eo ho sontadeg",
|
"notification.own_poll": "Echu eo ho sontadeg",
|
||||||
"notification.reblog": "Gant {name} eo bet skignet ho toud",
|
"notification.reblog": "Gant {name} eo bet skignet ho toud",
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"about.not_available": "Aquesta informació no és disponible en aquest servidor.",
|
"about.not_available": "Aquesta informació no és disponible en aquest servidor.",
|
||||||
"about.powered_by": "Xarxa social descentralitzada impulsada per {mastodon}",
|
"about.powered_by": "Xarxa social descentralitzada impulsada per {mastodon}",
|
||||||
"about.rules": "Normes del servidor",
|
"about.rules": "Normes del servidor",
|
||||||
"account.account_note_header": "Nota",
|
"account.account_note_header": "Nota personal",
|
||||||
"account.add_or_remove_from_list": "Afegeix o elimina de les llistes",
|
"account.add_or_remove_from_list": "Afegeix o elimina de les llistes",
|
||||||
"account.badges.bot": "Automatitzat",
|
"account.badges.bot": "Automatitzat",
|
||||||
"account.badges.group": "Grup",
|
"account.badges.group": "Grup",
|
||||||
|
@ -356,6 +356,16 @@
|
||||||
"home.pending_critical_update.link": "Veure actualitzacions",
|
"home.pending_critical_update.link": "Veure actualitzacions",
|
||||||
"home.pending_critical_update.title": "Actualització de seguretat crítica disponible!",
|
"home.pending_critical_update.title": "Actualització de seguretat crítica disponible!",
|
||||||
"home.show_announcements": "Mostra els anuncis",
|
"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.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.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.",
|
"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.favourite": "{name} ha afavorit el teu tut",
|
||||||
"notification.follow": "{name} et segueix",
|
"notification.follow": "{name} et segueix",
|
||||||
"notification.follow_request": "{name} ha sol·licitat de seguir-te",
|
"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.learn_more": "Per a saber-ne més",
|
||||||
"notification.moderation_warning": "Heu rebut un avís de moderació",
|
"notification.moderation_warning": "Heu rebut un avís de moderació",
|
||||||
"notification.moderation_warning.action_delete_statuses": "S'han eliminat algunes de les vostres publicacions.",
|
"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.moderation_warning.action_suspend": "S'ha suspès el vostre compte.",
|
||||||
"notification.own_poll": "La teva enquesta ha finalitzat",
|
"notification.own_poll": "La teva enquesta ha finalitzat",
|
||||||
"notification.poll": "Ha finalitzat una enquesta que heu respost",
|
"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.reblog": "{name} t'ha impulsat",
|
||||||
"notification.relationships_severance_event": "S'han perdut les connexions amb {name}",
|
"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.",
|
"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.status": "{name} acaba de publicar",
|
||||||
"notification.update": "{name} ha editat un tut",
|
"notification.update": "{name} ha editat un tut",
|
||||||
"notification_requests.accept": "Accepta",
|
"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.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.maximize": "Maximitza",
|
||||||
"notification_requests.minimize_banner": "Minimitza el bàner de notificacions filtrades",
|
"notification_requests.minimize_banner": "Minimitza el bàner de notificacions filtrades",
|
||||||
"notification_requests.notifications_from": "Notificacions de {name}",
|
"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": "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_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.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.hint": "Creat {days, plural, one {ahir} other {durant els # dies passats}}",
|
||||||
"notifications.policy.filter_new_accounts_title": "Comptes nous",
|
"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}}",
|
"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_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_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.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.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.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",
|
"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.remote_resource_not_displayed": "No es mostren {resource} d'altres servidors.",
|
||||||
"timeline_hint.resources.followers": "Seguidors",
|
"timeline_hint.resources.followers": "Seguidors",
|
||||||
"timeline_hint.resources.follows": "Seguiments",
|
"timeline_hint.resources.follows": "Seguiments",
|
||||||
|
"timeline_hint.resources.replies": "Algunes respostes",
|
||||||
"timeline_hint.resources.statuses": "Tuts més antics",
|
"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.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",
|
"trends.trending_now": "És tendència",
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
"about.not_available": "ئەم زانیاریانە لەسەر ئەم سێرڤەرە بەردەست نەکراون.",
|
"about.not_available": "ئەم زانیاریانە لەسەر ئەم سێرڤەرە بەردەست نەکراون.",
|
||||||
"about.powered_by": "سۆشیال میدیای لامەرکەزی کە لەلایەن {mastodon} ەوە بەهێز دەکرێت",
|
"about.powered_by": "سۆشیال میدیای لامەرکەزی کە لەلایەن {mastodon} ەوە بەهێز دەکرێت",
|
||||||
"about.rules": "یاساکانی سێرڤەر",
|
"about.rules": "یاساکانی سێرڤەر",
|
||||||
"account.account_note_header": "تێبینی ",
|
|
||||||
"account.add_or_remove_from_list": "زیادکردن یان سڕینەوە لە پێرستەکان",
|
"account.add_or_remove_from_list": "زیادکردن یان سڕینەوە لە پێرستەکان",
|
||||||
"account.badges.bot": "بوت",
|
"account.badges.bot": "بوت",
|
||||||
"account.badges.group": "گرووپ",
|
"account.badges.group": "گرووپ",
|
||||||
|
@ -386,7 +385,6 @@
|
||||||
"notification.admin.sign_up": "{name} تۆمارکرا",
|
"notification.admin.sign_up": "{name} تۆمارکرا",
|
||||||
"notification.follow": "{name} دوای تۆ کەوت",
|
"notification.follow": "{name} دوای تۆ کەوت",
|
||||||
"notification.follow_request": "{name} داوای کردووە کە شوێنت بکەوێت",
|
"notification.follow_request": "{name} داوای کردووە کە شوێنت بکەوێت",
|
||||||
"notification.mention": "{name} باسی ئێوەی کرد",
|
|
||||||
"notification.own_poll": "ڕاپرسیەکەت کۆتایی هات",
|
"notification.own_poll": "ڕاپرسیەکەت کۆتایی هات",
|
||||||
"notification.reblog": "{name} نووسراوەکەتی دووبارە توتاند",
|
"notification.reblog": "{name} نووسراوەکەتی دووبارە توتاند",
|
||||||
"notification.status": "{name} تازە بڵاوکرایەوە",
|
"notification.status": "{name} تازە بڵاوکرایەوە",
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{
|
{
|
||||||
"account.account_note_header": "Nota",
|
|
||||||
"account.add_or_remove_from_list": "Aghjunghje o toglie da e liste",
|
"account.add_or_remove_from_list": "Aghjunghje o toglie da e liste",
|
||||||
"account.badges.bot": "Bot",
|
"account.badges.bot": "Bot",
|
||||||
"account.badges.group": "Gruppu",
|
"account.badges.group": "Gruppu",
|
||||||
|
@ -237,7 +236,6 @@
|
||||||
"not_signed_in_indicator.not_signed_in": "You need to sign in to access this resource.",
|
"not_signed_in_indicator.not_signed_in": "You need to sign in to access this resource.",
|
||||||
"notification.follow": "{name} v'hà seguitatu",
|
"notification.follow": "{name} v'hà seguitatu",
|
||||||
"notification.follow_request": "{name} vole abbunassi à u vostru contu",
|
"notification.follow_request": "{name} vole abbunassi à u vostru contu",
|
||||||
"notification.mention": "{name} v'hà mintuvatu",
|
|
||||||
"notification.own_poll": "U vostru scandagliu hè compiu",
|
"notification.own_poll": "U vostru scandagliu hè compiu",
|
||||||
"notification.reblog": "{name} hà spartutu u vostru statutu",
|
"notification.reblog": "{name} hà spartutu u vostru statutu",
|
||||||
"notification.status": "{name} hà appena pubblicatu",
|
"notification.status": "{name} hà appena pubblicatu",
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"about.not_available": "Tato informace nebyla zpřístupněna na tomto serveru.",
|
"about.not_available": "Tato informace nebyla zpřístupněna na tomto serveru.",
|
||||||
"about.powered_by": "Decentralizovaná sociální média poháněná {mastodon}",
|
"about.powered_by": "Decentralizovaná sociální média poháněná {mastodon}",
|
||||||
"about.rules": "Pravidla serveru",
|
"about.rules": "Pravidla serveru",
|
||||||
"account.account_note_header": "Poznámka",
|
"account.account_note_header": "Osobní poznámka",
|
||||||
"account.add_or_remove_from_list": "Přidat nebo odstranit ze seznamů",
|
"account.add_or_remove_from_list": "Přidat nebo odstranit ze seznamů",
|
||||||
"account.badges.bot": "Bot",
|
"account.badges.bot": "Bot",
|
||||||
"account.badges.group": "Skupina",
|
"account.badges.group": "Skupina",
|
||||||
|
@ -471,11 +471,12 @@
|
||||||
"navigation_bar.security": "Zabezpečení",
|
"navigation_bar.security": "Zabezpečení",
|
||||||
"not_signed_in_indicator.not_signed_in": "Pro přístup k tomuto zdroji se musíte přihlásit.",
|
"not_signed_in_indicator.not_signed_in": "Pro přístup k tomuto zdroji se musíte přihlásit.",
|
||||||
"notification.admin.report": "Uživatel {name} nahlásil {target}",
|
"notification.admin.report": "Uživatel {name} nahlásil {target}",
|
||||||
|
"notification.admin.report_statuses": "{name} nahlásil {target} za {category}",
|
||||||
|
"notification.admin.report_statuses_other": "{name} nahlásil {target}",
|
||||||
"notification.admin.sign_up": "Uživatel {name} se zaregistroval",
|
"notification.admin.sign_up": "Uživatel {name} se zaregistroval",
|
||||||
"notification.favourite": "Uživatel {name} si oblíbil váš příspěvek",
|
"notification.favourite": "Uživatel {name} si oblíbil váš příspěvek",
|
||||||
"notification.follow": "Uživatel {name} vás začal sledovat",
|
"notification.follow": "Uživatel {name} vás začal sledovat",
|
||||||
"notification.follow_request": "Uživatel {name} požádal o povolení vás 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.learn_more": "Zjistit více",
|
||||||
"notification.moderation_warning": "Obdrželi jste moderační varování",
|
"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.",
|
"notification.moderation_warning.action_delete_statuses": "Některé z vašich příspěvků byly odstraněny.",
|
||||||
|
@ -508,6 +509,7 @@
|
||||||
"notifications.column_settings.admin.sign_up": "Nové registrace:",
|
"notifications.column_settings.admin.sign_up": "Nové registrace:",
|
||||||
"notifications.column_settings.alert": "Oznámení na počítači",
|
"notifications.column_settings.alert": "Oznámení na počítači",
|
||||||
"notifications.column_settings.beta.category": "Experimentální funkce",
|
"notifications.column_settings.beta.category": "Experimentální funkce",
|
||||||
|
"notifications.column_settings.beta.grouping": "Seskupit notifikace",
|
||||||
"notifications.column_settings.favourite": "Oblíbené:",
|
"notifications.column_settings.favourite": "Oblíbené:",
|
||||||
"notifications.column_settings.filter_bar.advanced": "Zobrazit všechny kategorie",
|
"notifications.column_settings.filter_bar.advanced": "Zobrazit všechny kategorie",
|
||||||
"notifications.column_settings.filter_bar.category": "Panel rychlého filtrování",
|
"notifications.column_settings.filter_bar.category": "Panel rychlého filtrování",
|
||||||
|
@ -544,7 +546,6 @@
|
||||||
"notifications.policy.filter_not_following_title": "Lidé, které nesledujete",
|
"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_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.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.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.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",
|
"notifications_permission_banner.title": "Nenechte si nic uniknout",
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
"about.not_available": "Nid yw'r wybodaeth hon ar gael ar y gweinydd hwn.",
|
"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.powered_by": "Cyfrwng cymdeithasol datganoledig wedi ei yrru gan {mastodon}",
|
||||||
"about.rules": "Rheolau'r gweinydd",
|
"about.rules": "Rheolau'r gweinydd",
|
||||||
"account.account_note_header": "Nodyn",
|
|
||||||
"account.add_or_remove_from_list": "Ychwanegu neu Ddileu o'r rhestrau",
|
"account.add_or_remove_from_list": "Ychwanegu neu Ddileu o'r rhestrau",
|
||||||
"account.badges.bot": "Bot",
|
"account.badges.bot": "Bot",
|
||||||
"account.badges.group": "Grŵp",
|
"account.badges.group": "Grŵp",
|
||||||
|
@ -480,7 +479,6 @@
|
||||||
"notification.favourite": "Hoffodd {name} eich postiad",
|
"notification.favourite": "Hoffodd {name} eich postiad",
|
||||||
"notification.follow": "Dilynodd {name} chi",
|
"notification.follow": "Dilynodd {name} chi",
|
||||||
"notification.follow_request": "Mae {name} wedi gwneud cais i'ch dilyn",
|
"notification.follow_request": "Mae {name} wedi gwneud cais i'ch dilyn",
|
||||||
"notification.mention": "Crybwyllodd {name} amdanoch chi",
|
|
||||||
"notification.moderation-warning.learn_more": "Dysgu mwy",
|
"notification.moderation-warning.learn_more": "Dysgu mwy",
|
||||||
"notification.moderation_warning": "Rydych wedi derbyn rhybudd gan gymedrolwr",
|
"notification.moderation_warning": "Rydych wedi derbyn rhybudd gan gymedrolwr",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Mae rhai o'ch postiadau wedi'u dileu.",
|
"notification.moderation_warning.action_delete_statuses": "Mae rhai o'ch postiadau wedi'u dileu.",
|
||||||
|
@ -492,7 +490,6 @@
|
||||||
"notification.moderation_warning.action_suspend": "Mae eich cyfrif wedi'i hatal.",
|
"notification.moderation_warning.action_suspend": "Mae eich cyfrif wedi'i hatal.",
|
||||||
"notification.own_poll": "Mae eich pleidlais wedi dod i ben",
|
"notification.own_poll": "Mae eich pleidlais wedi dod i ben",
|
||||||
"notification.poll": "Mae arolwg y gwnaethoch bleidleisio ynddo 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.reblog": "Hybodd {name} eich post",
|
||||||
"notification.relationships_severance_event": "Wedi colli cysylltiad â {name}",
|
"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.",
|
"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.",
|
||||||
|
@ -550,7 +547,6 @@
|
||||||
"notifications.policy.filter_not_following_title": "Pobl nad ydych yn eu dilyn",
|
"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_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.filter_private_mentions_title": "Crybwylliadau preifat digymell",
|
||||||
"notifications.policy.title": "Hidlo hysbysiadau gan…",
|
|
||||||
"notifications_permission_banner.enable": "Galluogi hysbysiadau bwrdd gwaith",
|
"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.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",
|
"notifications_permission_banner.title": "Peidiwch â cholli dim",
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"about.not_available": "Denne information er ikke blevet gjort tilgængelig på denne server.",
|
"about.not_available": "Denne information er ikke blevet gjort tilgængelig på denne server.",
|
||||||
"about.powered_by": "Decentraliserede sociale medier drevet af {mastodon}",
|
"about.powered_by": "Decentraliserede sociale medier drevet af {mastodon}",
|
||||||
"about.rules": "Serverregler",
|
"about.rules": "Serverregler",
|
||||||
"account.account_note_header": "Note",
|
"account.account_note_header": "Personligt notat",
|
||||||
"account.add_or_remove_from_list": "Tilføj eller fjern fra lister",
|
"account.add_or_remove_from_list": "Tilføj eller fjern fra lister",
|
||||||
"account.badges.bot": "Bot",
|
"account.badges.bot": "Bot",
|
||||||
"account.badges.group": "Gruppe",
|
"account.badges.group": "Gruppe",
|
||||||
|
@ -356,6 +356,17 @@
|
||||||
"home.pending_critical_update.link": "Se opdateringer",
|
"home.pending_critical_update.link": "Se opdateringer",
|
||||||
"home.pending_critical_update.title": "Kritisk sikkerhedsopdatering tilgængelig!",
|
"home.pending_critical_update.title": "Kritisk sikkerhedsopdatering tilgængelig!",
|
||||||
"home.show_announcements": "Vis bekendtgørelser",
|
"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.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.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.",
|
"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.favourite": "{name} favoritmarkerede dit indlæg",
|
||||||
"notification.follow": "{name} begyndte at følge dig",
|
"notification.follow": "{name} begyndte at følge dig",
|
||||||
"notification.follow_request": "{name} har anmodet om 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.learn_more": "Læs mere",
|
||||||
"notification.moderation_warning": "Du er tildelt en moderationsadvarsel",
|
"notification.moderation_warning": "Du er tildelt en moderationsadvarsel",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Nogle af dine indlæg er blevet fjernet.",
|
"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.moderation_warning.action_suspend": "Din konto er suspenderet.",
|
||||||
"notification.own_poll": "Din afstemning er afsluttet",
|
"notification.own_poll": "Din afstemning er afsluttet",
|
||||||
"notification.poll": "En afstemning, hvori du har stemt, er slut",
|
"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.reblog": "{name} boostede dit indlæg",
|
||||||
"notification.relationships_severance_event": "Mistede forbindelser med {name}",
|
"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.",
|
"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.status": "{name} har netop postet",
|
||||||
"notification.update": "{name} redigerede et indlæg",
|
"notification.update": "{name} redigerede et indlæg",
|
||||||
"notification_requests.accept": "Acceptér",
|
"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": "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.maximize": "Maksimér",
|
||||||
"notification_requests.minimize_banner": "Minimér filtrerede notifikationsbanner",
|
"notification_requests.minimize_banner": "Minimér filtrerede notifikationsbanner",
|
||||||
"notification_requests.notifications_from": "Notifikationer fra {name}",
|
"notification_requests.notifications_from": "Notifikationer fra {name}",
|
||||||
"notification_requests.title": "Filtrerede notifikationer",
|
"notification_requests.title": "Filtrerede notifikationer",
|
||||||
|
"notification_requests.view": "Vis notifikationer",
|
||||||
"notifications.clear": "Ryd notifikationer",
|
"notifications.clear": "Ryd notifikationer",
|
||||||
"notifications.clear_confirmation": "Er du sikker på, at du vil rydde alle dine notifikationer permanent?",
|
"notifications.clear_confirmation": "Er du sikker på, at du vil rydde alle dine notifikationer permanent?",
|
||||||
"notifications.clear_title": "Ryd notifikationer?",
|
"notifications.clear_title": "Ryd notifikationer?",
|
||||||
|
@ -545,6 +574,14 @@
|
||||||
"notifications.permission_denied": "Computernotifikationer er utilgængelige grundet tidligere afvist browsertilladelsesanmodning",
|
"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_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.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}}",
|
"notifications.policy.filter_new_accounts.hint": "Oprettet indenfor {days, plural, one {den seneste dag} other {de seneste # dage}}",
|
||||||
"notifications.policy.filter_new_accounts_title": "Ny konti",
|
"notifications.policy.filter_new_accounts_title": "Ny konti",
|
||||||
"notifications.policy.filter_not_followers_hint": "Inklusiv personer, som har fulgt dig {days, plural, one {mindre end én dag} other {færre end # dage}}",
|
"notifications.policy.filter_not_followers_hint": "Inklusiv personer, som har fulgt dig {days, plural, one {mindre end én dag} other {færre end # dage}}",
|
||||||
|
@ -553,7 +590,7 @@
|
||||||
"notifications.policy.filter_not_following_title": "Folk, du ikke følger",
|
"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_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.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.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.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",
|
"notifications_permission_banner.title": "Gå aldrig glip af noget",
|
||||||
|
@ -794,6 +831,7 @@
|
||||||
"timeline_hint.remote_resource_not_displayed": "{resource} fra andre servere vises ikke.",
|
"timeline_hint.remote_resource_not_displayed": "{resource} fra andre servere vises ikke.",
|
||||||
"timeline_hint.resources.followers": "Følgere",
|
"timeline_hint.resources.followers": "Følgere",
|
||||||
"timeline_hint.resources.follows": "Følger",
|
"timeline_hint.resources.follows": "Følger",
|
||||||
|
"timeline_hint.resources.replies": "Visse svar",
|
||||||
"timeline_hint.resources.statuses": "Ældre indlæg",
|
"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.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",
|
"trends.trending_now": "Hot lige nu",
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"about.not_available": "Diese Informationen sind auf diesem Server nicht verfügbar.",
|
"about.not_available": "Diese Informationen sind auf diesem Server nicht verfügbar.",
|
||||||
"about.powered_by": "Ein dezentralisiertes soziales Netzwerk, angetrieben von {mastodon}",
|
"about.powered_by": "Ein dezentralisiertes soziales Netzwerk, angetrieben von {mastodon}",
|
||||||
"about.rules": "Serverregeln",
|
"about.rules": "Serverregeln",
|
||||||
"account.account_note_header": "Notiz",
|
"account.account_note_header": "Persönliche Notiz",
|
||||||
"account.add_or_remove_from_list": "Hinzufügen oder Entfernen von Listen",
|
"account.add_or_remove_from_list": "Hinzufügen oder Entfernen von Listen",
|
||||||
"account.badges.bot": "Automatisiert",
|
"account.badges.bot": "Automatisiert",
|
||||||
"account.badges.group": "Gruppe",
|
"account.badges.group": "Gruppe",
|
||||||
|
@ -356,6 +356,17 @@
|
||||||
"home.pending_critical_update.link": "Updates ansehen",
|
"home.pending_critical_update.link": "Updates ansehen",
|
||||||
"home.pending_critical_update.title": "Kritisches Sicherheitsupdate verfügbar!",
|
"home.pending_critical_update.title": "Kritisches Sicherheitsupdate verfügbar!",
|
||||||
"home.show_announcements": "Ankündigungen anzeigen",
|
"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.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.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.",
|
"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.favourite": "{name} favorisierte deinen Beitrag",
|
||||||
"notification.follow": "{name} folgt dir",
|
"notification.follow": "{name} folgt dir",
|
||||||
"notification.follow_request": "{name} möchte dir folgen",
|
"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.learn_more": "Mehr erfahren",
|
||||||
"notification.moderation_warning": "Du wurdest von den Moderator*innen verwarnt",
|
"notification.moderation_warning": "Du wurdest von den Moderator*innen verwarnt",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Einige deiner Beiträge sind entfernt worden.",
|
"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.moderation_warning.action_suspend": "Dein Konto wurde gesperrt.",
|
||||||
"notification.own_poll": "Deine Umfrage ist beendet",
|
"notification.own_poll": "Deine Umfrage ist beendet",
|
||||||
"notification.poll": "Eine Umfrage, an der du teilgenommen hast, ist beendet",
|
"notification.poll": "Eine Umfrage, an der du teilgenommen hast, ist beendet",
|
||||||
"notification.private_mention": "{name} hat dich privat erwähnt",
|
|
||||||
"notification.reblog": "{name} teilte deinen Beitrag",
|
"notification.reblog": "{name} teilte deinen Beitrag",
|
||||||
"notification.relationships_severance_event": "Verbindungen mit {name} verloren",
|
"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.",
|
"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.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.status": "{name} hat gerade etwas gepostet",
|
||||||
"notification.update": "{name} bearbeitete einen Beitrag",
|
"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": "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.maximize": "Maximieren",
|
||||||
"notification_requests.minimize_banner": "Banner für gefilterte Benachrichtigungen minimieren",
|
"notification_requests.minimize_banner": "Banner für gefilterte Benachrichtigungen minimieren",
|
||||||
"notification_requests.notifications_from": "Benachrichtigungen von {name}",
|
"notification_requests.notifications_from": "Benachrichtigungen von {name}",
|
||||||
"notification_requests.title": "Gefilterte Benachrichtigungen",
|
"notification_requests.title": "Gefilterte Benachrichtigungen",
|
||||||
|
"notification_requests.view": "Benachrichtigungen anzeigen",
|
||||||
"notifications.clear": "Benachrichtigungen löschen",
|
"notifications.clear": "Benachrichtigungen löschen",
|
||||||
"notifications.clear_confirmation": "Möchtest du wirklich alle Benachrichtigungen für immer löschen?",
|
"notifications.clear_confirmation": "Möchtest du wirklich alle Benachrichtigungen für immer löschen?",
|
||||||
"notifications.clear_title": "Benachrichtigungen 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": "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_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.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.hint": "Innerhalb {days, plural, one {des letzten Tages} other {der letzten # Tagen}} erstellt",
|
||||||
"notifications.policy.filter_new_accounts_title": "Neuen Konten",
|
"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",
|
"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_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_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.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.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.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",
|
"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.remote_resource_not_displayed": "{resource} von anderen Servern werden nicht angezeigt.",
|
||||||
"timeline_hint.resources.followers": "Follower",
|
"timeline_hint.resources.followers": "Follower",
|
||||||
"timeline_hint.resources.follows": "„Folge ich“",
|
"timeline_hint.resources.follows": "„Folge ich“",
|
||||||
|
"timeline_hint.resources.replies": "Einige Antworten",
|
||||||
"timeline_hint.resources.statuses": "Ältere Beiträge",
|
"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.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",
|
"trends.trending_now": "Aktuelle Trends",
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"about.not_available": "Αυτές οι πληροφορίες δεν έχουν είναι διαθέσιμες σε αυτόν τον διακομιστή.",
|
"about.not_available": "Αυτές οι πληροφορίες δεν έχουν είναι διαθέσιμες σε αυτόν τον διακομιστή.",
|
||||||
"about.powered_by": "Αποκεντρωμένα μέσα κοινωνικής δικτύωσης που βασίζονται στο {mastodon}",
|
"about.powered_by": "Αποκεντρωμένα μέσα κοινωνικής δικτύωσης που βασίζονται στο {mastodon}",
|
||||||
"about.rules": "Κανόνες διακομιστή",
|
"about.rules": "Κανόνες διακομιστή",
|
||||||
"account.account_note_header": "Σημείωση",
|
"account.account_note_header": "Προσωπική σημείωση",
|
||||||
"account.add_or_remove_from_list": "Προσθήκη ή Αφαίρεση από λίστες",
|
"account.add_or_remove_from_list": "Προσθήκη ή Αφαίρεση από λίστες",
|
||||||
"account.badges.bot": "Αυτοματοποιημένος",
|
"account.badges.bot": "Αυτοματοποιημένος",
|
||||||
"account.badges.group": "Ομάδα",
|
"account.badges.group": "Ομάδα",
|
||||||
|
@ -171,21 +171,28 @@
|
||||||
"confirmations.block.confirm": "Αποκλεισμός",
|
"confirmations.block.confirm": "Αποκλεισμός",
|
||||||
"confirmations.delete.confirm": "Διαγραφή",
|
"confirmations.delete.confirm": "Διαγραφή",
|
||||||
"confirmations.delete.message": "Σίγουρα θες να διαγράψεις αυτή τη δημοσίευση;",
|
"confirmations.delete.message": "Σίγουρα θες να διαγράψεις αυτή τη δημοσίευση;",
|
||||||
|
"confirmations.delete.title": "Διαγραφή ανάρτησης;",
|
||||||
"confirmations.delete_list.confirm": "Διαγραφή",
|
"confirmations.delete_list.confirm": "Διαγραφή",
|
||||||
"confirmations.delete_list.message": "Σίγουρα θες να διαγράψεις οριστικά αυτή τη λίστα;",
|
"confirmations.delete_list.message": "Σίγουρα θες να διαγράψεις οριστικά αυτή τη λίστα;",
|
||||||
|
"confirmations.delete_list.title": "Διαγραφή λίστας;",
|
||||||
"confirmations.discard_edit_media.confirm": "Απόρριψη",
|
"confirmations.discard_edit_media.confirm": "Απόρριψη",
|
||||||
"confirmations.discard_edit_media.message": "Έχεις μη αποθηκευμένες αλλαγές στην περιγραφή πολυμέσων ή στην προεπισκόπηση, απόρριψη ούτως ή άλλως;",
|
"confirmations.discard_edit_media.message": "Έχεις μη αποθηκευμένες αλλαγές στην περιγραφή πολυμέσων ή στην προεπισκόπηση, απόρριψη ούτως ή άλλως;",
|
||||||
"confirmations.edit.confirm": "Επεξεργασία",
|
"confirmations.edit.confirm": "Επεξεργασία",
|
||||||
"confirmations.edit.message": "Αν το επεξεργαστείς τώρα θα αντικατασταθεί το μήνυμα που συνθέτεις. Είσαι σίγουρος ότι θέλεις να συνεχίσεις;",
|
"confirmations.edit.message": "Αν το επεξεργαστείς τώρα θα αντικατασταθεί το μήνυμα που συνθέτεις. Είσαι σίγουρος ότι θέλεις να συνεχίσεις;",
|
||||||
|
"confirmations.edit.title": "Αντικατάσταση ανάρτησης;",
|
||||||
"confirmations.logout.confirm": "Αποσύνδεση",
|
"confirmations.logout.confirm": "Αποσύνδεση",
|
||||||
"confirmations.logout.message": "Σίγουρα θέλεις να αποσυνδεθείς;",
|
"confirmations.logout.message": "Σίγουρα θέλεις να αποσυνδεθείς;",
|
||||||
|
"confirmations.logout.title": "Αποσύνδεση;",
|
||||||
"confirmations.mute.confirm": "Αποσιώπηση",
|
"confirmations.mute.confirm": "Αποσιώπηση",
|
||||||
"confirmations.redraft.confirm": "Διαγραφή & ξαναγράψιμο",
|
"confirmations.redraft.confirm": "Διαγραφή & ξαναγράψιμο",
|
||||||
"confirmations.redraft.message": "Σίγουρα θέλεις να σβήσεις αυτή την ανάρτηση και να την ξαναγράψεις; Οι προτιμήσεις και προωθήσεις θα χαθούν και οι απαντήσεις στην αρχική ανάρτηση θα μείνουν ορφανές.",
|
"confirmations.redraft.message": "Σίγουρα θέλεις να σβήσεις αυτή την ανάρτηση και να την ξαναγράψεις; Οι προτιμήσεις και προωθήσεις θα χαθούν και οι απαντήσεις στην αρχική ανάρτηση θα μείνουν ορφανές.",
|
||||||
|
"confirmations.redraft.title": "Διαγραφή & επανασύνταξη;",
|
||||||
"confirmations.reply.confirm": "Απάντησε",
|
"confirmations.reply.confirm": "Απάντησε",
|
||||||
"confirmations.reply.message": "Απαντώντας τώρα θα αντικαταστήσεις το κείμενο που ήδη γράφεις. Σίγουρα θέλεις να συνεχίσεις;",
|
"confirmations.reply.message": "Απαντώντας τώρα θα αντικαταστήσεις το κείμενο που ήδη γράφεις. Σίγουρα θέλεις να συνεχίσεις;",
|
||||||
|
"confirmations.reply.title": "Αντικατάσταση ανάρτησης;",
|
||||||
"confirmations.unfollow.confirm": "Άρση ακολούθησης",
|
"confirmations.unfollow.confirm": "Άρση ακολούθησης",
|
||||||
"confirmations.unfollow.message": "Σίγουρα θες να πάψεις να ακολουθείς τον/την {name};",
|
"confirmations.unfollow.message": "Σίγουρα θες να πάψεις να ακολουθείς τον/την {name};",
|
||||||
|
"confirmations.unfollow.title": "Άρση ακολούθησης;",
|
||||||
"conversation.delete": "Διαγραφή συζήτησης",
|
"conversation.delete": "Διαγραφή συζήτησης",
|
||||||
"conversation.mark_as_read": "Σήμανση ως αναγνωσμένο",
|
"conversation.mark_as_read": "Σήμανση ως αναγνωσμένο",
|
||||||
"conversation.open": "Προβολή συνομιλίας",
|
"conversation.open": "Προβολή συνομιλίας",
|
||||||
|
@ -293,6 +300,7 @@
|
||||||
"filter_modal.select_filter.subtitle": "Χρησιμοποιήστε μια υπάρχουσα κατηγορία ή δημιουργήστε μια νέα",
|
"filter_modal.select_filter.subtitle": "Χρησιμοποιήστε μια υπάρχουσα κατηγορία ή δημιουργήστε μια νέα",
|
||||||
"filter_modal.select_filter.title": "Φιλτράρισμα αυτής της ανάρτησης",
|
"filter_modal.select_filter.title": "Φιλτράρισμα αυτής της ανάρτησης",
|
||||||
"filter_modal.title.status": "Φιλτράρισμα μιας ανάρτησης",
|
"filter_modal.title.status": "Φιλτράρισμα μιας ανάρτησης",
|
||||||
|
"filtered_notifications_banner.pending_requests": "Από {count, plural, =0 {κανένα} one {ένα άτομο} other {# άτομα}} που μπορεί να ξέρεις",
|
||||||
"filtered_notifications_banner.title": "Φιλτραρισμένες ειδοποιήσεις",
|
"filtered_notifications_banner.title": "Φιλτραρισμένες ειδοποιήσεις",
|
||||||
"firehose.all": "Όλα",
|
"firehose.all": "Όλα",
|
||||||
"firehose.local": "Αυτός ο διακομιστής",
|
"firehose.local": "Αυτός ο διακομιστής",
|
||||||
|
@ -348,6 +356,17 @@
|
||||||
"home.pending_critical_update.link": "Δείτε ενημερώσεις",
|
"home.pending_critical_update.link": "Δείτε ενημερώσεις",
|
||||||
"home.pending_critical_update.title": "Κρίσιμη ενημέρωση ασφαλείας διαθέσιμη!",
|
"home.pending_critical_update.title": "Κρίσιμη ενημέρωση ασφαλείας διαθέσιμη!",
|
||||||
"home.show_announcements": "Εμφάνιση ανακοινώσεων",
|
"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.favourite": "Με ένα συντάκτη στο Mastodon μπορείς να αγαπήσεις αυτή την ανάρτηση, για να ενημερώσεις τον συγγραφέα ότι την εκτιμάς και να την αποθηκεύσεις για αργότερα.",
|
||||||
"interaction_modal.description.follow": "Με έναν λογαριασμό Mastodon, μπορείς να ακολουθήσεις τον/την {name} ώστε να λαμβάνεις τις αναρτήσεις του/της στη δική σου ροή.",
|
"interaction_modal.description.follow": "Με έναν λογαριασμό Mastodon, μπορείς να ακολουθήσεις τον/την {name} ώστε να λαμβάνεις τις αναρτήσεις του/της στη δική σου ροή.",
|
||||||
"interaction_modal.description.reblog": "Με ένα λογαριασμό Mastodon, μπορείς να ενισχύσεις αυτή την ανάρτηση για να τη μοιραστείς με τους δικούς σου ακολούθους.",
|
"interaction_modal.description.reblog": "Με ένα λογαριασμό Mastodon, μπορείς να ενισχύσεις αυτή την ανάρτηση για να τη μοιραστείς με τους δικούς σου ακολούθους.",
|
||||||
|
@ -474,7 +493,11 @@
|
||||||
"notification.favourite": "{name} favorited your post\n{name} προτίμησε την ανάρτηση σου",
|
"notification.favourite": "{name} favorited your post\n{name} προτίμησε την ανάρτηση σου",
|
||||||
"notification.follow": "Ο/Η {name} σε ακολούθησε",
|
"notification.follow": "Ο/Η {name} σε ακολούθησε",
|
||||||
"notification.follow_request": "Ο/H {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.learn_more": "Μάθε περισσότερα",
|
||||||
"notification.moderation_warning": "Έχετε λάβει μία προειδοποίηση συντονισμού",
|
"notification.moderation_warning": "Έχετε λάβει μία προειδοποίηση συντονισμού",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Ορισμένες από τις αναρτήσεις σου έχουν αφαιρεθεί.",
|
"notification.moderation_warning.action_delete_statuses": "Ορισμένες από τις αναρτήσεις σου έχουν αφαιρεθεί.",
|
||||||
|
@ -486,7 +509,6 @@
|
||||||
"notification.moderation_warning.action_suspend": "Ο λογαριασμός σου έχει ανασταλεί.",
|
"notification.moderation_warning.action_suspend": "Ο λογαριασμός σου έχει ανασταλεί.",
|
||||||
"notification.own_poll": "Η δημοσκόπησή σου έληξε",
|
"notification.own_poll": "Η δημοσκόπησή σου έληξε",
|
||||||
"notification.poll": "Μία ψηφοφορία στην οποία συμμετείχες έχει τελειώσει",
|
"notification.poll": "Μία ψηφοφορία στην οποία συμμετείχες έχει τελειώσει",
|
||||||
"notification.private_mention": "{name} σέ επισήμανε ιδιωτικά",
|
|
||||||
"notification.reblog": "Ο/Η {name} ενίσχυσε τη δημοσίευσή σου",
|
"notification.reblog": "Ο/Η {name} ενίσχυσε τη δημοσίευσή σου",
|
||||||
"notification.relationships_severance_event": "Χάθηκε η σύνδεση με το {name}",
|
"notification.relationships_severance_event": "Χάθηκε η σύνδεση με το {name}",
|
||||||
"notification.relationships_severance_event.account_suspension": "Ένας διαχειριστής από το {from} ανέστειλε το {target}, πράγμα που σημαίνει ότι δεν μπορείς πλέον να λαμβάνεις ενημερώσεις από αυτούς ή να αλληλεπιδράς μαζί τους.",
|
"notification.relationships_severance_event.account_suspension": "Ένας διαχειριστής από το {from} ανέστειλε το {target}, πράγμα που σημαίνει ότι δεν μπορείς πλέον να λαμβάνεις ενημερώσεις από αυτούς ή να αλληλεπιδράς μαζί τους.",
|
||||||
|
@ -496,11 +518,29 @@
|
||||||
"notification.status": "Ο/Η {name} μόλις ανέρτησε κάτι",
|
"notification.status": "Ο/Η {name} μόλις ανέρτησε κάτι",
|
||||||
"notification.update": "ο/η {name} επεξεργάστηκε μια ανάρτηση",
|
"notification.update": "ο/η {name} επεξεργάστηκε μια ανάρτηση",
|
||||||
"notification_requests.accept": "Αποδοχή",
|
"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": "Απόρριψη",
|
||||||
|
"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.notifications_from": "Ειδοποιήσεις από {name}",
|
||||||
"notification_requests.title": "Φιλτραρισμένες ειδοποιήσεις",
|
"notification_requests.title": "Φιλτραρισμένες ειδοποιήσεις",
|
||||||
|
"notification_requests.view": "Προβολή ειδοποιήσεων",
|
||||||
"notifications.clear": "Καθαρισμός ειδοποιήσεων",
|
"notifications.clear": "Καθαρισμός ειδοποιήσεων",
|
||||||
"notifications.clear_confirmation": "Σίγουρα θέλεις να καθαρίσεις μόνιμα όλες τις ειδοποιήσεις σου;",
|
"notifications.clear_confirmation": "Σίγουρα θέλεις να καθαρίσεις μόνιμα όλες τις ειδοποιήσεις σου;",
|
||||||
|
"notifications.clear_title": "Εκκαθάριση ειδοποιήσεων;",
|
||||||
"notifications.column_settings.admin.report": "Νέες αναφορές:",
|
"notifications.column_settings.admin.report": "Νέες αναφορές:",
|
||||||
"notifications.column_settings.admin.sign_up": "Νέες εγγραφές:",
|
"notifications.column_settings.admin.sign_up": "Νέες εγγραφές:",
|
||||||
"notifications.column_settings.alert": "Ειδοποιήσεις επιφάνειας εργασίας",
|
"notifications.column_settings.alert": "Ειδοποιήσεις επιφάνειας εργασίας",
|
||||||
|
@ -534,6 +574,14 @@
|
||||||
"notifications.permission_denied": "Οι ειδοποιήσεις στην επιφάνεια εργασίας δεν είναι διαθέσιμες διότι έχει απορριφθεί κάποιο προηγούμενο αίτημα άδειας",
|
"notifications.permission_denied": "Οι ειδοποιήσεις στην επιφάνεια εργασίας δεν είναι διαθέσιμες διότι έχει απορριφθεί κάποιο προηγούμενο αίτημα άδειας",
|
||||||
"notifications.permission_denied_alert": "Δεν είναι δυνατή η ενεργοποίηση των ειδοποιήσεων της επιφάνειας εργασίας, καθώς η άδεια του προγράμματος περιήγησης έχει απορριφθεί νωρίτερα",
|
"notifications.permission_denied_alert": "Δεν είναι δυνατή η ενεργοποίηση των ειδοποιήσεων της επιφάνειας εργασίας, καθώς η άδεια του προγράμματος περιήγησης έχει απορριφθεί νωρίτερα",
|
||||||
"notifications.permission_required": "Οι ειδοποιήσεις δεν είναι διαθέσιμες επειδή δεν έχει δοθεί η απαιτούμενη άδεια.",
|
"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.hint": "Δημιουργήθηκε εντός {days, plural, one {της τελευταίας ημέρας} other {των τελευταίων # ημερών}}",
|
||||||
"notifications.policy.filter_new_accounts_title": "Νέοι λογαριασμοί",
|
"notifications.policy.filter_new_accounts_title": "Νέοι λογαριασμοί",
|
||||||
"notifications.policy.filter_not_followers_hint": "Συμπεριλαμβανομένων των ατόμων που σας έχουν ακολουθήσει λιγότερο από {days, plural, one {μια ημέρα} other {# ημέρες}} πριν",
|
"notifications.policy.filter_not_followers_hint": "Συμπεριλαμβανομένων των ατόμων που σας έχουν ακολουθήσει λιγότερο από {days, plural, one {μια ημέρα} other {# ημέρες}} πριν",
|
||||||
|
@ -542,7 +590,7 @@
|
||||||
"notifications.policy.filter_not_following_title": "Άτομα που δεν ακολουθείς",
|
"notifications.policy.filter_not_following_title": "Άτομα που δεν ακολουθείς",
|
||||||
"notifications.policy.filter_private_mentions_hint": "Φιλτραρισμένο εκτός αν είναι απάντηση σε δική σου αναφορά ή αν ακολουθείς τον αποστολέα",
|
"notifications.policy.filter_private_mentions_hint": "Φιλτραρισμένο εκτός αν είναι απάντηση σε δική σου αναφορά ή αν ακολουθείς τον αποστολέα",
|
||||||
"notifications.policy.filter_private_mentions_title": "Μη συναινετικές ιδιωτικές αναφορές",
|
"notifications.policy.filter_private_mentions_title": "Μη συναινετικές ιδιωτικές αναφορές",
|
||||||
"notifications.policy.title": "Φιλτράρισμα ειδοποιήσεων από…",
|
"notifications.policy.title": "Διαχείριση ειδοποιήσεων από…",
|
||||||
"notifications_permission_banner.enable": "Ενεργοποίηση ειδοποιήσεων επιφάνειας εργασίας",
|
"notifications_permission_banner.enable": "Ενεργοποίηση ειδοποιήσεων επιφάνειας εργασίας",
|
||||||
"notifications_permission_banner.how_to_control": "Για να λαμβάνεις ειδοποιήσεις όταν το Mastodon δεν είναι ανοιχτό, ενεργοποίησε τις ειδοποιήσεις επιφάνειας εργασίας. Μπορείς να ελέγξεις με ακρίβεια ποιοι τύποι αλληλεπιδράσεων δημιουργούν ειδοποιήσεις επιφάνειας εργασίας μέσω του κουμπιού {icon} μόλις ενεργοποιηθούν.",
|
"notifications_permission_banner.how_to_control": "Για να λαμβάνεις ειδοποιήσεις όταν το Mastodon δεν είναι ανοιχτό, ενεργοποίησε τις ειδοποιήσεις επιφάνειας εργασίας. Μπορείς να ελέγξεις με ακρίβεια ποιοι τύποι αλληλεπιδράσεων δημιουργούν ειδοποιήσεις επιφάνειας εργασίας μέσω του κουμπιού {icon} μόλις ενεργοποιηθούν.",
|
||||||
"notifications_permission_banner.title": "Μη χάσεις στιγμή",
|
"notifications_permission_banner.title": "Μη χάσεις στιγμή",
|
||||||
|
@ -783,6 +831,7 @@
|
||||||
"timeline_hint.remote_resource_not_displayed": "{resource} από άλλους διακομιστές δεν εμφανίζονται.",
|
"timeline_hint.remote_resource_not_displayed": "{resource} από άλλους διακομιστές δεν εμφανίζονται.",
|
||||||
"timeline_hint.resources.followers": "Ακόλουθοι",
|
"timeline_hint.resources.followers": "Ακόλουθοι",
|
||||||
"timeline_hint.resources.follows": "Ακολουθείς",
|
"timeline_hint.resources.follows": "Ακολουθείς",
|
||||||
|
"timeline_hint.resources.replies": "Κάποιες απαντήσεις",
|
||||||
"timeline_hint.resources.statuses": "Παλαιότερες αναρτήσεις",
|
"timeline_hint.resources.statuses": "Παλαιότερες αναρτήσεις",
|
||||||
"trends.counter_by_accounts": "{count, plural, one {{counter} άτομο} other {{counter} άτομα} }{days, plural, one { την τελευταία ημέρα} other { τις τελευταίες {days} ημέρες}}",
|
"trends.counter_by_accounts": "{count, plural, one {{counter} άτομο} other {{counter} άτομα} }{days, plural, one { την τελευταία ημέρα} other { τις τελευταίες {days} ημέρες}}",
|
||||||
"trends.trending_now": "Δημοφιλή τώρα",
|
"trends.trending_now": "Δημοφιλή τώρα",
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
"about.not_available": "This information has not been made available on this server.",
|
"about.not_available": "This information has not been made available on this server.",
|
||||||
"about.powered_by": "Decentralised social media powered by {mastodon}",
|
"about.powered_by": "Decentralised social media powered by {mastodon}",
|
||||||
"about.rules": "Server rules",
|
"about.rules": "Server rules",
|
||||||
"account.account_note_header": "Note",
|
|
||||||
"account.add_or_remove_from_list": "Add or Remove from lists",
|
"account.add_or_remove_from_list": "Add or Remove from lists",
|
||||||
"account.badges.bot": "Automated",
|
"account.badges.bot": "Automated",
|
||||||
"account.badges.group": "Group",
|
"account.badges.group": "Group",
|
||||||
|
@ -474,7 +473,6 @@
|
||||||
"notification.favourite": "{name} favourited your post",
|
"notification.favourite": "{name} favourited your post",
|
||||||
"notification.follow": "{name} followed you",
|
"notification.follow": "{name} followed you",
|
||||||
"notification.follow_request": "{name} has requested to follow 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.learn_more": "Learn more",
|
||||||
"notification.moderation_warning": "You have received a moderation warning",
|
"notification.moderation_warning": "You have received a moderation warning",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Some of your posts have been removed.",
|
"notification.moderation_warning.action_delete_statuses": "Some of your posts have been removed.",
|
||||||
|
@ -486,7 +484,6 @@
|
||||||
"notification.moderation_warning.action_suspend": "Your account has been suspended.",
|
"notification.moderation_warning.action_suspend": "Your account has been suspended.",
|
||||||
"notification.own_poll": "Your poll has ended",
|
"notification.own_poll": "Your poll has ended",
|
||||||
"notification.poll": "A poll you voted in has ended",
|
"notification.poll": "A poll you voted in has ended",
|
||||||
"notification.private_mention": "{name} privately mentioned you",
|
|
||||||
"notification.reblog": "{name} boosted your status",
|
"notification.reblog": "{name} boosted your status",
|
||||||
"notification.relationships_severance_event": "Lost connections with {name}",
|
"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.",
|
"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.",
|
||||||
|
@ -542,7 +539,6 @@
|
||||||
"notifications.policy.filter_not_following_title": "People you don't follow",
|
"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_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.filter_private_mentions_title": "Unsolicited private mentions",
|
||||||
"notifications.policy.title": "Filter out notifications from…",
|
|
||||||
"notifications_permission_banner.enable": "Enable desktop notifications",
|
"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.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",
|
"notifications_permission_banner.title": "Never miss a thing",
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
"about.powered_by": "Decentralized social media powered by {mastodon}",
|
"about.powered_by": "Decentralized social media powered by {mastodon}",
|
||||||
"about.public_visibility": "Public visibility",
|
"about.public_visibility": "Public visibility",
|
||||||
"about.rules": "Server rules",
|
"about.rules": "Server rules",
|
||||||
"account.account_note_header": "Note",
|
"account.account_note_header": "Personal note",
|
||||||
"account.add_or_remove_from_antenna": "Add or Remove from antennas",
|
"account.add_or_remove_from_antenna": "Add or Remove from antennas",
|
||||||
"account.add_or_remove_from_circle": "Add or Remove from circles",
|
"account.add_or_remove_from_circle": "Add or Remove from circles",
|
||||||
"account.add_or_remove_from_exclude_antenna": "Add or Remove from antennas as exclusion",
|
"account.add_or_remove_from_exclude_antenna": "Add or Remove from antennas as exclusion",
|
||||||
|
@ -459,6 +459,17 @@
|
||||||
"home.pending_critical_update.link": "See updates",
|
"home.pending_critical_update.link": "See updates",
|
||||||
"home.pending_critical_update.title": "Critical security update available!",
|
"home.pending_critical_update.title": "Critical security update available!",
|
||||||
"home.show_announcements": "Show announcements",
|
"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": "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 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?",
|
||||||
|
"ignore_notifications_modal.not_followers_title": "Ignore notifications from people not following you?",
|
||||||
|
"ignore_notifications_modal.not_following_title": "Ignore notifications from people you don't follow?",
|
||||||
|
"ignore_notifications_modal.private_mentions_title": "Ignore notifications from unsolicited Private Mentions?",
|
||||||
"interaction_modal.description.emoji_reaection": "With an account on Mastodon, you can emoji react this post to let the author know you appreciate it and save it for later.",
|
"interaction_modal.description.emoji_reaection": "With an account on Mastodon, you can emoji react this post to let the author know you appreciate it and save it for later.",
|
||||||
"interaction_modal.description.favourite": "With an account on Mastodon, you can favorite this post to let the author know you appreciate it and save it for later.",
|
"interaction_modal.description.favourite": "With an account on Mastodon, you can favorite this post to let the author know you appreciate it and save it for later.",
|
||||||
"interaction_modal.description.follow": "With an account on Mastodon, you can follow {name} to receive their posts in your home feed.",
|
"interaction_modal.description.follow": "With an account on Mastodon, you can follow {name} to receive their posts in your home feed.",
|
||||||
|
@ -598,8 +609,12 @@
|
||||||
"notification.favourite": "{name} favorited your post",
|
"notification.favourite": "{name} favorited your post",
|
||||||
"notification.follow": "{name} followed you",
|
"notification.follow": "{name} followed you",
|
||||||
"notification.follow_request": "{name} has requested to follow you",
|
"notification.follow_request": "{name} has requested to follow you",
|
||||||
|
"notification.label.mention": "Mention",
|
||||||
|
"notification.label.private_mention": "Private mention",
|
||||||
|
"notification.label.private_reply": "Private reply",
|
||||||
|
"notification.label.reply": "Reply",
|
||||||
"notification.list_status": "{name} post is added to {listName}",
|
"notification.list_status": "{name} post is added to {listName}",
|
||||||
"notification.mention": "{name} mentioned you",
|
"notification.mention": "Mention",
|
||||||
"notification.moderation-warning.learn_more": "Learn more",
|
"notification.moderation-warning.learn_more": "Learn more",
|
||||||
"notification.moderation_warning": "You have received a moderation warning",
|
"notification.moderation_warning": "You have received a moderation warning",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Some of your posts have been removed.",
|
"notification.moderation_warning.action_delete_statuses": "Some of your posts have been removed.",
|
||||||
|
@ -612,7 +627,6 @@
|
||||||
"notification.moderation_warning.action_suspend": "Your account has been suspended.",
|
"notification.moderation_warning.action_suspend": "Your account has been suspended.",
|
||||||
"notification.own_poll": "Your poll has ended",
|
"notification.own_poll": "Your poll has ended",
|
||||||
"notification.poll": "A poll you voted in has ended",
|
"notification.poll": "A poll you voted in has ended",
|
||||||
"notification.private_mention": "{name} privately mentioned you",
|
|
||||||
"notification.reblog": "{name} boosted your post",
|
"notification.reblog": "{name} boosted your post",
|
||||||
"notification.relationships_severance_event": "Lost connections with {name}",
|
"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.",
|
"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.",
|
||||||
|
@ -623,11 +637,26 @@
|
||||||
"notification.status_reference": "{name} quoted your post",
|
"notification.status_reference": "{name} quoted your post",
|
||||||
"notification.update": "{name} edited a post",
|
"notification.update": "{name} edited a post",
|
||||||
"notification_requests.accept": "Accept",
|
"notification_requests.accept": "Accept",
|
||||||
|
"notification_requests.accept_all": "Accept all",
|
||||||
|
"notification_requests.accept_multiple": "{count, plural, one {Accept # request} other {Accept # requests}}",
|
||||||
|
"notification_requests.confirm_accept_all.button": "Accept all",
|
||||||
|
"notification_requests.confirm_accept_all.message": "You are about to accept {count, plural, one {one notification request} other {# notification requests}}. Are you sure you want to proceed?",
|
||||||
|
"notification_requests.confirm_accept_all.title": "Accept notification requests?",
|
||||||
|
"notification_requests.confirm_dismiss_all.button": "Dismiss all",
|
||||||
|
"notification_requests.confirm_dismiss_all.message": "You are about to dismiss {count, plural, one {one notification request} other {# notification requests}}. You won't be able to easily access {count, plural, one {it} other {them}} again. Are you sure you want to proceed?",
|
||||||
|
"notification_requests.confirm_dismiss_all.title": "Dismiss notification requests?",
|
||||||
"notification_requests.dismiss": "Dismiss",
|
"notification_requests.dismiss": "Dismiss",
|
||||||
|
"notification_requests.dismiss_all": "Dismiss all",
|
||||||
|
"notification_requests.dismiss_multiple": "{count, plural, one {Dismiss # request} other {Dismiss # requests}}",
|
||||||
|
"notification_requests.enter_selection_mode": "Select",
|
||||||
|
"notification_requests.exit_selection_mode": "Cancel",
|
||||||
|
"notification_requests.explainer_for_limited_account": "Notifications from this account have been filtered because the account has been limited by a moderator.",
|
||||||
|
"notification_requests.explainer_for_limited_remote_account": "Notifications from this account have been filtered because the account or its server has been limited by a moderator.",
|
||||||
"notification_requests.maximize": "Maximize",
|
"notification_requests.maximize": "Maximize",
|
||||||
"notification_requests.minimize_banner": "Minimize filtered notifications banner",
|
"notification_requests.minimize_banner": "Minimize filtered notifications banner",
|
||||||
"notification_requests.notifications_from": "Notifications from {name}",
|
"notification_requests.notifications_from": "Notifications from {name}",
|
||||||
"notification_requests.title": "Filtered notifications",
|
"notification_requests.title": "Filtered notifications",
|
||||||
|
"notification_requests.view": "View notifications",
|
||||||
"notifications.clear": "Clear notifications",
|
"notifications.clear": "Clear notifications",
|
||||||
"notifications.clear_confirmation": "Are you sure you want to permanently clear all your notifications?",
|
"notifications.clear_confirmation": "Are you sure you want to permanently clear all your notifications?",
|
||||||
"notifications.clear_title": "Clear notifications?",
|
"notifications.clear_title": "Clear notifications?",
|
||||||
|
@ -669,6 +698,14 @@
|
||||||
"notifications.permission_denied": "Desktop notifications are unavailable due to previously denied browser permissions request",
|
"notifications.permission_denied": "Desktop notifications are unavailable due to previously denied browser permissions request",
|
||||||
"notifications.permission_denied_alert": "Desktop notifications can't be enabled, as browser permission has been denied before",
|
"notifications.permission_denied_alert": "Desktop notifications can't be enabled, as browser permission has been denied before",
|
||||||
"notifications.permission_required": "Desktop notifications are unavailable because the required permission has not been granted.",
|
"notifications.permission_required": "Desktop notifications are unavailable because the required permission has not been granted.",
|
||||||
|
"notifications.policy.accept": "Accept",
|
||||||
|
"notifications.policy.accept_hint": "Show in notifications",
|
||||||
|
"notifications.policy.drop": "Ignore",
|
||||||
|
"notifications.policy.drop_hint": "Send to the void, never to be seen again",
|
||||||
|
"notifications.policy.filter": "Filter",
|
||||||
|
"notifications.policy.filter_hint": "Send to filtered notifications inbox",
|
||||||
|
"notifications.policy.filter_limited_accounts_hint": "Limited by server moderators",
|
||||||
|
"notifications.policy.filter_limited_accounts_title": "Moderated accounts",
|
||||||
"notifications.policy.filter_new_accounts.hint": "Created within the past {days, plural, one {one day} other {# days}}",
|
"notifications.policy.filter_new_accounts.hint": "Created within the past {days, plural, one {one day} other {# days}}",
|
||||||
"notifications.policy.filter_new_accounts_title": "New accounts",
|
"notifications.policy.filter_new_accounts_title": "New accounts",
|
||||||
"notifications.policy.filter_not_followers_hint": "Including people who have been following you fewer than {days, plural, one {one day} other {# days}}",
|
"notifications.policy.filter_not_followers_hint": "Including people who have been following you fewer than {days, plural, one {one day} other {# days}}",
|
||||||
|
@ -677,7 +714,7 @@
|
||||||
"notifications.policy.filter_not_following_title": "People you don't follow",
|
"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_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.filter_private_mentions_title": "Unsolicited private mentions",
|
||||||
"notifications.policy.title": "Filter out notifications from…",
|
"notifications.policy.title": "Manage notifications from…",
|
||||||
"notifications_permission_banner.enable": "Enable desktop notifications",
|
"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.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",
|
"notifications_permission_banner.title": "Never miss a thing",
|
||||||
|
@ -967,6 +1004,7 @@
|
||||||
"timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.",
|
"timeline_hint.remote_resource_not_displayed": "{resource} from other servers are not displayed.",
|
||||||
"timeline_hint.resources.followers": "Followers",
|
"timeline_hint.resources.followers": "Followers",
|
||||||
"timeline_hint.resources.follows": "Follows",
|
"timeline_hint.resources.follows": "Follows",
|
||||||
|
"timeline_hint.resources.replies": "Some replies",
|
||||||
"timeline_hint.resources.statuses": "Older posts",
|
"timeline_hint.resources.statuses": "Older posts",
|
||||||
"trends.counter_by_accounts": "{count, plural, one {{counter} person} other {{counter} people}} in the past {days, plural, one {day} other {{days} days}}",
|
"trends.counter_by_accounts": "{count, plural, one {{counter} person} other {{counter} people}} in the past {days, plural, one {day} other {{days} days}}",
|
||||||
"trends.trending_now": "Trending now",
|
"trends.trending_now": "Trending now",
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
"about.not_available": "Ĉi tiu informo ne estas disponebla ĉe ĉi tiu servilo.",
|
"about.not_available": "Ĉi tiu informo ne estas disponebla ĉe ĉi tiu servilo.",
|
||||||
"about.powered_by": "Malcentrigita socia retejo pere de {mastodon}",
|
"about.powered_by": "Malcentrigita socia retejo pere de {mastodon}",
|
||||||
"about.rules": "Regularo de la servilo",
|
"about.rules": "Regularo de la servilo",
|
||||||
"account.account_note_header": "Noto",
|
|
||||||
"account.add_or_remove_from_list": "Aldoni al aŭ forigi el listoj",
|
"account.add_or_remove_from_list": "Aldoni al aŭ forigi el listoj",
|
||||||
"account.badges.bot": "Roboto",
|
"account.badges.bot": "Roboto",
|
||||||
"account.badges.group": "Grupo",
|
"account.badges.group": "Grupo",
|
||||||
|
@ -400,7 +399,6 @@
|
||||||
"notification.favourite": "{name} stelumis vian afiŝon",
|
"notification.favourite": "{name} stelumis vian afiŝon",
|
||||||
"notification.follow": "{name} eksekvis vin",
|
"notification.follow": "{name} eksekvis vin",
|
||||||
"notification.follow_request": "{name} petis sekvi vin",
|
"notification.follow_request": "{name} petis sekvi vin",
|
||||||
"notification.mention": "{name} menciis vin",
|
|
||||||
"notification.own_poll": "Via enketo finiĝis",
|
"notification.own_poll": "Via enketo finiĝis",
|
||||||
"notification.reblog": "{name} diskonigis vian afiŝon",
|
"notification.reblog": "{name} diskonigis vian afiŝon",
|
||||||
"notification.status": "{name} ĵus afiŝis",
|
"notification.status": "{name} ĵus afiŝis",
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"about.not_available": "Esta información no está disponible en este servidor.",
|
"about.not_available": "Esta información no está disponible en este servidor.",
|
||||||
"about.powered_by": "Redes sociales descentralizadas con tecnología de {mastodon}",
|
"about.powered_by": "Redes sociales descentralizadas con tecnología de {mastodon}",
|
||||||
"about.rules": "Reglas del servidor",
|
"about.rules": "Reglas del servidor",
|
||||||
"account.account_note_header": "Nota",
|
"account.account_note_header": "Nota personal",
|
||||||
"account.add_or_remove_from_list": "Agregar o quitar de las listas",
|
"account.add_or_remove_from_list": "Agregar o quitar de las listas",
|
||||||
"account.badges.bot": "Automatizada",
|
"account.badges.bot": "Automatizada",
|
||||||
"account.badges.group": "Grupo",
|
"account.badges.group": "Grupo",
|
||||||
|
@ -356,6 +356,17 @@
|
||||||
"home.pending_critical_update.link": "Ver actualizaciones",
|
"home.pending_critical_update.link": "Ver actualizaciones",
|
||||||
"home.pending_critical_update.title": "¡Actualización de seguridad crítica disponible!",
|
"home.pending_critical_update.title": "¡Actualización de seguridad crítica disponible!",
|
||||||
"home.show_announcements": "Mostrar anuncios",
|
"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.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.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.",
|
"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.favourite": "{name} marcó tu mensaje como favorito",
|
||||||
"notification.follow": "{name} te empezó a seguir",
|
"notification.follow": "{name} te empezó a seguir",
|
||||||
"notification.follow_request": "{name} solicitó seguirte",
|
"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.learn_more": "Aprendé más",
|
||||||
"notification.moderation_warning": "Recibiste una advertencia de moderación",
|
"notification.moderation_warning": "Recibiste una advertencia de moderación",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Se eliminaron algunos de tus mensajes.",
|
"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.moderation_warning.action_suspend": "Tu cuenta fue suspendida.",
|
||||||
"notification.own_poll": "Tu encuesta finalizó",
|
"notification.own_poll": "Tu encuesta finalizó",
|
||||||
"notification.poll": "Finalizó una encuesta en la que votaste",
|
"notification.poll": "Finalizó una encuesta en la que votaste",
|
||||||
"notification.private_mention": "{name} te mencionó en privado",
|
|
||||||
"notification.reblog": "{name} adhirió a tu mensaje",
|
"notification.reblog": "{name} adhirió a tu mensaje",
|
||||||
"notification.relationships_severance_event": "Conexiones perdidas con {name}",
|
"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.",
|
"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.status": "{name} acaba de enviar un mensaje",
|
||||||
"notification.update": "{name} editó un mensaje",
|
"notification.update": "{name} editó un mensaje",
|
||||||
"notification_requests.accept": "Aceptar",
|
"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": "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.maximize": "Maximizar",
|
||||||
"notification_requests.minimize_banner": "Minimizar la barra de notificaciones filtradas",
|
"notification_requests.minimize_banner": "Minimizar la barra de notificaciones filtradas",
|
||||||
"notification_requests.notifications_from": "Notificaciones de {name}",
|
"notification_requests.notifications_from": "Notificaciones de {name}",
|
||||||
"notification_requests.title": "Notificaciones filtradas",
|
"notification_requests.title": "Notificaciones filtradas",
|
||||||
|
"notification_requests.view": "Ver notificaciones",
|
||||||
"notifications.clear": "Limpiar notificaciones",
|
"notifications.clear": "Limpiar notificaciones",
|
||||||
"notifications.clear_confirmation": "¿Estás seguro que querés limpiar todas tus notificaciones permanentemente?",
|
"notifications.clear_confirmation": "¿Estás seguro que querés limpiar todas tus notificaciones permanentemente?",
|
||||||
"notifications.clear_title": "¿Limpiar notificaciones?",
|
"notifications.clear_title": "¿Limpiar notificaciones?",
|
||||||
|
@ -545,6 +574,14 @@
|
||||||
"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": "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_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.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}}",
|
"notifications.policy.filter_new_accounts.hint": "Creada hace {days, plural, one {un día} other {# días}}",
|
||||||
"notifications.policy.filter_new_accounts_title": "Nuevas cuentas",
|
"notifications.policy.filter_new_accounts_title": "Nuevas cuentas",
|
||||||
"notifications.policy.filter_not_followers_hint": "Incluyendo cuentas que te han estado siguiendo menos de {days, plural, one {un día} other {# días}}",
|
"notifications.policy.filter_not_followers_hint": "Incluyendo cuentas que te han estado siguiendo menos de {days, plural, one {un día} other {# días}}",
|
||||||
|
@ -553,7 +590,7 @@
|
||||||
"notifications.policy.filter_not_following_title": "Cuentas que no seguís",
|
"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_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.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.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.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",
|
"notifications_permission_banner.title": "No te pierdas nada",
|
||||||
|
@ -794,6 +831,7 @@
|
||||||
"timeline_hint.remote_resource_not_displayed": "{resource} desde otros servidores no se muestran.",
|
"timeline_hint.remote_resource_not_displayed": "{resource} desde otros servidores no se muestran.",
|
||||||
"timeline_hint.resources.followers": "Tus seguidores",
|
"timeline_hint.resources.followers": "Tus seguidores",
|
||||||
"timeline_hint.resources.follows": "Las cuentas que seguís",
|
"timeline_hint.resources.follows": "Las cuentas que seguís",
|
||||||
|
"timeline_hint.resources.replies": "Algunas respuestas",
|
||||||
"timeline_hint.resources.statuses": "Mensajes más antiguos",
|
"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.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",
|
"trends.trending_now": "Tendencia ahora",
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"about.not_available": "Esta información no está disponible en este servidor.",
|
"about.not_available": "Esta información no está disponible en este servidor.",
|
||||||
"about.powered_by": "Medio social descentralizado con tecnología de {mastodon}",
|
"about.powered_by": "Medio social descentralizado con tecnología de {mastodon}",
|
||||||
"about.rules": "Reglas del servidor",
|
"about.rules": "Reglas del servidor",
|
||||||
"account.account_note_header": "Nota",
|
"account.account_note_header": "Nota personal",
|
||||||
"account.add_or_remove_from_list": "Agregar o eliminar de las listas",
|
"account.add_or_remove_from_list": "Agregar o eliminar de las listas",
|
||||||
"account.badges.bot": "Bot",
|
"account.badges.bot": "Bot",
|
||||||
"account.badges.group": "Grupo",
|
"account.badges.group": "Grupo",
|
||||||
|
@ -356,6 +356,17 @@
|
||||||
"home.pending_critical_update.link": "Ver actualizaciones",
|
"home.pending_critical_update.link": "Ver actualizaciones",
|
||||||
"home.pending_critical_update.title": "¡Actualización de seguridad crítica disponible!",
|
"home.pending_critical_update.title": "¡Actualización de seguridad crítica disponible!",
|
||||||
"home.show_announcements": "Mostrar anuncios",
|
"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.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.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.",
|
"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.favourite": "{name} marcó como favorita tu publicación",
|
||||||
"notification.follow": "{name} te empezó a seguir",
|
"notification.follow": "{name} te empezó a seguir",
|
||||||
"notification.follow_request": "{name} ha solicitado seguirte",
|
"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.learn_more": "Saber más",
|
||||||
"notification.moderation_warning": "Has recibido una advertencia de moderación",
|
"notification.moderation_warning": "Has recibido una advertencia de moderación",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Se han eliminado algunas de tus publicaciones.",
|
"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.moderation_warning.action_suspend": "Tu cuenta ha sido suspendida.",
|
||||||
"notification.own_poll": "Tu encuesta ha terminado",
|
"notification.own_poll": "Tu encuesta ha terminado",
|
||||||
"notification.poll": "Una encuesta ha terminado",
|
"notification.poll": "Una encuesta ha terminado",
|
||||||
"notification.private_mention": "{name} te mencionó en privado",
|
|
||||||
"notification.reblog": "{name} ha retooteado tu estado",
|
"notification.reblog": "{name} ha retooteado tu estado",
|
||||||
"notification.relationships_severance_event": "Conexiones perdidas con {name}",
|
"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.",
|
"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,9 +518,26 @@
|
||||||
"notification.status": "{name} acaba de publicar",
|
"notification.status": "{name} acaba de publicar",
|
||||||
"notification.update": "{name} editó una publicación",
|
"notification.update": "{name} editó una publicación",
|
||||||
"notification_requests.accept": "Aceptar",
|
"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": "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.notifications_from": "Notificaciones de {name}",
|
||||||
"notification_requests.title": "Notificaciones filtradas",
|
"notification_requests.title": "Notificaciones filtradas",
|
||||||
|
"notification_requests.view": "Ver notificaciones",
|
||||||
"notifications.clear": "Limpiar notificaciones",
|
"notifications.clear": "Limpiar notificaciones",
|
||||||
"notifications.clear_confirmation": "¿Seguro de querer borrar permanentemente todas tus notificaciones?",
|
"notifications.clear_confirmation": "¿Seguro de querer borrar permanentemente todas tus notificaciones?",
|
||||||
"notifications.clear_title": "¿Borrar notificaciones?",
|
"notifications.clear_title": "¿Borrar notificaciones?",
|
||||||
|
@ -543,6 +574,14 @@
|
||||||
"notifications.permission_denied": "No se pueden habilitar las notificaciones de escritorio ya que se denegó el permiso.",
|
"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_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.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.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_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}}",
|
"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}}",
|
||||||
|
@ -551,7 +590,7 @@
|
||||||
"notifications.policy.filter_not_following_title": "Personas que no sigues",
|
"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_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.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.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.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",
|
"notifications_permission_banner.title": "Nunca te pierdas nada",
|
||||||
|
@ -792,6 +831,7 @@
|
||||||
"timeline_hint.remote_resource_not_displayed": "{resource} de otros servidores no se muestran.",
|
"timeline_hint.remote_resource_not_displayed": "{resource} de otros servidores no se muestran.",
|
||||||
"timeline_hint.resources.followers": "Seguidores",
|
"timeline_hint.resources.followers": "Seguidores",
|
||||||
"timeline_hint.resources.follows": "Seguidos",
|
"timeline_hint.resources.follows": "Seguidos",
|
||||||
|
"timeline_hint.resources.replies": "Algunas respuestas",
|
||||||
"timeline_hint.resources.statuses": "Toots más antiguos",
|
"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.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",
|
"trends.trending_now": "Tendencia ahora",
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"about.not_available": "Esta información no está disponible en este servidor.",
|
"about.not_available": "Esta información no está disponible en este servidor.",
|
||||||
"about.powered_by": "Redes sociales descentralizadas con tecnología de {mastodon}",
|
"about.powered_by": "Redes sociales descentralizadas con tecnología de {mastodon}",
|
||||||
"about.rules": "Reglas del servidor",
|
"about.rules": "Reglas del servidor",
|
||||||
"account.account_note_header": "Nota",
|
"account.account_note_header": "Nota personal",
|
||||||
"account.add_or_remove_from_list": "Agregar o eliminar de listas",
|
"account.add_or_remove_from_list": "Agregar o eliminar de listas",
|
||||||
"account.badges.bot": "Automatizada",
|
"account.badges.bot": "Automatizada",
|
||||||
"account.badges.group": "Grupo",
|
"account.badges.group": "Grupo",
|
||||||
|
@ -356,6 +356,17 @@
|
||||||
"home.pending_critical_update.link": "Ver actualizaciones",
|
"home.pending_critical_update.link": "Ver actualizaciones",
|
||||||
"home.pending_critical_update.title": "¡Actualización de seguridad crítica disponible!",
|
"home.pending_critical_update.title": "¡Actualización de seguridad crítica disponible!",
|
||||||
"home.show_announcements": "Mostrar anuncios",
|
"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.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.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.",
|
"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.favourite": "{name} marcó como favorita tu publicación",
|
||||||
"notification.follow": "{name} te empezó a seguir",
|
"notification.follow": "{name} te empezó a seguir",
|
||||||
"notification.follow_request": "{name} ha solicitado seguirte",
|
"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.learn_more": "Saber más",
|
||||||
"notification.moderation_warning": "Has recibido una advertencia de moderación",
|
"notification.moderation_warning": "Has recibido una advertencia de moderación",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Se han eliminado algunas de tus publicaciones.",
|
"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.moderation_warning.action_suspend": "Tu cuenta ha sido suspendida.",
|
||||||
"notification.own_poll": "Tu encuesta ha terminado",
|
"notification.own_poll": "Tu encuesta ha terminado",
|
||||||
"notification.poll": "Una encuesta ha terminado",
|
"notification.poll": "Una encuesta ha terminado",
|
||||||
"notification.private_mention": "{name} te mencionó en privado",
|
|
||||||
"notification.reblog": "{name} ha impulsado tu publicación",
|
"notification.reblog": "{name} ha impulsado tu publicación",
|
||||||
"notification.relationships_severance_event": "Conexiones perdidas con {name}",
|
"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.",
|
"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,9 +518,26 @@
|
||||||
"notification.status": "{name} acaba de publicar",
|
"notification.status": "{name} acaba de publicar",
|
||||||
"notification.update": "{name} editó una publicación",
|
"notification.update": "{name} editó una publicación",
|
||||||
"notification_requests.accept": "Aceptar",
|
"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": "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.notifications_from": "Notificaciones de {name}",
|
||||||
"notification_requests.title": "Notificaciones filtradas",
|
"notification_requests.title": "Notificaciones filtradas",
|
||||||
|
"notification_requests.view": "Ver notificaciones",
|
||||||
"notifications.clear": "Limpiar notificaciones",
|
"notifications.clear": "Limpiar notificaciones",
|
||||||
"notifications.clear_confirmation": "¿Seguro que quieres limpiar permanentemente todas tus notificaciones?",
|
"notifications.clear_confirmation": "¿Seguro que quieres limpiar permanentemente todas tus notificaciones?",
|
||||||
"notifications.clear_title": "¿Borrar notificaciones?",
|
"notifications.clear_title": "¿Borrar notificaciones?",
|
||||||
|
@ -543,6 +574,14 @@
|
||||||
"notifications.permission_denied": "No se pueden habilitar las notificaciones de escritorio ya que se denegó el permiso.",
|
"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_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.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.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_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}}",
|
"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}}",
|
||||||
|
@ -551,7 +590,7 @@
|
||||||
"notifications.policy.filter_not_following_title": "Personas que no sigues",
|
"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_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.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.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.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",
|
"notifications_permission_banner.title": "Nunca te pierdas nada",
|
||||||
|
@ -792,6 +831,7 @@
|
||||||
"timeline_hint.remote_resource_not_displayed": "{resource} de otros servidores no se muestran.",
|
"timeline_hint.remote_resource_not_displayed": "{resource} de otros servidores no se muestran.",
|
||||||
"timeline_hint.resources.followers": "Seguidores",
|
"timeline_hint.resources.followers": "Seguidores",
|
||||||
"timeline_hint.resources.follows": "Seguidos",
|
"timeline_hint.resources.follows": "Seguidos",
|
||||||
|
"timeline_hint.resources.replies": "Algunas respuestas",
|
||||||
"timeline_hint.resources.statuses": "Publicaciones más antiguas",
|
"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.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",
|
"trends.trending_now": "Tendencia ahora",
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
"about.not_available": "See info ei ole sellel serveril saadavaks tehtud.",
|
"about.not_available": "See info ei ole sellel serveril saadavaks tehtud.",
|
||||||
"about.powered_by": "Hajutatud sotsiaalmeedia, mille taga on {mastodon}",
|
"about.powered_by": "Hajutatud sotsiaalmeedia, mille taga on {mastodon}",
|
||||||
"about.rules": "Serveri reeglid",
|
"about.rules": "Serveri reeglid",
|
||||||
"account.account_note_header": "Märge",
|
|
||||||
"account.add_or_remove_from_list": "Lisa või Eemalda nimekirjadest",
|
"account.add_or_remove_from_list": "Lisa või Eemalda nimekirjadest",
|
||||||
"account.badges.bot": "Robot",
|
"account.badges.bot": "Robot",
|
||||||
"account.badges.group": "Grupp",
|
"account.badges.group": "Grupp",
|
||||||
|
@ -465,7 +464,6 @@
|
||||||
"notification.favourite": "{name} märkis su postituse lemmikuks",
|
"notification.favourite": "{name} märkis su postituse lemmikuks",
|
||||||
"notification.follow": "{name} alustas su jälgimist",
|
"notification.follow": "{name} alustas su jälgimist",
|
||||||
"notification.follow_request": "{name} soovib sind jälgida",
|
"notification.follow_request": "{name} soovib sind jälgida",
|
||||||
"notification.mention": "{name} mainis sind",
|
|
||||||
"notification.moderation-warning.learn_more": "Vaata lisa",
|
"notification.moderation-warning.learn_more": "Vaata lisa",
|
||||||
"notification.moderation_warning": "Said modereerimise hoiatuse",
|
"notification.moderation_warning": "Said modereerimise hoiatuse",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Mõni su postitus on eemaldatud.",
|
"notification.moderation_warning.action_delete_statuses": "Mõni su postitus on eemaldatud.",
|
||||||
|
@ -529,7 +527,6 @@
|
||||||
"notifications.policy.filter_not_following_title": "Inimesed, keda sa ei jälgi",
|
"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_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.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.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.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",
|
"notifications_permission_banner.title": "Ära jää millestki ilma",
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
"about.not_available": "Zerbitzari honek ez du informazio hau eskuragarri jarri.",
|
"about.not_available": "Zerbitzari honek ez du informazio hau eskuragarri jarri.",
|
||||||
"about.powered_by": "{mastodon} erabiltzen duen sare sozial deszentralizatua",
|
"about.powered_by": "{mastodon} erabiltzen duen sare sozial deszentralizatua",
|
||||||
"about.rules": "Zerbitzariaren arauak",
|
"about.rules": "Zerbitzariaren arauak",
|
||||||
"account.account_note_header": "Oharra",
|
|
||||||
"account.add_or_remove_from_list": "Gehitu edo kendu zerrendetatik",
|
"account.add_or_remove_from_list": "Gehitu edo kendu zerrendetatik",
|
||||||
"account.badges.bot": "Bot-a",
|
"account.badges.bot": "Bot-a",
|
||||||
"account.badges.group": "Taldea",
|
"account.badges.group": "Taldea",
|
||||||
|
@ -467,7 +466,6 @@
|
||||||
"notification.favourite": "{name}(e)k zure bidalketa gogoko du",
|
"notification.favourite": "{name}(e)k zure bidalketa gogoko du",
|
||||||
"notification.follow": "{name}(e)k jarraitzen dizu",
|
"notification.follow": "{name}(e)k jarraitzen dizu",
|
||||||
"notification.follow_request": "{name}(e)k zu jarraitzeko eskaera egin du",
|
"notification.follow_request": "{name}(e)k zu jarraitzeko eskaera egin du",
|
||||||
"notification.mention": "{name}(e)k aipatu zaitu",
|
|
||||||
"notification.moderation-warning.learn_more": "Informazio gehiago",
|
"notification.moderation-warning.learn_more": "Informazio gehiago",
|
||||||
"notification.moderation_warning": "Moderazio-abisu bat jaso duzu",
|
"notification.moderation_warning": "Moderazio-abisu bat jaso duzu",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Argitalpen batzuk kendu dira.",
|
"notification.moderation_warning.action_delete_statuses": "Argitalpen batzuk kendu dira.",
|
||||||
|
@ -532,7 +530,6 @@
|
||||||
"notifications.policy.filter_not_following_title": "Jarraitzen ez duzun jendea",
|
"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_hint": "Iragazita, baldin eta zure aipamenaren erantzuna bada edo bidaltzailea jarraitzen baduzu",
|
||||||
"notifications.policy.filter_private_mentions_title": "Eskatu gabeko aipamen pribatuak",
|
"notifications.policy.filter_private_mentions_title": "Eskatu gabeko aipamen pribatuak",
|
||||||
"notifications.policy.title": "Ez iragazi hemengo jakinarazpenak…",
|
|
||||||
"notifications_permission_banner.enable": "Gaitu mahaigaineko jakinarazpenak",
|
"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.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",
|
"notifications_permission_banner.title": "Ez galdu ezer inoiz",
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
"about.not_available": "این اطّلاعات روی این کارساز موجود نشده.",
|
"about.not_available": "این اطّلاعات روی این کارساز موجود نشده.",
|
||||||
"about.powered_by": "رسانهٔ اجتماعی نامتمرکز قدرت گرفته از {mastodon}",
|
"about.powered_by": "رسانهٔ اجتماعی نامتمرکز قدرت گرفته از {mastodon}",
|
||||||
"about.rules": "قوانین کارساز",
|
"about.rules": "قوانین کارساز",
|
||||||
"account.account_note_header": "یادداشت",
|
|
||||||
"account.add_or_remove_from_list": "افزودن یا برداشتن از سیاههها",
|
"account.add_or_remove_from_list": "افزودن یا برداشتن از سیاههها",
|
||||||
"account.badges.bot": "خودکار",
|
"account.badges.bot": "خودکار",
|
||||||
"account.badges.group": "گروه",
|
"account.badges.group": "گروه",
|
||||||
|
@ -436,7 +435,6 @@
|
||||||
"notification.favourite": "{name} فرستهتان را برگزید",
|
"notification.favourite": "{name} فرستهتان را برگزید",
|
||||||
"notification.follow": "{name} پیگیرتان شد",
|
"notification.follow": "{name} پیگیرتان شد",
|
||||||
"notification.follow_request": "{name} درخواست پیگیریتان را داد",
|
"notification.follow_request": "{name} درخواست پیگیریتان را داد",
|
||||||
"notification.mention": "{name} به شما اشاره کرد",
|
|
||||||
"notification.moderation-warning.learn_more": "بیشتر بدانید",
|
"notification.moderation-warning.learn_more": "بیشتر بدانید",
|
||||||
"notification.own_poll": "نظرسنجیتان پایان یافت",
|
"notification.own_poll": "نظرسنجیتان پایان یافت",
|
||||||
"notification.reblog": "{name} فرستهتان را تقویت کرد",
|
"notification.reblog": "{name} فرستهتان را تقویت کرد",
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"about.not_available": "Näitä tietoja ei ole julkaistu tällä palvelimella.",
|
"about.not_available": "Näitä tietoja ei ole julkaistu tällä palvelimella.",
|
||||||
"about.powered_by": "Hajautetun sosiaalisen median tarjoaa {mastodon}",
|
"about.powered_by": "Hajautetun sosiaalisen median tarjoaa {mastodon}",
|
||||||
"about.rules": "Palvelimen säännöt",
|
"about.rules": "Palvelimen säännöt",
|
||||||
"account.account_note_header": "Muistiinpano",
|
"account.account_note_header": "Henkilökohtainen muistiinpano",
|
||||||
"account.add_or_remove_from_list": "Lisää tai poista listoilta",
|
"account.add_or_remove_from_list": "Lisää tai poista listoilta",
|
||||||
"account.badges.bot": "Botti",
|
"account.badges.bot": "Botti",
|
||||||
"account.badges.group": "Ryhmä",
|
"account.badges.group": "Ryhmä",
|
||||||
|
@ -356,6 +356,17 @@
|
||||||
"home.pending_critical_update.link": "Tutustu päivityssisältöihin",
|
"home.pending_critical_update.link": "Tutustu päivityssisältöihin",
|
||||||
"home.pending_critical_update.title": "Kriittinen tietoturvapäivitys saatavilla!",
|
"home.pending_critical_update.title": "Kriittinen tietoturvapäivitys saatavilla!",
|
||||||
"home.show_announcements": "Näytä tiedotteet",
|
"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.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.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.",
|
"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.favourite": "{name} lisäsi julkaisusi suosikkeihinsa",
|
||||||
"notification.follow": "{name} seurasi sinua",
|
"notification.follow": "{name} seurasi sinua",
|
||||||
"notification.follow_request": "{name} on pyytänyt lupaa seurata 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.learn_more": "Lue lisää",
|
||||||
"notification.moderation_warning": "Olet saanut moderointivaroituksen",
|
"notification.moderation_warning": "Olet saanut moderointivaroituksen",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Julkaisujasi on poistettu.",
|
"notification.moderation_warning.action_delete_statuses": "Julkaisujasi on poistettu.",
|
||||||
|
@ -494,7 +509,6 @@
|
||||||
"notification.moderation_warning.action_suspend": "Tilisi on jäädytetty.",
|
"notification.moderation_warning.action_suspend": "Tilisi on jäädytetty.",
|
||||||
"notification.own_poll": "Äänestyksesi on päättynyt",
|
"notification.own_poll": "Äänestyksesi on päättynyt",
|
||||||
"notification.poll": "Äänestys, johon osallistuit, on päättynyt",
|
"notification.poll": "Äänestys, johon osallistuit, on päättynyt",
|
||||||
"notification.private_mention": "{name} mainitsi sinut yksityisesti",
|
|
||||||
"notification.reblog": "{name} tehosti julkaisuasi",
|
"notification.reblog": "{name} tehosti julkaisuasi",
|
||||||
"notification.relationships_severance_event": "Menetettiin yhteydet palvelimeen {name}",
|
"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.",
|
"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.status": "{name} julkaisi juuri",
|
||||||
"notification.update": "{name} muokkasi julkaisua",
|
"notification.update": "{name} muokkasi julkaisua",
|
||||||
"notification_requests.accept": "Hyväksy",
|
"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": "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.maximize": "Suurenna",
|
||||||
"notification_requests.minimize_banner": "Pienennä suodatettujen ilmoitusten palkki",
|
"notification_requests.minimize_banner": "Pienennä suodatettujen ilmoitusten palkki",
|
||||||
"notification_requests.notifications_from": "Ilmoitukset käyttäjältä {name}",
|
"notification_requests.notifications_from": "Ilmoitukset käyttäjältä {name}",
|
||||||
"notification_requests.title": "Suodatetut ilmoitukset",
|
"notification_requests.title": "Suodatetut ilmoitukset",
|
||||||
|
"notification_requests.view": "Näytä ilmoitukset",
|
||||||
"notifications.clear": "Tyhjennä ilmoitukset",
|
"notifications.clear": "Tyhjennä ilmoitukset",
|
||||||
"notifications.clear_confirmation": "Haluatko varmasti poistaa kaikki ilmoitukset pysyvästi?",
|
"notifications.clear_confirmation": "Haluatko varmasti poistaa kaikki ilmoitukset pysyvästi?",
|
||||||
"notifications.clear_title": "Tyhjennetäänkö ilmoitukset?",
|
"notifications.clear_title": "Tyhjennetäänkö ilmoitukset?",
|
||||||
|
@ -545,6 +574,14 @@
|
||||||
"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": "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_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.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",
|
"notifications.policy.filter_new_accounts.hint": "Luotu {days, plural, one {viime päivän} other {viimeisen # päivän}} aikana",
|
||||||
"notifications.policy.filter_new_accounts_title": "Uudet tilit",
|
"notifications.policy.filter_new_accounts_title": "Uudet tilit",
|
||||||
"notifications.policy.filter_not_followers_hint": "Mukaan lukien alle {days, plural, one {päivän} other {# päivää}} sinua seuranneet",
|
"notifications.policy.filter_not_followers_hint": "Mukaan lukien alle {days, plural, one {päivän} other {# päivää}} sinua seuranneet",
|
||||||
|
@ -553,7 +590,7 @@
|
||||||
"notifications.policy.filter_not_following_title": "Käyttäjät, joita et seuraa",
|
"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_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.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.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.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",
|
"notifications_permission_banner.title": "Älä anna minkään mennä ohi",
|
||||||
|
@ -794,6 +831,7 @@
|
||||||
"timeline_hint.remote_resource_not_displayed": "Muiden palvelinten {resource} eivät näy tässä.",
|
"timeline_hint.remote_resource_not_displayed": "Muiden palvelinten {resource} eivät näy tässä.",
|
||||||
"timeline_hint.resources.followers": "seuraajat",
|
"timeline_hint.resources.followers": "seuraajat",
|
||||||
"timeline_hint.resources.follows": "seuratut",
|
"timeline_hint.resources.follows": "seuratut",
|
||||||
|
"timeline_hint.resources.replies": "kaikki vastaukset",
|
||||||
"timeline_hint.resources.statuses": "vanhemmat julkaisut",
|
"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.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",
|
"trends.trending_now": "Suosittua nyt",
|
||||||
|
|
|
@ -6,7 +6,6 @@
|
||||||
"about.domain_blocks.silenced.title": "Limitado",
|
"about.domain_blocks.silenced.title": "Limitado",
|
||||||
"about.domain_blocks.suspended.title": "Suspendido",
|
"about.domain_blocks.suspended.title": "Suspendido",
|
||||||
"about.rules": "Mga alituntunin ng server",
|
"about.rules": "Mga alituntunin ng server",
|
||||||
"account.account_note_header": "Tala",
|
|
||||||
"account.add_or_remove_from_list": "I-dagdag o tanggalin mula sa mga listahan",
|
"account.add_or_remove_from_list": "I-dagdag o tanggalin mula sa mga listahan",
|
||||||
"account.badges.bot": "Pakusa",
|
"account.badges.bot": "Pakusa",
|
||||||
"account.badges.group": "Pangkat",
|
"account.badges.group": "Pangkat",
|
||||||
|
@ -240,7 +239,6 @@
|
||||||
"notification.admin.report": "Iniulat ni {name} si {target}",
|
"notification.admin.report": "Iniulat ni {name} si {target}",
|
||||||
"notification.follow": "Sinundan ka ni {name}",
|
"notification.follow": "Sinundan ka ni {name}",
|
||||||
"notification.follow_request": "Hinihiling ni {name} na sundan ka",
|
"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.moderation_warning": "Mayroong kang natanggap na babala sa pagtitimpi",
|
||||||
"notification.relationships_severance_event.learn_more": "Matuto nang higit pa",
|
"notification.relationships_severance_event.learn_more": "Matuto nang higit pa",
|
||||||
"notification_requests.accept": "Tanggapin",
|
"notification_requests.accept": "Tanggapin",
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"about.not_available": "Hetta er ikki tøkt á føroyska servaranum enn.",
|
"about.not_available": "Hetta er ikki tøkt á føroyska servaranum enn.",
|
||||||
"about.powered_by": "Miðfirra almennur miðil koyrandi á {mastodon}",
|
"about.powered_by": "Miðfirra almennur miðil koyrandi á {mastodon}",
|
||||||
"about.rules": "Ambætarareglur",
|
"about.rules": "Ambætarareglur",
|
||||||
"account.account_note_header": "Viðmerking",
|
"account.account_note_header": "Persónlig viðmerking",
|
||||||
"account.add_or_remove_from_list": "Legg afturat ella tak av listum",
|
"account.add_or_remove_from_list": "Legg afturat ella tak av listum",
|
||||||
"account.badges.bot": "Bottur",
|
"account.badges.bot": "Bottur",
|
||||||
"account.badges.group": "Bólkur",
|
"account.badges.group": "Bólkur",
|
||||||
|
@ -72,7 +72,7 @@
|
||||||
"account.unmute": "Doyv ikki @{name}",
|
"account.unmute": "Doyv ikki @{name}",
|
||||||
"account.unmute_notifications_short": "Tendra fráboðanir",
|
"account.unmute_notifications_short": "Tendra fráboðanir",
|
||||||
"account.unmute_short": "Doyv ikki",
|
"account.unmute_short": "Doyv ikki",
|
||||||
"account_note.placeholder": "Klikka fyri at leggja notu afturat",
|
"account_note.placeholder": "Klikka fyri at leggja viðmerking afturat",
|
||||||
"admin.dashboard.daily_retention": "Hvussu nógvir brúkarar eru eftir, síðani tey skrásettu seg, roknað í døgum",
|
"admin.dashboard.daily_retention": "Hvussu nógvir brúkarar eru eftir, síðani tey skrásettu seg, roknað í døgum",
|
||||||
"admin.dashboard.monthly_retention": "Hvussu nógvir brúkarar eru eftir síðani tey skrásettu seg, roknað í mánaðum",
|
"admin.dashboard.monthly_retention": "Hvussu nógvir brúkarar eru eftir síðani tey skrásettu seg, roknað í mánaðum",
|
||||||
"admin.dashboard.retention.average": "Miðal",
|
"admin.dashboard.retention.average": "Miðal",
|
||||||
|
@ -301,7 +301,7 @@
|
||||||
"filter_modal.select_filter.title": "Filtrera hendan postin",
|
"filter_modal.select_filter.title": "Filtrera hendan postin",
|
||||||
"filter_modal.title.status": "Filtrera ein post",
|
"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.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.all": "Allar",
|
||||||
"firehose.local": "Hesin ambætarin",
|
"firehose.local": "Hesin ambætarin",
|
||||||
"firehose.remote": "Aðrir ambætarar",
|
"firehose.remote": "Aðrir ambætarar",
|
||||||
|
@ -356,6 +356,17 @@
|
||||||
"home.pending_critical_update.link": "Sí dagføringar",
|
"home.pending_critical_update.link": "Sí dagføringar",
|
||||||
"home.pending_critical_update.title": "Kritisk trygdardagføring er tøk!",
|
"home.pending_critical_update.title": "Kritisk trygdardagføring er tøk!",
|
||||||
"home.show_announcements": "Vís kunngerðir",
|
"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ú kann 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.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.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.",
|
"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.favourite": "{name} dámdi postin hjá tær",
|
||||||
"notification.follow": "{name} fylgdi tær",
|
"notification.follow": "{name} fylgdi tær",
|
||||||
"notification.follow_request": "{name} biður um at fylgja 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.learn_more": "Lær meira",
|
||||||
"notification.moderation_warning": "Tú hevur móttikið eina umsjónarávaring",
|
"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.",
|
"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.moderation_warning.action_suspend": "Konta tín er ógildað.",
|
||||||
"notification.own_poll": "Tín atkvøðugreiðsla er endað",
|
"notification.own_poll": "Tín atkvøðugreiðsla er endað",
|
||||||
"notification.poll": "Ein atkvøðugreiðsla, har tú atkvøddi, 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.reblog": "{name} lyfti tín post",
|
||||||
"notification.relationships_severance_event": "Mist sambond við {name}",
|
"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.",
|
"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.status": "{name} hevur júst postað",
|
||||||
"notification.update": "{name} rættaði ein post",
|
"notification.update": "{name} rættaði ein post",
|
||||||
"notification_requests.accept": "Góðtak",
|
"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": "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.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.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": "Rudda fráboðanir",
|
||||||
"notifications.clear_confirmation": "Ert tú vís/ur í, at tú vilt strika allar tínar 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?",
|
"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": "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_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.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.hint": "Stovnaðar {days, plural, one {seinasta dagin} other {seinastu # dagarnar}}",
|
||||||
"notifications.policy.filter_new_accounts_title": "Nýggjar kontur",
|
"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_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_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_hint": "Til tú góðkennir tey manuelt",
|
||||||
"notifications.policy.filter_not_following_title": "Fólk, sum tú ikki fylgir",
|
"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.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.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.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",
|
"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.remote_resource_not_displayed": "{resource} frá øðrum ambætarum verður ikki víst.",
|
||||||
"timeline_hint.resources.followers": "Fylgjarar",
|
"timeline_hint.resources.followers": "Fylgjarar",
|
||||||
"timeline_hint.resources.follows": "Fylgir",
|
"timeline_hint.resources.follows": "Fylgir",
|
||||||
|
"timeline_hint.resources.replies": "Nøkur svar",
|
||||||
"timeline_hint.resources.statuses": "Gamlir postar",
|
"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.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ú",
|
"trends.trending_now": "Rák beint nú",
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
"about.not_available": "Cette information n'a pas été rendue disponible sur ce serveur.",
|
"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.powered_by": "Réseau social décentralisé propulsé par {mastodon}",
|
||||||
"about.rules": "Règles du serveur",
|
"about.rules": "Règles du serveur",
|
||||||
"account.account_note_header": "Note",
|
|
||||||
"account.add_or_remove_from_list": "Ajouter ou enlever de listes",
|
"account.add_or_remove_from_list": "Ajouter ou enlever de listes",
|
||||||
"account.badges.bot": "Bot",
|
"account.badges.bot": "Bot",
|
||||||
"account.badges.group": "Groupe",
|
"account.badges.group": "Groupe",
|
||||||
|
@ -466,7 +465,6 @@
|
||||||
"notification.favourite": "{name} a ajouté votre publication à ses favoris",
|
"notification.favourite": "{name} a ajouté votre publication à ses favoris",
|
||||||
"notification.follow": "{name} vous suit",
|
"notification.follow": "{name} vous suit",
|
||||||
"notification.follow_request": "{name} a demandé à vous suivre",
|
"notification.follow_request": "{name} a demandé à vous suivre",
|
||||||
"notification.mention": "{name} vous a mentionné·e",
|
|
||||||
"notification.own_poll": "Votre sondage est terminé",
|
"notification.own_poll": "Votre sondage est terminé",
|
||||||
"notification.reblog": "{name} a boosté votre message",
|
"notification.reblog": "{name} a boosté votre message",
|
||||||
"notification.relationships_severance_event": "Connexions perdues avec {name}",
|
"notification.relationships_severance_event": "Connexions perdues avec {name}",
|
||||||
|
@ -522,7 +520,6 @@
|
||||||
"notifications.policy.filter_not_following_title": "Personnes que vous ne suivez pas",
|
"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_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.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.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.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",
|
"notifications_permission_banner.title": "Ne rien rater",
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
"about.not_available": "Cette information n'a pas été rendue disponible sur ce serveur.",
|
"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.powered_by": "Réseau social décentralisé propulsé par {mastodon}",
|
||||||
"about.rules": "Règles du serveur",
|
"about.rules": "Règles du serveur",
|
||||||
"account.account_note_header": "Note",
|
|
||||||
"account.add_or_remove_from_list": "Ajouter ou retirer des listes",
|
"account.add_or_remove_from_list": "Ajouter ou retirer des listes",
|
||||||
"account.badges.bot": "Bot",
|
"account.badges.bot": "Bot",
|
||||||
"account.badges.group": "Groupe",
|
"account.badges.group": "Groupe",
|
||||||
|
@ -466,7 +465,6 @@
|
||||||
"notification.favourite": "{name} a ajouté votre message à ses favoris",
|
"notification.favourite": "{name} a ajouté votre message à ses favoris",
|
||||||
"notification.follow": "{name} vous suit",
|
"notification.follow": "{name} vous suit",
|
||||||
"notification.follow_request": "{name} a demandé à vous suivre",
|
"notification.follow_request": "{name} a demandé à vous suivre",
|
||||||
"notification.mention": "{name} vous a mentionné·e :",
|
|
||||||
"notification.own_poll": "Votre sondage est terminé",
|
"notification.own_poll": "Votre sondage est terminé",
|
||||||
"notification.reblog": "{name} a partagé votre message",
|
"notification.reblog": "{name} a partagé votre message",
|
||||||
"notification.relationships_severance_event": "Connexions perdues avec {name}",
|
"notification.relationships_severance_event": "Connexions perdues avec {name}",
|
||||||
|
@ -522,7 +520,6 @@
|
||||||
"notifications.policy.filter_not_following_title": "Personnes que vous ne suivez pas",
|
"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_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.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.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.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",
|
"notifications_permission_banner.title": "Toujours au courant",
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
"about.not_available": "Dizze ynformaasje is troch dizze server net iepenbier makke.",
|
"about.not_available": "Dizze ynformaasje is troch dizze server net iepenbier makke.",
|
||||||
"about.powered_by": "Desintralisearre sosjale media, mooglik makke troch {mastodon}",
|
"about.powered_by": "Desintralisearre sosjale media, mooglik makke troch {mastodon}",
|
||||||
"about.rules": "Serverrigels",
|
"about.rules": "Serverrigels",
|
||||||
"account.account_note_header": "Opmerking",
|
|
||||||
"account.add_or_remove_from_list": "Tafoegje oan of fuortsmite út listen",
|
"account.add_or_remove_from_list": "Tafoegje oan of fuortsmite út listen",
|
||||||
"account.badges.bot": "Automatisearre",
|
"account.badges.bot": "Automatisearre",
|
||||||
"account.badges.group": "Groep",
|
"account.badges.group": "Groep",
|
||||||
|
@ -471,7 +470,6 @@
|
||||||
"notification.favourite": "{name} hat jo berjocht as favoryt markearre",
|
"notification.favourite": "{name} hat jo berjocht as favoryt markearre",
|
||||||
"notification.follow": "{name} folget dy",
|
"notification.follow": "{name} folget dy",
|
||||||
"notification.follow_request": "{name} hat dy in folchfersyk stjoerd",
|
"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.learn_more": "Mear ynfo",
|
||||||
"notification.moderation_warning": "Jo hawwe in moderaasje-warskôging ûntfongen",
|
"notification.moderation_warning": "Jo hawwe in moderaasje-warskôging ûntfongen",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Guon fan jo berjochten binne fuortsmiten.",
|
"notification.moderation_warning.action_delete_statuses": "Guon fan jo berjochten binne fuortsmiten.",
|
||||||
|
@ -483,7 +481,6 @@
|
||||||
"notification.moderation_warning.action_suspend": "Jo account is útsteld.",
|
"notification.moderation_warning.action_suspend": "Jo account is útsteld.",
|
||||||
"notification.own_poll": "Jo poll is beëinige",
|
"notification.own_poll": "Jo poll is beëinige",
|
||||||
"notification.poll": "In enkête dêr’t jo oan meidien hawwe 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.reblog": "{name} hat jo berjocht boost",
|
||||||
"notification.relationships_severance_event": "Ferlerne ferbiningen mei {name}",
|
"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.",
|
"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,7 +11,7 @@
|
||||||
"about.not_available": "Níor cuireadh an t-eolas seo ar fáil ar an bhfreastalaí seo.",
|
"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.powered_by": "Meáin shóisialta díláraithe faoi chumhacht {mastodon}",
|
||||||
"about.rules": "Rialacha an fhreastalaí",
|
"about.rules": "Rialacha an fhreastalaí",
|
||||||
"account.account_note_header": "Nóta",
|
"account.account_note_header": "Nóta pearsanta",
|
||||||
"account.add_or_remove_from_list": "Cuir Le nó Bain De na liostaí",
|
"account.add_or_remove_from_list": "Cuir Le nó Bain De na liostaí",
|
||||||
"account.badges.bot": "Bota",
|
"account.badges.bot": "Bota",
|
||||||
"account.badges.group": "Grúpa",
|
"account.badges.group": "Grúpa",
|
||||||
|
@ -356,6 +356,17 @@
|
||||||
"home.pending_critical_update.link": "Féach nuashonruithe",
|
"home.pending_critical_update.link": "Féach nuashonruithe",
|
||||||
"home.pending_critical_update.title": "Nuashonrú slándála ríthábhachtach ar fáil!",
|
"home.pending_critical_update.title": "Nuashonrú slándála ríthábhachtach ar fáil!",
|
||||||
"home.show_announcements": "Taispeáin fógraí",
|
"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.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.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.",
|
"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.",
|
||||||
|
@ -482,7 +493,11 @@
|
||||||
"notification.favourite": "Is fearr le {name} do phostáil",
|
"notification.favourite": "Is fearr le {name} do phostáil",
|
||||||
"notification.follow": "Lean {name} thú",
|
"notification.follow": "Lean {name} thú",
|
||||||
"notification.follow_request": "D'iarr {name} ort do chuntas a leanúint",
|
"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.learn_more": "Foghlaim níos mó",
|
||||||
"notification.moderation_warning": "Tá rabhadh modhnóireachta faighte agat",
|
"notification.moderation_warning": "Tá rabhadh modhnóireachta faighte agat",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Baineadh cuid de do phostálacha.",
|
"notification.moderation_warning.action_delete_statuses": "Baineadh cuid de do phostálacha.",
|
||||||
|
@ -494,7 +509,6 @@
|
||||||
"notification.moderation_warning.action_suspend": "Cuireadh do chuntas ar fionraí.",
|
"notification.moderation_warning.action_suspend": "Cuireadh do chuntas ar fionraí.",
|
||||||
"notification.own_poll": "Tá do suirbhé críochnaithe",
|
"notification.own_poll": "Tá do suirbhé críochnaithe",
|
||||||
"notification.poll": "Tá deireadh le vótaíocht inar vótáil tú",
|
"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.reblog": "Mhol {name} do phostáil",
|
||||||
"notification.relationships_severance_event": "Cailleadh naisc le {name}",
|
"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.",
|
"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.",
|
||||||
|
@ -504,9 +518,26 @@
|
||||||
"notification.status": "Phostáil {name} díreach",
|
"notification.status": "Phostáil {name} díreach",
|
||||||
"notification.update": "Chuir {name} postáil in eagar",
|
"notification.update": "Chuir {name} postáil in eagar",
|
||||||
"notification_requests.accept": "Glac",
|
"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": "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.notifications_from": "Fógraí ó {name}",
|
||||||
"notification_requests.title": "Fógraí scagtha",
|
"notification_requests.title": "Fógraí scagtha",
|
||||||
|
"notification_requests.view": "Féach ar fhógraí",
|
||||||
"notifications.clear": "Glan fó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_confirmation": "An bhfuil tú cinnte gur mhaith leat d'fhógraí go léir a ghlanadh go buan?",
|
||||||
"notifications.clear_title": "Glan fógraí?",
|
"notifications.clear_title": "Glan fógraí?",
|
||||||
|
@ -543,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": "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_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.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.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_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á}}",
|
"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á}}",
|
||||||
|
@ -551,7 +590,7 @@
|
||||||
"notifications.policy.filter_not_following_title": "Daoine nach leanann tú",
|
"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_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.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.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.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",
|
"notifications_permission_banner.title": "Ná caill aon rud go deo",
|
||||||
|
@ -792,6 +831,7 @@
|
||||||
"timeline_hint.remote_resource_not_displayed": "Níl {resource} ó fhreastalaithe eile ar taispeáint.",
|
"timeline_hint.remote_resource_not_displayed": "Níl {resource} ó fhreastalaithe eile ar taispeáint.",
|
||||||
"timeline_hint.resources.followers": "Leantóirí",
|
"timeline_hint.resources.followers": "Leantóirí",
|
||||||
"timeline_hint.resources.follows": "Cuntais leanta",
|
"timeline_hint.resources.follows": "Cuntais leanta",
|
||||||
|
"timeline_hint.resources.replies": "Roinnt freagraí",
|
||||||
"timeline_hint.resources.statuses": "Postáilí níos sine",
|
"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.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",
|
"trends.trending_now": "Ag treochtáil anois",
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"about.not_available": "Cha deach am fiosrachadh seo a sholar air an fhrithealaiche seo.",
|
"about.not_available": "Cha deach am fiosrachadh seo a sholar air an fhrithealaiche seo.",
|
||||||
"about.powered_by": "Lìonra sòisealta sgaoilte le cumhachd {mastodon}",
|
"about.powered_by": "Lìonra sòisealta sgaoilte le cumhachd {mastodon}",
|
||||||
"about.rules": "Riaghailtean an fhrithealaiche",
|
"about.rules": "Riaghailtean an fhrithealaiche",
|
||||||
"account.account_note_header": "Nòta",
|
"account.account_note_header": "Nòta pearsanta",
|
||||||
"account.add_or_remove_from_list": "Cuir ris no thoir air falbh o liostaichean",
|
"account.add_or_remove_from_list": "Cuir ris no thoir air falbh o liostaichean",
|
||||||
"account.badges.bot": "Fèin-obrachail",
|
"account.badges.bot": "Fèin-obrachail",
|
||||||
"account.badges.group": "Buidheann",
|
"account.badges.group": "Buidheann",
|
||||||
|
@ -482,7 +482,6 @@
|
||||||
"notification.favourite": "Is annsa le {name} am post agad",
|
"notification.favourite": "Is annsa le {name} am post agad",
|
||||||
"notification.follow": "Tha {name} ’gad leantainn a-nis",
|
"notification.follow": "Tha {name} ’gad leantainn a-nis",
|
||||||
"notification.follow_request": "Dh’iarr {name} ’gad leantainn",
|
"notification.follow_request": "Dh’iarr {name} ’gad leantainn",
|
||||||
"notification.mention": "Thug {name} iomradh ort",
|
|
||||||
"notification.moderation-warning.learn_more": "Barrachd fiosrachaidh",
|
"notification.moderation-warning.learn_more": "Barrachd fiosrachaidh",
|
||||||
"notification.moderation_warning": "Fhuair thu rabhadh on mhaorsainneachd",
|
"notification.moderation_warning": "Fhuair thu rabhadh on mhaorsainneachd",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Chaidh cuid dhe na postaichean agad a thoirt air falbh.",
|
"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.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.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.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.reblog": "Bhrosnaich {name} am post agad",
|
||||||
"notification.relationships_severance_event": "Chaill thu dàimhean le {name}",
|
"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.",
|
"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.",
|
||||||
|
@ -505,6 +503,8 @@
|
||||||
"notification.update": "Dheasaich {name} post",
|
"notification.update": "Dheasaich {name} post",
|
||||||
"notification_requests.accept": "Gabh ris",
|
"notification_requests.accept": "Gabh ris",
|
||||||
"notification_requests.dismiss": "Leig seachad",
|
"notification_requests.dismiss": "Leig seachad",
|
||||||
|
"notification_requests.maximize": "Làn-mheudaich",
|
||||||
|
"notification_requests.minimize_banner": "Fìor-lùghdaich bratach nam brathan criathraichte",
|
||||||
"notification_requests.notifications_from": "Brathan o {name}",
|
"notification_requests.notifications_from": "Brathan o {name}",
|
||||||
"notification_requests.title": "Brathan criathraichte",
|
"notification_requests.title": "Brathan criathraichte",
|
||||||
"notifications.clear": "Falamhaich na brathan",
|
"notifications.clear": "Falamhaich na brathan",
|
||||||
|
@ -551,7 +551,6 @@
|
||||||
"notifications.policy.filter_not_following_title": "Daoine nach eil thu a’ leantainn",
|
"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_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.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.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.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",
|
"notifications_permission_banner.title": "Na caill dad gu bràth tuilleadh",
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"about.not_available": "Esta información non está dispoñible neste servidor.",
|
"about.not_available": "Esta información non está dispoñible neste servidor.",
|
||||||
"about.powered_by": "Comunicación social descentralizada grazas a {mastodon}",
|
"about.powered_by": "Comunicación social descentralizada grazas a {mastodon}",
|
||||||
"about.rules": "Regras do servidor",
|
"about.rules": "Regras do servidor",
|
||||||
"account.account_note_header": "Nota",
|
"account.account_note_header": "Nota persoal",
|
||||||
"account.add_or_remove_from_list": "Engadir ou eliminar das listaxes",
|
"account.add_or_remove_from_list": "Engadir ou eliminar das listaxes",
|
||||||
"account.badges.bot": "Automatizada",
|
"account.badges.bot": "Automatizada",
|
||||||
"account.badges.group": "Grupo",
|
"account.badges.group": "Grupo",
|
||||||
|
@ -356,6 +356,17 @@
|
||||||
"home.pending_critical_update.link": "Mira as actualizacións",
|
"home.pending_critical_update.link": "Mira as actualizacións",
|
||||||
"home.pending_critical_update.title": "Hai una actualización crítica de seguridade!",
|
"home.pending_critical_update.title": "Hai una actualización crítica de seguridade!",
|
||||||
"home.show_announcements": "Amosar anuncios",
|
"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.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.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.",
|
"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.favourite": "{name} marcou como favorita a túa publicación",
|
||||||
"notification.follow": "{name} comezou a seguirte",
|
"notification.follow": "{name} comezou a seguirte",
|
||||||
"notification.follow_request": "{name} solicitou 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.learn_more": "Saber máis",
|
||||||
"notification.moderation_warning": "Recibiches unha advertencia da moderación",
|
"notification.moderation_warning": "Recibiches unha advertencia da moderación",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Algunha das túas publicacións foron eliminadas.",
|
"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.moderation_warning.action_suspend": "A túa conta foi suspendida.",
|
||||||
"notification.own_poll": "A túa enquisa rematou",
|
"notification.own_poll": "A túa enquisa rematou",
|
||||||
"notification.poll": "Rematou a enquisa na que votaches",
|
"notification.poll": "Rematou a enquisa na que votaches",
|
||||||
"notification.private_mention": "{name} mencionoute de xeito privado",
|
|
||||||
"notification.reblog": "{name} compartiu a túa publicación",
|
"notification.reblog": "{name} compartiu a túa publicación",
|
||||||
"notification.relationships_severance_event": "Perdeuse a conexión con {name}",
|
"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.",
|
"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.status": "{name} publicou",
|
||||||
"notification.update": "{name} editou unha publicación",
|
"notification.update": "{name} editou unha publicación",
|
||||||
"notification_requests.accept": "Aceptar",
|
"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": "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.maximize": "Maximizar",
|
||||||
"notification_requests.minimize_banner": "Minimizar o anuncio de notificacións filtradas",
|
"notification_requests.minimize_banner": "Minimizar o anuncio de notificacións filtradas",
|
||||||
"notification_requests.notifications_from": "Notificacións de {name}",
|
"notification_requests.notifications_from": "Notificacións de {name}",
|
||||||
"notification_requests.title": "Notificacións filtradas",
|
"notification_requests.title": "Notificacións filtradas",
|
||||||
|
"notification_requests.view": "Ver notificacións",
|
||||||
"notifications.clear": "Limpar 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_confirmation": "Tes a certeza de querer limpar de xeito permanente todas as túas notificacións?",
|
||||||
"notifications.clear_title": "Limpar 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": "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_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.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.hint": "Creadas desde {days, plural, one {onte} other {fai # días}}",
|
||||||
"notifications.policy.filter_new_accounts_title": "Novas contas",
|
"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}}",
|
"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_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_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.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.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.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",
|
"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.remote_resource_not_displayed": "Non se mostran {resource} desde outros servidores.",
|
||||||
"timeline_hint.resources.followers": "Seguidoras",
|
"timeline_hint.resources.followers": "Seguidoras",
|
||||||
"timeline_hint.resources.follows": "Seguindo",
|
"timeline_hint.resources.follows": "Seguindo",
|
||||||
|
"timeline_hint.resources.replies": "Algunhas respostas",
|
||||||
"timeline_hint.resources.statuses": "Publicacións antigas",
|
"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.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",
|
"trends.trending_now": "Tendencias actuais",
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"about.not_available": "המידע אינו זמין על שרת זה.",
|
"about.not_available": "המידע אינו זמין על שרת זה.",
|
||||||
"about.powered_by": "רשת חברתית מבוזרת המופעלת על ידי {mastodon}",
|
"about.powered_by": "רשת חברתית מבוזרת המופעלת על ידי {mastodon}",
|
||||||
"about.rules": "כללי השרת",
|
"about.rules": "כללי השרת",
|
||||||
"account.account_note_header": "הערה",
|
"account.account_note_header": "הערה אישית",
|
||||||
"account.add_or_remove_from_list": "הוספה או הסרה מרשימות",
|
"account.add_or_remove_from_list": "הוספה או הסרה מרשימות",
|
||||||
"account.badges.bot": "בוט",
|
"account.badges.bot": "בוט",
|
||||||
"account.badges.group": "קבוצה",
|
"account.badges.group": "קבוצה",
|
||||||
|
@ -356,6 +356,8 @@
|
||||||
"home.pending_critical_update.link": "צפיה בעדכונים",
|
"home.pending_critical_update.link": "צפיה בעדכונים",
|
||||||
"home.pending_critical_update.title": "יצא עדכון אבטחה חשוב!",
|
"home.pending_critical_update.title": "יצא עדכון אבטחה חשוב!",
|
||||||
"home.show_announcements": "הצג הכרזות",
|
"home.show_announcements": "הצג הכרזות",
|
||||||
|
"ignore_notifications_modal.filter_to_act_users": "עדיין ביכולתך לקבל, לדחות ולדווח על משתמשים אחרים",
|
||||||
|
"ignore_notifications_modal.filter_to_review_separately": "ניתן לסקור התראות מפולטרות בנפרד",
|
||||||
"interaction_modal.description.favourite": "עם חשבון מסטודון, ניתן לחבב את ההודעה כדי לומר למחבר/ת שהערכת את תוכנו או כדי לשמור אותו לקריאה בעתיד.",
|
"interaction_modal.description.favourite": "עם חשבון מסטודון, ניתן לחבב את ההודעה כדי לומר למחבר/ת שהערכת את תוכנו או כדי לשמור אותו לקריאה בעתיד.",
|
||||||
"interaction_modal.description.follow": "עם חשבון מסטודון, ניתן לעקוב אחרי {name} כדי לקבל את הפוסטים שלו/ה בפיד הבית.",
|
"interaction_modal.description.follow": "עם חשבון מסטודון, ניתן לעקוב אחרי {name} כדי לקבל את הפוסטים שלו/ה בפיד הבית.",
|
||||||
"interaction_modal.description.reblog": "עם חשבון מסטודון, ניתן להדהד את החצרוץ ולשתף עם עוקבים.",
|
"interaction_modal.description.reblog": "עם חשבון מסטודון, ניתן להדהד את החצרוץ ולשתף עם עוקבים.",
|
||||||
|
@ -482,7 +484,11 @@
|
||||||
"notification.favourite": "הודעתך חובבה על ידי {name}",
|
"notification.favourite": "הודעתך חובבה על ידי {name}",
|
||||||
"notification.follow": "{name} במעקב אחרייך",
|
"notification.follow": "{name} במעקב אחרייך",
|
||||||
"notification.follow_request": "{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.learn_more": "למידע נוסף",
|
||||||
"notification.moderation_warning": "קיבלת אזהרה מצוות ניהול התוכן",
|
"notification.moderation_warning": "קיבלת אזהרה מצוות ניהול התוכן",
|
||||||
"notification.moderation_warning.action_delete_statuses": "חלק מהודעותיך הוסרו.",
|
"notification.moderation_warning.action_delete_statuses": "חלק מהודעותיך הוסרו.",
|
||||||
|
@ -494,7 +500,6 @@
|
||||||
"notification.moderation_warning.action_suspend": "חשבונך הושעה.",
|
"notification.moderation_warning.action_suspend": "חשבונך הושעה.",
|
||||||
"notification.own_poll": "הסקר שלך הסתיים",
|
"notification.own_poll": "הסקר שלך הסתיים",
|
||||||
"notification.poll": "סקר שהצבעת בו הסתיים",
|
"notification.poll": "סקר שהצבעת בו הסתיים",
|
||||||
"notification.private_mention": "{name} פנה/פנתה אליך בפרטיות",
|
|
||||||
"notification.reblog": "הודעתך הודהדה על ידי {name}",
|
"notification.reblog": "הודעתך הודהדה על ידי {name}",
|
||||||
"notification.relationships_severance_event": "אבד הקשר עם {name}",
|
"notification.relationships_severance_event": "אבד הקשר עם {name}",
|
||||||
"notification.relationships_severance_event.account_suspension": "מנהל.ת משרת {from} השע(ת)ה את {target}, ולפיכך לא תעודכנו יותר על ידם ולא תוכלו להיות איתם בקשר.",
|
"notification.relationships_severance_event.account_suspension": "מנהל.ת משרת {from} השע(ת)ה את {target}, ולפיכך לא תעודכנו יותר על ידם ולא תוכלו להיות איתם בקשר.",
|
||||||
|
@ -505,6 +510,8 @@
|
||||||
"notification.update": "{name} ערכו הודעה",
|
"notification.update": "{name} ערכו הודעה",
|
||||||
"notification_requests.accept": "לקבל",
|
"notification_requests.accept": "לקבל",
|
||||||
"notification_requests.dismiss": "לבטל",
|
"notification_requests.dismiss": "לבטל",
|
||||||
|
"notification_requests.explainer_for_limited_account": "התראות על פעולות חשבון זה סוננו כי חשבון זה הוגבל על ידי מנהלי הדיונים.",
|
||||||
|
"notification_requests.explainer_for_limited_remote_account": "התראות על פעולות חשבון זה סוננו כי חשבון זה או השרת שלו הוגבלו על ידי מנהלי הדיונים.",
|
||||||
"notification_requests.maximize": "הגדלה למקסימום",
|
"notification_requests.maximize": "הגדלה למקסימום",
|
||||||
"notification_requests.minimize_banner": "להקטין את כותרת ההודעות המפולטרות",
|
"notification_requests.minimize_banner": "להקטין את כותרת ההודעות המפולטרות",
|
||||||
"notification_requests.notifications_from": "התראות מ־ {name}",
|
"notification_requests.notifications_from": "התראות מ־ {name}",
|
||||||
|
@ -545,6 +552,8 @@
|
||||||
"notifications.permission_denied": "לא ניתן להציג התראות מסך כיוון כיוון שהרשאות דפדפן נשללו בעבר",
|
"notifications.permission_denied": "לא ניתן להציג התראות מסך כיוון כיוון שהרשאות דפדפן נשללו בעבר",
|
||||||
"notifications.permission_denied_alert": "לא ניתן לאפשר נוטיפיקציות מסך שכן הדפדפן סורב הרשאה בעבר",
|
"notifications.permission_denied_alert": "לא ניתן לאפשר נוטיפיקציות מסך שכן הדפדפן סורב הרשאה בעבר",
|
||||||
"notifications.permission_required": "לא ניתן לאפשר נוטיפיקציות מסך כיוון שהרשאה דרושה לא ניתנה.",
|
"notifications.permission_required": "לא ניתן לאפשר נוטיפיקציות מסך כיוון שהרשאה דרושה לא ניתנה.",
|
||||||
|
"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.hint": "נוצר {days, plural,one {ביום האחרון} two {ביומיים האחרונים} other {ב־# הימים האחרונים}}",
|
||||||
"notifications.policy.filter_new_accounts_title": "חשבונות חדשים",
|
"notifications.policy.filter_new_accounts_title": "חשבונות חדשים",
|
||||||
"notifications.policy.filter_not_followers_hint": "כולל משתמשים שעקבו אחריך פחות מ{days, plural,one {יום} two {יומיים} other {־# ימים}}",
|
"notifications.policy.filter_not_followers_hint": "כולל משתמשים שעקבו אחריך פחות מ{days, plural,one {יום} two {יומיים} other {־# ימים}}",
|
||||||
|
@ -553,7 +562,6 @@
|
||||||
"notifications.policy.filter_not_following_title": "משתמשים שאינך עוקב(ת) אחריהםן",
|
"notifications.policy.filter_not_following_title": "משתמשים שאינך עוקב(ת) אחריהםן",
|
||||||
"notifications.policy.filter_private_mentions_hint": "מסונן אלא אם זו תשובה למינשון שלך או אם אתם עוקבים אחרי העונה",
|
"notifications.policy.filter_private_mentions_hint": "מסונן אלא אם זו תשובה למינשון שלך או אם אתם עוקבים אחרי העונה",
|
||||||
"notifications.policy.filter_private_mentions_title": "מינשונים בפרטי שלא הוזמנו",
|
"notifications.policy.filter_private_mentions_title": "מינשונים בפרטי שלא הוזמנו",
|
||||||
"notifications.policy.title": "להסתיר התראות מ…",
|
|
||||||
"notifications_permission_banner.enable": "לאפשר נוטיפיקציות מסך",
|
"notifications_permission_banner.enable": "לאפשר נוטיפיקציות מסך",
|
||||||
"notifications_permission_banner.how_to_control": "כדי לקבל התראות גם כאשר מסטודון סגור יש לאפשר התראות מסך. ניתן לשלוט בדיוק איזה סוג של אינטראקציות יביא להתראות מסך דרך כפתור ה- {icon} מרגע שהן מאופשרות.",
|
"notifications_permission_banner.how_to_control": "כדי לקבל התראות גם כאשר מסטודון סגור יש לאפשר התראות מסך. ניתן לשלוט בדיוק איזה סוג של אינטראקציות יביא להתראות מסך דרך כפתור ה- {icon} מרגע שהן מאופשרות.",
|
||||||
"notifications_permission_banner.title": "לעולם אל תחמיץ דבר",
|
"notifications_permission_banner.title": "לעולם אל תחמיץ דבר",
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
"about.not_available": "यह जानकारी इस सर्वर पर उपलब्ध नहीं कराई गई है।",
|
"about.not_available": "यह जानकारी इस सर्वर पर उपलब्ध नहीं कराई गई है।",
|
||||||
"about.powered_by": "{mastodon} द्वारा संचालित डेसेंट्रलीसेड सोशल मीडिया प्लैटफ़ॉर्म!",
|
"about.powered_by": "{mastodon} द्वारा संचालित डेसेंट्रलीसेड सोशल मीडिया प्लैटफ़ॉर्म!",
|
||||||
"about.rules": "सर्वर के नियम",
|
"about.rules": "सर्वर के नियम",
|
||||||
"account.account_note_header": "टिप्पणियाँ",
|
|
||||||
"account.add_or_remove_from_list": "सूची में जोड़ें या हटाए",
|
"account.add_or_remove_from_list": "सूची में जोड़ें या हटाए",
|
||||||
"account.badges.bot": "बॉट",
|
"account.badges.bot": "बॉट",
|
||||||
"account.badges.group": "समूह",
|
"account.badges.group": "समूह",
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
"about.not_available": "Te informacije nisu dostupne na ovom poslužitelju.",
|
"about.not_available": "Te informacije nisu dostupne na ovom poslužitelju.",
|
||||||
"about.powered_by": "Decentralizirani društveni mediji koje pokreće {mastodon}",
|
"about.powered_by": "Decentralizirani društveni mediji koje pokreće {mastodon}",
|
||||||
"about.rules": "Pravila servera",
|
"about.rules": "Pravila servera",
|
||||||
"account.account_note_header": "Bilješka",
|
|
||||||
"account.add_or_remove_from_list": "Dodaj ili ukloni s liste",
|
"account.add_or_remove_from_list": "Dodaj ili ukloni s liste",
|
||||||
"account.badges.bot": "Bot",
|
"account.badges.bot": "Bot",
|
||||||
"account.badges.group": "Grupa",
|
"account.badges.group": "Grupa",
|
||||||
|
@ -338,7 +337,6 @@
|
||||||
"not_signed_in_indicator.not_signed_in": "You need to sign in to access this resource.",
|
"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": "{name} Vas je počeo/la pratiti",
|
||||||
"notification.follow_request": "{name} zatražio/la je da Vas prati",
|
"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.own_poll": "Vaša anketa je završila",
|
||||||
"notification.reblog": "{name} je boostao/la Vaš status",
|
"notification.reblog": "{name} je boostao/la Vaš status",
|
||||||
"notifications.clear": "Očisti obavijesti",
|
"notifications.clear": "Očisti obavijesti",
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"about.not_available": "Ez az információ nem lett közzétéve ezen a kiszolgálón.",
|
"about.not_available": "Ez az információ nem lett közzétéve ezen a kiszolgálón.",
|
||||||
"about.powered_by": "Decentralizált közösségi média a {mastodon} segítségével",
|
"about.powered_by": "Decentralizált közösségi média a {mastodon} segítségével",
|
||||||
"about.rules": "Kiszolgáló szabályai",
|
"about.rules": "Kiszolgáló szabályai",
|
||||||
"account.account_note_header": "Feljegyzés",
|
"account.account_note_header": "Személyes megjegyzés",
|
||||||
"account.add_or_remove_from_list": "Hozzáadás vagy eltávolítás a listákról",
|
"account.add_or_remove_from_list": "Hozzáadás vagy eltávolítás a listákról",
|
||||||
"account.badges.bot": "Automatizált",
|
"account.badges.bot": "Automatizált",
|
||||||
"account.badges.group": "Csoport",
|
"account.badges.group": "Csoport",
|
||||||
|
@ -356,6 +356,17 @@
|
||||||
"home.pending_critical_update.link": "Frissítések megtekintése",
|
"home.pending_critical_update.link": "Frissítések megtekintése",
|
||||||
"home.pending_critical_update.title": "Kritikus biztonsági frissítés érhető el!",
|
"home.pending_critical_update.title": "Kritikus biztonsági frissítés érhető el!",
|
||||||
"home.show_announcements": "Közlemények megjelenítése",
|
"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 tudja fogadni, el tudja utasítani vagy jelenteni tudja 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.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.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.",
|
"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.favourite": "{name} kedvencnek jelölte a bejegyzésedet",
|
||||||
"notification.follow": "{name} követ téged",
|
"notification.follow": "{name} követ téged",
|
||||||
"notification.follow_request": "{name} követni szeretne 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.learn_more": "További információ",
|
||||||
"notification.moderation_warning": "Moderációs figyelmeztetést kaptál",
|
"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.",
|
"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.moderation_warning.action_suspend": "A fiókod felfüggesztésre került.",
|
||||||
"notification.own_poll": "A szavazásod véget ért",
|
"notification.own_poll": "A szavazásod véget ért",
|
||||||
"notification.poll": "Véget ért egy szavazás, melyben részt vettél",
|
"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.reblog": "{name} megtolta a bejegyzésedet",
|
||||||
"notification.relationships_severance_event": "Elvesztek a kapcsolatok vele: {name}",
|
"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.",
|
"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.status": "{name} bejegyzést tett közzé",
|
||||||
"notification.update": "{name} szerkesztett egy bejegyzést",
|
"notification.update": "{name} szerkesztett egy bejegyzést",
|
||||||
"notification_requests.accept": "Elfogadás",
|
"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": "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.maximize": "Maximalizálás",
|
||||||
"notification_requests.minimize_banner": "Szűrt értesítések sávjának minimalizálása",
|
"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.notifications_from": "{name} értesítései",
|
||||||
"notification_requests.title": "Szűrt értesítések",
|
"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": "Értesítések törlése",
|
||||||
"notifications.clear_confirmation": "Biztos, hogy véglegesen törölni akarod az összes értesítésed?",
|
"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?",
|
"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": "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_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.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.hint": "Az elmúlt {days, plural, one {napban} other {# napban}} létrehozva",
|
||||||
"notifications.policy.filter_new_accounts_title": "Új fiókok",
|
"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",
|
"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_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_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.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.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.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",
|
"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.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.followers": "Követő",
|
||||||
"timeline_hint.resources.follows": "Követett",
|
"timeline_hint.resources.follows": "Követett",
|
||||||
|
"timeline_hint.resources.replies": "Néhány válasz",
|
||||||
"timeline_hint.resources.statuses": "Régi bejegyzések",
|
"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.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",
|
"trends.trending_now": "Most felkapott",
|
||||||
|
|
|
@ -7,7 +7,6 @@
|
||||||
"about.not_available": "Այս տեղեկութիւնը տեսանելի չի այս սերուերում։",
|
"about.not_available": "Այս տեղեկութիւնը տեսանելի չի այս սերուերում։",
|
||||||
"about.powered_by": "Ապակենտրոն սոց. ցանց սեղծուած {mastodon}-ով։",
|
"about.powered_by": "Ապակենտրոն սոց. ցանց սեղծուած {mastodon}-ով։",
|
||||||
"about.rules": "Սերուերի կանոնները",
|
"about.rules": "Սերուերի կանոնները",
|
||||||
"account.account_note_header": "Նշում",
|
|
||||||
"account.add_or_remove_from_list": "Աւելացնել կամ հեռացնել ցանկերից",
|
"account.add_or_remove_from_list": "Աւելացնել կամ հեռացնել ցանկերից",
|
||||||
"account.badges.bot": "Բոտ",
|
"account.badges.bot": "Բոտ",
|
||||||
"account.badges.group": "Խումբ",
|
"account.badges.group": "Խումբ",
|
||||||
|
@ -320,7 +319,6 @@
|
||||||
"notification.favourite": "{name}-ը հաւանել է քո գրառումը",
|
"notification.favourite": "{name}-ը հաւանել է քո գրառումը",
|
||||||
"notification.follow": "{name} սկսեց հետեւել քեզ",
|
"notification.follow": "{name} սկսեց հետեւել քեզ",
|
||||||
"notification.follow_request": "{name} քեզ հետեւելու հայց է ուղարկել",
|
"notification.follow_request": "{name} քեզ հետեւելու հայց է ուղարկել",
|
||||||
"notification.mention": "{name} նշեց քեզ",
|
|
||||||
"notification.own_poll": "Հարցումդ աւարտուեց",
|
"notification.own_poll": "Հարցումդ աւարտուեց",
|
||||||
"notification.reblog": "{name} տարածեց գրառումդ",
|
"notification.reblog": "{name} տարածեց գրառումդ",
|
||||||
"notification.status": "{name} հենց նոր գրառում արեց",
|
"notification.status": "{name} հենց նոր գրառում արեց",
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"about.not_available": "Iste information non ha essite rendite disponibile sur iste servitor.",
|
"about.not_available": "Iste information non ha essite rendite disponibile sur iste servitor.",
|
||||||
"about.powered_by": "Rete social decentralisate, actionate per {mastodon}",
|
"about.powered_by": "Rete social decentralisate, actionate per {mastodon}",
|
||||||
"about.rules": "Regulas del servitor",
|
"about.rules": "Regulas del servitor",
|
||||||
"account.account_note_header": "Nota",
|
"account.account_note_header": "Nota personal",
|
||||||
"account.add_or_remove_from_list": "Adder a, o remover de listas",
|
"account.add_or_remove_from_list": "Adder a, o remover de listas",
|
||||||
"account.badges.bot": "Automatisate",
|
"account.badges.bot": "Automatisate",
|
||||||
"account.badges.group": "Gruppo",
|
"account.badges.group": "Gruppo",
|
||||||
|
@ -475,7 +475,11 @@
|
||||||
"notification.favourite": "{name} ha marcate tu message como favorite",
|
"notification.favourite": "{name} ha marcate tu message como favorite",
|
||||||
"notification.follow": "{name} te ha sequite",
|
"notification.follow": "{name} te ha sequite",
|
||||||
"notification.follow_request": "{name} ha requestate de sequer te",
|
"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.learn_more": "Apprender plus",
|
||||||
"notification.moderation_warning": "Tu ha recipite un advertimento de moderation",
|
"notification.moderation_warning": "Tu ha recipite un advertimento de moderation",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Alcunes de tu messages ha essite removite.",
|
"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_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_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.filter_private_mentions_title": "Mentiones private indesirate",
|
||||||
"notifications.policy.title": "Filtrar notificationes de…",
|
|
||||||
"notifications_permission_banner.enable": "Activar notificationes de scriptorio",
|
"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.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",
|
"notifications_permission_banner.title": "Non mancar jammais a un cosa",
|
||||||
|
@ -670,8 +673,11 @@
|
||||||
"report_notification.attached_statuses": "{count, plural, one {{count} message} other {{count} messages}} annexate",
|
"report_notification.attached_statuses": "{count, plural, one {{count} message} other {{count} messages}} annexate",
|
||||||
"report_notification.categories.legal": "Juridic",
|
"report_notification.categories.legal": "Juridic",
|
||||||
"report_notification.categories.other": "Alteres",
|
"report_notification.categories.other": "Alteres",
|
||||||
|
"report_notification.categories.other_sentence": "alteres",
|
||||||
"report_notification.categories.spam": "Spam",
|
"report_notification.categories.spam": "Spam",
|
||||||
|
"report_notification.categories.spam_sentence": "spam",
|
||||||
"report_notification.categories.violation": "Violation del regulas",
|
"report_notification.categories.violation": "Violation del regulas",
|
||||||
|
"report_notification.categories.violation_sentence": "violation del regulas",
|
||||||
"report_notification.open": "Aperir reporto",
|
"report_notification.open": "Aperir reporto",
|
||||||
"search.no_recent_searches": "Nulle recercas recente",
|
"search.no_recent_searches": "Nulle recercas recente",
|
||||||
"search.placeholder": "Cercar",
|
"search.placeholder": "Cercar",
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
"about.not_available": "Informasi ini belum tersedia di server ini.",
|
"about.not_available": "Informasi ini belum tersedia di server ini.",
|
||||||
"about.powered_by": "Media sosial terdesentralisasi diberdayakan oleh {mastodon}",
|
"about.powered_by": "Media sosial terdesentralisasi diberdayakan oleh {mastodon}",
|
||||||
"about.rules": "Aturan server",
|
"about.rules": "Aturan server",
|
||||||
"account.account_note_header": "Catatan",
|
|
||||||
"account.add_or_remove_from_list": "Tambah atau Hapus dari daftar",
|
"account.add_or_remove_from_list": "Tambah atau Hapus dari daftar",
|
||||||
"account.badges.bot": "Bot",
|
"account.badges.bot": "Bot",
|
||||||
"account.badges.group": "Grup",
|
"account.badges.group": "Grup",
|
||||||
|
@ -420,7 +419,6 @@
|
||||||
"notification.admin.sign_up": "{name} mendaftar",
|
"notification.admin.sign_up": "{name} mendaftar",
|
||||||
"notification.follow": "{name} mengikuti Anda",
|
"notification.follow": "{name} mengikuti Anda",
|
||||||
"notification.follow_request": "{name} ingin mengikuti Anda",
|
"notification.follow_request": "{name} ingin mengikuti Anda",
|
||||||
"notification.mention": "{name} menyebut Anda",
|
|
||||||
"notification.own_poll": "Japat Anda telah berakhir",
|
"notification.own_poll": "Japat Anda telah berakhir",
|
||||||
"notification.reblog": "{name} mem-boost kiriman Anda",
|
"notification.reblog": "{name} mem-boost kiriman Anda",
|
||||||
"notification.status": "{name} baru saja mengirim",
|
"notification.status": "{name} baru saja mengirim",
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
"about.not_available": "On ne ha disponibilisat ti-ci information sur ti-ci servitor.",
|
"about.not_available": "On ne ha disponibilisat ti-ci information sur ti-ci servitor.",
|
||||||
"about.powered_by": "Decentralisat social medie disponibilisat de {mastodon}",
|
"about.powered_by": "Decentralisat social medie disponibilisat de {mastodon}",
|
||||||
"about.rules": "Regules del servitor",
|
"about.rules": "Regules del servitor",
|
||||||
"account.account_note_header": "Nota",
|
|
||||||
"account.add_or_remove_from_list": "Adjunter o remover de listes",
|
"account.add_or_remove_from_list": "Adjunter o remover de listes",
|
||||||
"account.badges.bot": "Automatisat",
|
"account.badges.bot": "Automatisat",
|
||||||
"account.badges.group": "Gruppe",
|
"account.badges.group": "Gruppe",
|
||||||
|
@ -463,7 +462,6 @@
|
||||||
"notification.favourite": "{name} favoritisat tui posta",
|
"notification.favourite": "{name} favoritisat tui posta",
|
||||||
"notification.follow": "{name} sequet te",
|
"notification.follow": "{name} sequet te",
|
||||||
"notification.follow_request": "{name} ha petit sequer te",
|
"notification.follow_request": "{name} ha petit sequer te",
|
||||||
"notification.mention": "{name} mentionat te",
|
|
||||||
"notification.moderation-warning.learn_more": "Aprender plu",
|
"notification.moderation-warning.learn_more": "Aprender plu",
|
||||||
"notification.moderation_warning": "Tu ha recivet un moderatori advertiment",
|
"notification.moderation_warning": "Tu ha recivet un moderatori advertiment",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Alcun de tui postas ha esset efaciat.",
|
"notification.moderation_warning.action_delete_statuses": "Alcun de tui postas ha esset efaciat.",
|
||||||
|
@ -527,7 +525,6 @@
|
||||||
"notifications.policy.filter_not_following_title": "Persones queles tu ne seque",
|
"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_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.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.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.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",
|
"notifications_permission_banner.title": "Nequande preterlassa quocunc",
|
||||||
|
|
|
@ -10,7 +10,6 @@
|
||||||
"about.not_available": "Ca informo ne igesis che ca servilo.",
|
"about.not_available": "Ca informo ne igesis che ca servilo.",
|
||||||
"about.powered_by": "Necentraligita sociala ret quo povigesas da {mastodon}",
|
"about.powered_by": "Necentraligita sociala ret quo povigesas da {mastodon}",
|
||||||
"about.rules": "Servilreguli",
|
"about.rules": "Servilreguli",
|
||||||
"account.account_note_header": "Noto",
|
|
||||||
"account.add_or_remove_from_list": "Insertez o removez de listi",
|
"account.add_or_remove_from_list": "Insertez o removez de listi",
|
||||||
"account.badges.bot": "Boto",
|
"account.badges.bot": "Boto",
|
||||||
"account.badges.group": "Grupo",
|
"account.badges.group": "Grupo",
|
||||||
|
@ -397,7 +396,6 @@
|
||||||
"notification.favourite": "{name} favorizis tua mesajo",
|
"notification.favourite": "{name} favorizis tua mesajo",
|
||||||
"notification.follow": "{name} sequeskis tu",
|
"notification.follow": "{name} sequeskis tu",
|
||||||
"notification.follow_request": "{name} demandas sequar vu",
|
"notification.follow_request": "{name} demandas sequar vu",
|
||||||
"notification.mention": "{name} mencionis tu",
|
|
||||||
"notification.own_poll": "Vua votposto finigis",
|
"notification.own_poll": "Vua votposto finigis",
|
||||||
"notification.reblog": "{name} repetis tua mesajo",
|
"notification.reblog": "{name} repetis tua mesajo",
|
||||||
"notification.status": "{name} nove postigis",
|
"notification.status": "{name} nove postigis",
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"about.not_available": "Þessar upplýsingar hafa ekki verið gerðar aðgengilegar á þessum netþjóni.",
|
"about.not_available": "Þessar upplýsingar hafa ekki verið gerðar aðgengilegar á þessum netþjóni.",
|
||||||
"about.powered_by": "Dreifhýstur samskiptamiðill keyrður með {mastodon}",
|
"about.powered_by": "Dreifhýstur samskiptamiðill keyrður með {mastodon}",
|
||||||
"about.rules": "Reglur netþjónsins",
|
"about.rules": "Reglur netþjónsins",
|
||||||
"account.account_note_header": "Minnispunktur",
|
"account.account_note_header": "Einkaminnispunktur",
|
||||||
"account.add_or_remove_from_list": "Bæta við eða fjarlægja af listum",
|
"account.add_or_remove_from_list": "Bæta við eða fjarlægja af listum",
|
||||||
"account.badges.bot": "Yrki",
|
"account.badges.bot": "Yrki",
|
||||||
"account.badges.group": "Hópur",
|
"account.badges.group": "Hópur",
|
||||||
|
@ -356,6 +356,17 @@
|
||||||
"home.pending_critical_update.link": "Skoða uppfærslur",
|
"home.pending_critical_update.link": "Skoða uppfærslur",
|
||||||
"home.pending_critical_update.title": "Áríðandi öryggisuppfærsla er tiltæk!",
|
"home.pending_critical_update.title": "Áríðandi öryggisuppfærsla er tiltæk!",
|
||||||
"home.show_announcements": "Birta auglýsingar",
|
"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.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.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.",
|
"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.favourite": "{name} setti færsluna þína í eftirlæti",
|
||||||
"notification.follow": "{name} fylgist með þér",
|
"notification.follow": "{name} fylgist með þér",
|
||||||
"notification.follow_request": "{name} hefur beðið um að fylgjast 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.learn_more": "Kanna nánar",
|
||||||
"notification.moderation_warning": "Þú hefur fengið aðvörun frá umsjónarmanni",
|
"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.",
|
"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.moderation_warning.action_suspend": "Notandaaðgangurinn þinn hefur verið settur í frysti.",
|
||||||
"notification.own_poll": "Könnuninni þinni er lokið",
|
"notification.own_poll": "Könnuninni þinni er lokið",
|
||||||
"notification.poll": "Könnun sem þú greiddir atkvæði í er lokið",
|
"notification.poll": "Könnun sem þú greiddir atkvæði í er lokið",
|
||||||
"notification.private_mention": "{name} minntist á þig í einrúmi",
|
|
||||||
"notification.reblog": "{name} endurbirti færsluna þína",
|
"notification.reblog": "{name} endurbirti færsluna þína",
|
||||||
"notification.relationships_severance_event": "Missti tengingar við {name}",
|
"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.",
|
"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.status": "{name} sendi inn rétt í þessu",
|
||||||
"notification.update": "{name} breytti færslu",
|
"notification.update": "{name} breytti færslu",
|
||||||
"notification_requests.accept": "Samþykkja",
|
"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": "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.maximize": "Hámarka",
|
||||||
"notification_requests.minimize_banner": "Minnka borða með síuðum tilkynningum",
|
"notification_requests.minimize_banner": "Minnka borða með síuðum tilkynningum",
|
||||||
"notification_requests.notifications_from": "Tilkynningar frá {name}",
|
"notification_requests.notifications_from": "Tilkynningar frá {name}",
|
||||||
"notification_requests.title": "Síaðar tilkynningar",
|
"notification_requests.title": "Síaðar tilkynningar",
|
||||||
|
"notification_requests.view": "Skoða tilkynningar",
|
||||||
"notifications.clear": "Hreinsa tilkynningar",
|
"notifications.clear": "Hreinsa tilkynningar",
|
||||||
"notifications.clear_confirmation": "Ertu viss um að þú viljir endanlega eyða öllum tilkynningunum þínum?",
|
"notifications.clear_confirmation": "Ertu viss um að þú viljir endanlega eyða öllum tilkynningunum þínum?",
|
||||||
"notifications.clear_title": "Hreinsa tilkynningar?",
|
"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": "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_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.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.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_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}}",
|
"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_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_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.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.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.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",
|
"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.remote_resource_not_displayed": "{resource} frá öðrum netþjónum er ekki birt.",
|
||||||
"timeline_hint.resources.followers": "Fylgjendur",
|
"timeline_hint.resources.followers": "Fylgjendur",
|
||||||
"timeline_hint.resources.follows": "Fylgist með",
|
"timeline_hint.resources.follows": "Fylgist með",
|
||||||
|
"timeline_hint.resources.replies": "Sum svör",
|
||||||
"timeline_hint.resources.statuses": "Eldri færslur",
|
"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.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",
|
"trends.trending_now": "Vinsælt núna",
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"about.not_available": "Queste informazioni non sono state rese disponibili su questo server.",
|
"about.not_available": "Queste informazioni non sono state rese disponibili su questo server.",
|
||||||
"about.powered_by": "Social media decentralizzato alimentato da {mastodon}",
|
"about.powered_by": "Social media decentralizzato alimentato da {mastodon}",
|
||||||
"about.rules": "Regole del server",
|
"about.rules": "Regole del server",
|
||||||
"account.account_note_header": "Nota",
|
"account.account_note_header": "Note personali",
|
||||||
"account.add_or_remove_from_list": "Aggiungi o Rimuovi dalle liste",
|
"account.add_or_remove_from_list": "Aggiungi o Rimuovi dalle liste",
|
||||||
"account.badges.bot": "Bot",
|
"account.badges.bot": "Bot",
|
||||||
"account.badges.group": "Gruppo",
|
"account.badges.group": "Gruppo",
|
||||||
|
@ -356,6 +356,15 @@
|
||||||
"home.pending_critical_update.link": "Visualizza aggiornamenti",
|
"home.pending_critical_update.link": "Visualizza aggiornamenti",
|
||||||
"home.pending_critical_update.title": "Aggiornamento critico di sicurezza disponibile!",
|
"home.pending_critical_update.title": "Aggiornamento critico di sicurezza disponibile!",
|
||||||
"home.show_announcements": "Mostra annunci",
|
"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_avoid_confusion": "Il filtraggio aiuta a evitare potenziali confusioni",
|
||||||
|
"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.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.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.",
|
"interaction_modal.description.reblog": "Con un profilo di Mastodon, puoi rebloggare questo post per condividerlo con i tuoi seguaci.",
|
||||||
|
@ -482,7 +491,11 @@
|
||||||
"notification.favourite": "{name} ha aggiunto il tuo post ai preferiti",
|
"notification.favourite": "{name} ha aggiunto il tuo post ai preferiti",
|
||||||
"notification.follow": "{name} ha iniziato a seguirti",
|
"notification.follow": "{name} ha iniziato a seguirti",
|
||||||
"notification.follow_request": "{name} ha richiesto di 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.learn_more": "Scopri di più",
|
||||||
"notification.moderation_warning": "Hai ricevuto un avviso di moderazione",
|
"notification.moderation_warning": "Hai ricevuto un avviso di moderazione",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Alcuni dei tuoi post sono stati rimossi.",
|
"notification.moderation_warning.action_delete_statuses": "Alcuni dei tuoi post sono stati rimossi.",
|
||||||
|
@ -494,7 +507,6 @@
|
||||||
"notification.moderation_warning.action_suspend": "Il tuo account è stato sospeso.",
|
"notification.moderation_warning.action_suspend": "Il tuo account è stato sospeso.",
|
||||||
"notification.own_poll": "Il tuo sondaggio è terminato",
|
"notification.own_poll": "Il tuo sondaggio è terminato",
|
||||||
"notification.poll": "Un sondaggio in cui hai votato è terminato",
|
"notification.poll": "Un sondaggio in cui hai votato è terminato",
|
||||||
"notification.private_mention": "{name} ti ha citato privatamente",
|
|
||||||
"notification.reblog": "{name} ha rebloggato il tuo post",
|
"notification.reblog": "{name} ha rebloggato il tuo post",
|
||||||
"notification.relationships_severance_event": "Connessioni perse con {name}",
|
"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.",
|
"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 +516,26 @@
|
||||||
"notification.status": "{name} ha appena pubblicato un post",
|
"notification.status": "{name} ha appena pubblicato un post",
|
||||||
"notification.update": "{name} ha modificato un post",
|
"notification.update": "{name} ha modificato un post",
|
||||||
"notification_requests.accept": "Accetta",
|
"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": "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.maximize": "Ingrandisci",
|
||||||
"notification_requests.minimize_banner": "Riduci al minimo il banner delle notifiche filtrate",
|
"notification_requests.minimize_banner": "Minimizza il banner delle notifiche filtrate",
|
||||||
"notification_requests.notifications_from": "Notifiche da {name}",
|
"notification_requests.notifications_from": "Notifiche da {name}",
|
||||||
"notification_requests.title": "Notifiche filtrate",
|
"notification_requests.title": "Notifiche filtrate",
|
||||||
|
"notification_requests.view": "Visualizza le notifiche",
|
||||||
"notifications.clear": "Cancella le notifiche",
|
"notifications.clear": "Cancella le notifiche",
|
||||||
"notifications.clear_confirmation": "Sei sicuro di voler cancellare permanentemente tutte le tue notifiche?",
|
"notifications.clear_confirmation": "Sei sicuro di voler cancellare permanentemente tutte le tue notifiche?",
|
||||||
"notifications.clear_title": "Cancellare le notifiche?",
|
"notifications.clear_title": "Cancellare le notifiche?",
|
||||||
|
@ -545,6 +572,12 @@
|
||||||
"notifications.permission_denied": "Notifiche desktop non disponibili a causa della precedentemente negata richiesta di autorizzazioni del browser",
|
"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_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.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.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.hint": "Creato {days, plural, one {un giorno} other {# giorni}} fa",
|
||||||
"notifications.policy.filter_new_accounts_title": "Nuovi account",
|
"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}}",
|
"notifications.policy.filter_not_followers_hint": "Incluse le persone che ti seguono da meno di {days, plural, one {un giorno} other {# giorni}}",
|
||||||
|
@ -553,7 +586,7 @@
|
||||||
"notifications.policy.filter_not_following_title": "Persone che non segui",
|
"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_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.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.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.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",
|
"notifications_permission_banner.title": "Non perderti mai nulla",
|
||||||
|
@ -794,6 +827,7 @@
|
||||||
"timeline_hint.remote_resource_not_displayed": "{resource} da altri server non sono mostrati.",
|
"timeline_hint.remote_resource_not_displayed": "{resource} da altri server non sono mostrati.",
|
||||||
"timeline_hint.resources.followers": "Seguaci",
|
"timeline_hint.resources.followers": "Seguaci",
|
||||||
"timeline_hint.resources.follows": "Segue",
|
"timeline_hint.resources.follows": "Segue",
|
||||||
|
"timeline_hint.resources.replies": "Alcune risposte",
|
||||||
"timeline_hint.resources.statuses": "Post meno recenti",
|
"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.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",
|
"trends.trending_now": "Ora in tendenza",
|
||||||
|
|
|
@ -18,7 +18,6 @@
|
||||||
"about.powered_by": "{mastodon}による分散型ソーシャルメディア",
|
"about.powered_by": "{mastodon}による分散型ソーシャルメディア",
|
||||||
"about.public_visibility": "公開投稿を許可",
|
"about.public_visibility": "公開投稿を許可",
|
||||||
"about.rules": "サーバーのルール",
|
"about.rules": "サーバーのルール",
|
||||||
"account.account_note_header": "メモ",
|
|
||||||
"account.add_or_remove_from_antenna": "アンテナから追加または外す",
|
"account.add_or_remove_from_antenna": "アンテナから追加または外す",
|
||||||
"account.add_or_remove_from_exclude_antenna": "アンテナ除外条件から追加または外す",
|
"account.add_or_remove_from_exclude_antenna": "アンテナ除外条件から追加または外す",
|
||||||
"account.add_or_remove_from_circle": "サークルから追加または外す",
|
"account.add_or_remove_from_circle": "サークルから追加または外す",
|
||||||
|
@ -535,6 +534,8 @@
|
||||||
"mute_modal.title": "ユーザーをミュートしますか?",
|
"mute_modal.title": "ユーザーをミュートしますか?",
|
||||||
"mute_modal.you_wont_see_mentions": "宛先に相手が入っている投稿も閲覧できなくなります。",
|
"mute_modal.you_wont_see_mentions": "宛先に相手が入っている投稿も閲覧できなくなります。",
|
||||||
"mute_modal.you_wont_see_posts": "相手はあなたの投稿を今までどおり閲覧できますが、あなたは相手の投稿を閲覧できなくなります。",
|
"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.about": "概要",
|
||||||
"navigation_bar.advanced_interface": "上級者向けUIに戻る",
|
"navigation_bar.advanced_interface": "上級者向けUIに戻る",
|
||||||
"navigation_bar.antennas": "アンテナ",
|
"navigation_bar.antennas": "アンテナ",
|
||||||
|
@ -568,13 +569,16 @@
|
||||||
"navigation_bar.security": "セキュリティ",
|
"navigation_bar.security": "セキュリティ",
|
||||||
"not_signed_in_indicator.not_signed_in": "この機能を使うにはログインする必要があります。",
|
"not_signed_in_indicator.not_signed_in": "この機能を使うにはログインする必要があります。",
|
||||||
"notification.admin.report": "{name}さんが{target}さんを通報しました",
|
"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.admin.sign_up": "{name}さんがサインアップしました",
|
||||||
"notification.emoji_reaction": "{name}さんがあなたの投稿に絵文字をつけました",
|
"notification.emoji_reaction": "{name}さんがあなたの投稿に絵文字をつけました",
|
||||||
"notification.favourite": "{name}さんがお気に入りしました",
|
"notification.favourite": "{name}さんがお気に入りしました",
|
||||||
"notification.follow": "{name}さんにフォローされました",
|
"notification.follow": "{name}さんにフォローされました",
|
||||||
"notification.follow_request": "{name}さんがあなたにフォローリクエストしました",
|
"notification.follow_request": "{name}さんがあなたにフォローリクエストしました",
|
||||||
"notification.list_status": "{name}さんの投稿が{listName}に追加されました",
|
"notification.list_status": "{name}さんの投稿が{listName}に追加されました",
|
||||||
"notification.mention": "{name}さんがあなたに返信しました",
|
|
||||||
"notification.moderation-warning.learn_more": "さらに詳しく",
|
"notification.moderation-warning.learn_more": "さらに詳しく",
|
||||||
"notification.moderation_warning": "管理者から警告が来ています",
|
"notification.moderation_warning": "管理者から警告が来ています",
|
||||||
"notification.moderation_warning.action_delete_statuses": "あなたによるいくつかの投稿が削除されました。",
|
"notification.moderation_warning.action_delete_statuses": "あなたによるいくつかの投稿が削除されました。",
|
||||||
|
@ -585,6 +589,7 @@
|
||||||
"notification.moderation_warning.action_silence": "あなたのアカウントは制限されています。",
|
"notification.moderation_warning.action_silence": "あなたのアカウントは制限されています。",
|
||||||
"notification.moderation_warning.action_suspend": "あなたのアカウントは停止されました。",
|
"notification.moderation_warning.action_suspend": "あなたのアカウントは停止されました。",
|
||||||
"notification.own_poll": "アンケートが終了しました",
|
"notification.own_poll": "アンケートが終了しました",
|
||||||
|
"notification.poll": "投票したアンケートが終了しました",
|
||||||
"notification.reblog": "{name}さんがあなたの投稿をブーストしました",
|
"notification.reblog": "{name}さんがあなたの投稿をブーストしました",
|
||||||
"notification.relationships_severance_event": "{name} との関係が失われました",
|
"notification.relationships_severance_event": "{name} との関係が失われました",
|
||||||
"notification.relationships_severance_event.account_suspension": "{from} の管理者が {target} さんを停止したため、今後このユーザーとの交流や新しい投稿の受け取りができなくなりました。",
|
"notification.relationships_severance_event.account_suspension": "{from} の管理者が {target} さんを停止したため、今後このユーザーとの交流や新しい投稿の受け取りができなくなりました。",
|
||||||
|
@ -646,7 +651,6 @@
|
||||||
"notifications.policy.filter_not_following_title": "フォローしていないアカウントからの通知をブロックする",
|
"notifications.policy.filter_not_following_title": "フォローしていないアカウントからの通知をブロックする",
|
||||||
"notifications.policy.filter_private_mentions_hint": "あなたがメンションした相手からの返信、およびフォローしているアカウントからの返信以外がブロックされます",
|
"notifications.policy.filter_private_mentions_hint": "あなたがメンションした相手からの返信、およびフォローしているアカウントからの返信以外がブロックされます",
|
||||||
"notifications.policy.filter_private_mentions_title": "外部からの非公開の返信をブロックする",
|
"notifications.policy.filter_private_mentions_title": "外部からの非公開の返信をブロックする",
|
||||||
"notifications.policy.title": "通知のフィルタリング",
|
|
||||||
"notifications_permission_banner.enable": "デスクトップ通知を有効にする",
|
"notifications_permission_banner.enable": "デスクトップ通知を有効にする",
|
||||||
"notifications_permission_banner.how_to_control": "Mastodonを閉じている間でも通知を受信するにはデスクトップ通知を有効にしてください。有効にすると上の {icon} ボタンから通知の内容を細かくカスタマイズできます。",
|
"notifications_permission_banner.how_to_control": "Mastodonを閉じている間でも通知を受信するにはデスクトップ通知を有効にしてください。有効にすると上の {icon} ボタンから通知の内容を細かくカスタマイズできます。",
|
||||||
"notifications_permission_banner.title": "お見逃しなく",
|
"notifications_permission_banner.title": "お見逃しなく",
|
||||||
|
@ -790,9 +794,13 @@
|
||||||
"report.unfollow_explanation": "このアカウントをフォローしています。ホームフィードに彼らの投稿を表示しないようにするには、彼らのフォローを外してください。",
|
"report.unfollow_explanation": "このアカウントをフォローしています。ホームフィードに彼らの投稿を表示しないようにするには、彼らのフォローを外してください。",
|
||||||
"report_notification.attached_statuses": "{count, plural, one {{count}件の投稿} other {{count}件の投稿}}が添付されました。",
|
"report_notification.attached_statuses": "{count, plural, one {{count}件の投稿} other {{count}件の投稿}}が添付されました。",
|
||||||
"report_notification.categories.legal": "法令違反",
|
"report_notification.categories.legal": "法令違反",
|
||||||
|
"report_notification.categories.legal_sentence": "法令違反",
|
||||||
"report_notification.categories.other": "その他",
|
"report_notification.categories.other": "その他",
|
||||||
|
"report_notification.categories.other_sentence": "その他",
|
||||||
"report_notification.categories.spam": "スパム",
|
"report_notification.categories.spam": "スパム",
|
||||||
|
"report_notification.categories.spam_sentence": "スパム",
|
||||||
"report_notification.categories.violation": "ルール違反",
|
"report_notification.categories.violation": "ルール違反",
|
||||||
|
"report_notification.categories.violation_sentence": "ルール違反",
|
||||||
"report_notification.open": "通報を開く",
|
"report_notification.open": "通報を開く",
|
||||||
"search.no_recent_searches": "検索履歴はありません",
|
"search.no_recent_searches": "検索履歴はありません",
|
||||||
"search.placeholder": "検索",
|
"search.placeholder": "検索",
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
{
|
{
|
||||||
"about.contact": "კონტაქტი:",
|
"about.contact": "კონტაქტი:",
|
||||||
"about.domain_blocks.no_reason_available": "მიზეზი მიუწვდომელია",
|
"about.domain_blocks.no_reason_available": "მიზეზი მიუწვდომელია",
|
||||||
"account.account_note_header": "ჩანაწერი",
|
|
||||||
"account.add_or_remove_from_list": "სიებში დამატება ან წაშლა",
|
"account.add_or_remove_from_list": "სიებში დამატება ან წაშლა",
|
||||||
"account.badges.bot": "ბოტი",
|
"account.badges.bot": "ბოტი",
|
||||||
"account.badges.group": "ჯგუფი",
|
"account.badges.group": "ჯგუფი",
|
||||||
|
@ -172,7 +171,6 @@
|
||||||
"navigation_bar.security": "უსაფრთხოება",
|
"navigation_bar.security": "უსაფრთხოება",
|
||||||
"not_signed_in_indicator.not_signed_in": "You need to sign in to access this resource.",
|
"not_signed_in_indicator.not_signed_in": "You need to sign in to access this resource.",
|
||||||
"notification.follow": "{name} გამოგყვათ",
|
"notification.follow": "{name} გამოგყვათ",
|
||||||
"notification.mention": "{name}-მა გასახელათ",
|
|
||||||
"notification.reblog": "{name}-მა დაბუსტა თქვენი სტატუსი",
|
"notification.reblog": "{name}-მა დაბუსტა თქვენი სტატუსი",
|
||||||
"notifications.clear": "შეტყობინებების გასუფთავება",
|
"notifications.clear": "შეტყობინებების გასუფთავება",
|
||||||
"notifications.clear_confirmation": "დარწმუნებული ხართ, გსურთ სამუდამოდ წაშალოთ ყველა თქვენი შეტყობინება?",
|
"notifications.clear_confirmation": "დარწმუნებული ხართ, გსურთ სამუდამოდ წაშალოთ ყველა თქვენი შეტყობინება?",
|
||||||
|
|
|
@ -8,7 +8,6 @@
|
||||||
"about.not_available": "Talɣut-a ur tettwabder ara deg uqeddac-a.",
|
"about.not_available": "Talɣut-a ur tettwabder ara deg uqeddac-a.",
|
||||||
"about.powered_by": "Azeṭṭa inmetti yettwasɣelsen sɣur {mastodon}",
|
"about.powered_by": "Azeṭṭa inmetti yettwasɣelsen sɣur {mastodon}",
|
||||||
"about.rules": "Ilugan n uqeddac",
|
"about.rules": "Ilugan n uqeddac",
|
||||||
"account.account_note_header": "Tazmilt",
|
|
||||||
"account.add_or_remove_from_list": "Rnu neɣ kkes seg tebdarin",
|
"account.add_or_remove_from_list": "Rnu neɣ kkes seg tebdarin",
|
||||||
"account.badges.bot": "Aṛubut",
|
"account.badges.bot": "Aṛubut",
|
||||||
"account.badges.group": "Agraw",
|
"account.badges.group": "Agraw",
|
||||||
|
@ -76,14 +75,16 @@
|
||||||
"block_modal.show_less": "Ssken-d drus",
|
"block_modal.show_less": "Ssken-d drus",
|
||||||
"block_modal.show_more": "Ssken-d ugar",
|
"block_modal.show_more": "Ssken-d ugar",
|
||||||
"block_modal.they_cant_mention": "Ur zmiren ad k·m-id-bedren, ur zmiren ad k·m-ḍefren.",
|
"block_modal.they_cant_mention": "Ur zmiren ad k·m-id-bedren, ur zmiren ad k·m-ḍefren.",
|
||||||
"block_modal.they_cant_see_posts": "Ur zmiren ad walin tisufaɣ-nwen, ur tettwalim tid-nsen.",
|
"block_modal.they_cant_see_posts": "Ur yezmir ad wali tisuffaɣ-ik·im, ur tettwaliḍ tidak-is.",
|
||||||
"block_modal.title": "Sewḥel aseqdac ?",
|
"block_modal.title": "Sewḥel aseqdac ?",
|
||||||
|
"block_modal.you_wont_see_mentions": "Ur tezmireḍ ara ad twaliḍ tisuffaɣ anda d-yettwabdar.",
|
||||||
"boost_modal.combo": "Tzemreḍ ad tsiteḍ ɣef {combo} akken ad tzegleḍ aya tikelt i d-iteddun",
|
"boost_modal.combo": "Tzemreḍ ad tsiteḍ ɣef {combo} akken ad tzegleḍ aya tikelt i d-iteddun",
|
||||||
"bundle_column_error.copy_stacktrace": "Nɣel tuccḍa n uneqqis",
|
"bundle_column_error.copy_stacktrace": "Nɣel tuccḍa n uneqqis",
|
||||||
"bundle_column_error.error.title": "Uh, ala !",
|
"bundle_column_error.error.title": "Uh, ala !",
|
||||||
"bundle_column_error.network.title": "Tuccḍa deg uẓeṭṭa",
|
"bundle_column_error.network.title": "Tuccḍa deg uẓeṭṭa",
|
||||||
"bundle_column_error.retry": "Ɛreḍ tikelt-nniḍen",
|
"bundle_column_error.retry": "Ɛreḍ tikelt-nniḍen",
|
||||||
"bundle_column_error.return": "Uɣal ɣer ugejdan",
|
"bundle_column_error.return": "Uɣal ɣer ugejdan",
|
||||||
|
"bundle_column_error.routing.body": "Asebter i d-yettwasutren ur yettwaf ara. Tetḥeqqeḍ belli tansa URL deg ufeggag n tansa tṣeḥḥa?",
|
||||||
"bundle_column_error.routing.title": "404",
|
"bundle_column_error.routing.title": "404",
|
||||||
"bundle_modal_error.close": "Mdel",
|
"bundle_modal_error.close": "Mdel",
|
||||||
"bundle_modal_error.message": "Tella-d kra n tuccḍa mi d-yettali ugbur-agi.",
|
"bundle_modal_error.message": "Tella-d kra n tuccḍa mi d-yettali ugbur-agi.",
|
||||||
|
@ -143,20 +144,22 @@
|
||||||
"confirmations.block.confirm": "Sewḥel",
|
"confirmations.block.confirm": "Sewḥel",
|
||||||
"confirmations.delete.confirm": "Kkes",
|
"confirmations.delete.confirm": "Kkes",
|
||||||
"confirmations.delete.message": "Tebɣiḍ s tidet ad tekkseḍ tasuffeɣt-agi?",
|
"confirmations.delete.message": "Tebɣiḍ s tidet ad tekkseḍ tasuffeɣt-agi?",
|
||||||
|
"confirmations.delete.title": "Tukksa n tasuffeɣt?",
|
||||||
"confirmations.delete_list.confirm": "Kkes",
|
"confirmations.delete_list.confirm": "Kkes",
|
||||||
"confirmations.delete_list.message": "Tebɣiḍ s tidet ad tekkseḍ umuɣ-agi i lebda?",
|
"confirmations.delete_list.message": "Tebɣiḍ s tidet ad tekkseḍ umuɣ-agi i lebda?",
|
||||||
|
"confirmations.delete_list.title": "Tukksa n tebdart?",
|
||||||
"confirmations.discard_edit_media.confirm": "Sefsex",
|
"confirmations.discard_edit_media.confirm": "Sefsex",
|
||||||
"confirmations.edit.confirm": "Ẓreg",
|
"confirmations.edit.confirm": "Ẓreg",
|
||||||
"confirmations.edit.message": "Abeddel tura ad d-yaru izen-nni i d-tegreḍ akka tura. Tetḥeqqeḍ tebɣiḍ ad tkemmleḍ?",
|
"confirmations.edit.message": "Abeddel tura ad d-yaru izen-nni i d-tegreḍ akka tura. Tetḥeqqeḍ tebɣiḍ ad tkemmleḍ?",
|
||||||
"confirmations.logout.confirm": "Ffeɣ",
|
"confirmations.logout.confirm": "Ffeɣ",
|
||||||
"confirmations.logout.message": "D tidet tebɣiḍ ad teffɣeḍ?",
|
"confirmations.logout.message": "D tidet tebɣiḍ ad teffɣeḍ?",
|
||||||
"confirmations.mute.confirm": "Sgugem",
|
"confirmations.mute.confirm": "Sgugem",
|
||||||
"confirmations.redraft.confirm": "Sfeḍ & Ɛiwed tira",
|
"confirmations.redraft.confirm": "Kkes sakin ɛiwed tira",
|
||||||
"confirmations.reply.confirm": "Err",
|
"confirmations.reply.confirm": "Err",
|
||||||
"confirmations.reply.message": "Tiririt akka tura ad k-degger izen-agi i tettaruḍ. Tebɣiḍ ad tkemmleḍ?",
|
"confirmations.reply.message": "Tiririt akka tura ad k-degger izen-agi i tettaruḍ. Tebɣiḍ ad tkemmleḍ?",
|
||||||
"confirmations.unfollow.confirm": "Ur ḍḍafaṛ ara",
|
"confirmations.unfollow.confirm": "Ur ḍḍafaṛ ara",
|
||||||
"confirmations.unfollow.message": "Tetḥeqqeḍ belli tebɣiḍ ur teṭafaṛeḍ ara {name}?",
|
"confirmations.unfollow.message": "Tetḥeqqeḍ belli tebɣiḍ ur teṭafaṛeḍ ara {name}?",
|
||||||
"conversation.delete": "Sfeḍ adiwenni",
|
"conversation.delete": "Kkes adiwenni",
|
||||||
"conversation.mark_as_read": "Creḍ yettwaɣṛa",
|
"conversation.mark_as_read": "Creḍ yettwaɣṛa",
|
||||||
"conversation.open": "Ssken adiwenni",
|
"conversation.open": "Ssken adiwenni",
|
||||||
"conversation.with": "Akked {names}",
|
"conversation.with": "Akked {names}",
|
||||||
|
@ -174,7 +177,9 @@
|
||||||
"dismissable_banner.explore_tags": "D wiyi i d ihacṭagen i d-yettawin tamyigawt deg web anmetti ass-a. Ihacṭagen i sseqdacen ugar n medden, εlayit d imezwura.",
|
"dismissable_banner.explore_tags": "D wiyi i d ihacṭagen i d-yettawin tamyigawt deg web anmetti ass-a. Ihacṭagen i sseqdacen ugar n medden, εlayit d imezwura.",
|
||||||
"domain_block_modal.block": "Sewḥel aqeddac",
|
"domain_block_modal.block": "Sewḥel aqeddac",
|
||||||
"domain_block_modal.they_cant_follow": "Yiwen ur yezmir ad k·m-id-yeḍfer seg uqeddac-a.",
|
"domain_block_modal.they_cant_follow": "Yiwen ur yezmir ad k·m-id-yeḍfer seg uqeddac-a.",
|
||||||
|
"domain_block_modal.they_wont_know": "Ur-d yettawi ara s lexbaṛ belli yettuseḥbes.",
|
||||||
"domain_block_modal.title": "Sewḥel taɣult?",
|
"domain_block_modal.title": "Sewḥel taɣult?",
|
||||||
|
"domain_block_modal.you_wont_see_posts": "Ur tettuɣaleḍ ara ttwaliḍ tisuffaɣ neɣ ulɣuten n iseqdacen n uqeddac-a.",
|
||||||
"domain_pill.activitypub_like_language": "ActivityPub am tutlayt yettmeslay Mastodon d izeḍwan inmettiyen nniḍen.",
|
"domain_pill.activitypub_like_language": "ActivityPub am tutlayt yettmeslay Mastodon d izeḍwan inmettiyen nniḍen.",
|
||||||
"domain_pill.server": "Aqeddac",
|
"domain_pill.server": "Aqeddac",
|
||||||
"domain_pill.username": "Isem n useqdac",
|
"domain_pill.username": "Isem n useqdac",
|
||||||
|
@ -284,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.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.follow": "Ḍfer {name}",
|
||||||
"interaction_modal.title.reply": "Tiririt i tsuffeɣt n {name}",
|
"interaction_modal.title.reply": "Tiririt i tsuffeɣt n {name}",
|
||||||
"intervals.full.days": "{number, plural, one {# n wass} other {# n wussan}}",
|
"intervals.full.days": "{number, plural, one {# wass} other {# wussan}}",
|
||||||
"intervals.full.hours": "{number, plural, one {# n usarag} other {# n yesragen}}",
|
"intervals.full.hours": "{number, plural, one {# usarag} other {# yisragen}}",
|
||||||
"intervals.full.minutes": "{number, plural, one {# n tesdat} other {# n tesdatin}}",
|
"intervals.full.minutes": "{number, plural, one {# n tesdat} other {# n tesdatin}}",
|
||||||
"keyboard_shortcuts.back": "i tuɣalin ɣer deffir",
|
"keyboard_shortcuts.back": "i tuɣalin ɣer deffir",
|
||||||
"keyboard_shortcuts.blocked": "akken ad teldiḍ umuɣ n yimseqdacen yettwasḥebsen",
|
"keyboard_shortcuts.blocked": "akken ad teldiḍ umuɣ n yimseqdacen yettwasḥebsen",
|
||||||
|
@ -346,9 +351,15 @@
|
||||||
"load_pending": "{count, plural, one {# n uferdis amaynut} other {# n yiferdisen imaynuten}}",
|
"load_pending": "{count, plural, one {# n uferdis amaynut} other {# n yiferdisen imaynuten}}",
|
||||||
"loading_indicator.label": "Yessalay-d …",
|
"loading_indicator.label": "Yessalay-d …",
|
||||||
"media_gallery.toggle_visible": "{number, plural, one {Ffer tugna} other {Ffer tugniwin}}",
|
"media_gallery.toggle_visible": "{number, plural, one {Ffer tugna} other {Ffer tugniwin}}",
|
||||||
|
"mute_modal.hide_from_notifications": "Ffer-it deg ulɣuten",
|
||||||
"mute_modal.hide_options": "Ffer tinefrunin",
|
"mute_modal.hide_options": "Ffer tinefrunin",
|
||||||
|
"mute_modal.indefinite": "Alamma ssnesreɣ asgugem fell-as",
|
||||||
"mute_modal.show_options": "Sken-d tinefrunin",
|
"mute_modal.show_options": "Sken-d tinefrunin",
|
||||||
"mute_modal.title": "Sgugem aseqdac?",
|
"mute_modal.they_can_mention_and_follow": "Yezmer ad k·m-id-yebder, ad k·m-yeḍfer, maca ur t-tettwaliḍt ara.",
|
||||||
|
"mute_modal.they_wont_know": "Ur yezmir ara ad iẓer dakken tesgugmeṭ.",
|
||||||
|
"mute_modal.title": "Asgugem n useqdac?",
|
||||||
|
"mute_modal.you_wont_see_mentions": "Ur tezmireḍ ara ad twaliḍ tisuffaɣ anda d-yettwabdar.",
|
||||||
|
"mute_modal.you_wont_see_posts": "Yezmer ad yettwali tisuffaɣ-ik·im, maca ur tettwaliḍ ara tidak-is.",
|
||||||
"navigation_bar.about": "Ɣef",
|
"navigation_bar.about": "Ɣef",
|
||||||
"navigation_bar.advanced_interface": "Ldi deg ugrudem n web leqqayen",
|
"navigation_bar.advanced_interface": "Ldi deg ugrudem n web leqqayen",
|
||||||
"navigation_bar.blocks": "Iseqdacen yettusḥebsen",
|
"navigation_bar.blocks": "Iseqdacen yettusḥebsen",
|
||||||
|
@ -380,7 +391,6 @@
|
||||||
"notification.favourite": "{name} yesmenyaf addad-ik·im",
|
"notification.favourite": "{name} yesmenyaf addad-ik·im",
|
||||||
"notification.follow": "iṭṭafar-ik·em-id {name}",
|
"notification.follow": "iṭṭafar-ik·em-id {name}",
|
||||||
"notification.follow_request": "{name} yessuter-d ad k·m-yeḍfeṛ",
|
"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.learn_more": "Issin ugar",
|
||||||
"notification.moderation_warning.action_suspend": "Yettwaseḥbes umiḍan-ik.",
|
"notification.moderation_warning.action_suspend": "Yettwaseḥbes umiḍan-ik.",
|
||||||
"notification.own_poll": "Tafrant-ik·im tfuk",
|
"notification.own_poll": "Tafrant-ik·im tfuk",
|
||||||
|
@ -422,12 +432,11 @@
|
||||||
"notifications.permission_denied": "D awezɣi ad yili wermad n walɣuten n tnarit axateṛ turagt tettwagdel",
|
"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.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_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_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_hint": "Alamma tqebleḍ-ten s ufus",
|
||||||
"notifications.policy.filter_not_following_title": "Wid akked tid ur tettḍafareḍ ara",
|
"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.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.enable": "Rmed alɣuten n tnarit",
|
||||||
"notifications_permission_banner.title": "Ur zeggel acemma",
|
"notifications_permission_banner.title": "Ur zeggel acemma",
|
||||||
"onboarding.action.back": "Tuɣalin ɣer deffir",
|
"onboarding.action.back": "Tuɣalin ɣer deffir",
|
||||||
|
@ -498,6 +507,7 @@
|
||||||
"report.categories.other": "Tiyyaḍ",
|
"report.categories.other": "Tiyyaḍ",
|
||||||
"report.categories.spam": "Aspam",
|
"report.categories.spam": "Aspam",
|
||||||
"report.category.subtitle": "Fren amṣada akk ufrin",
|
"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_account": "ameɣnu",
|
||||||
"report.category.title_status": "tasuffeɣt",
|
"report.category.title_status": "tasuffeɣt",
|
||||||
"report.close": "Immed",
|
"report.close": "Immed",
|
||||||
|
@ -611,8 +621,8 @@
|
||||||
"subscribed_languages.save": "Sekles ibeddilen",
|
"subscribed_languages.save": "Sekles ibeddilen",
|
||||||
"tabs_bar.home": "Agejdan",
|
"tabs_bar.home": "Agejdan",
|
||||||
"tabs_bar.notifications": "Alɣuten",
|
"tabs_bar.notifications": "Alɣuten",
|
||||||
"time_remaining.days": "Mazal {number, plural, one {# n wass} other {# n wussan}}",
|
"time_remaining.days": "Mazal {number, plural, one {# wass} other {# wussan}}",
|
||||||
"time_remaining.hours": "Mazal {number, plural, one {# n usrag} other {# n yesragen}}",
|
"time_remaining.hours": "Mazal {number, plural, one {# usarag} other {# yisragen}}",
|
||||||
"time_remaining.minutes": "Mazal {number, plural, one {# n tesdat} other {# n tesdatin}}",
|
"time_remaining.minutes": "Mazal {number, plural, one {# n tesdat} other {# n tesdatin}}",
|
||||||
"time_remaining.moments": "Akuden i d-yeqqimen",
|
"time_remaining.moments": "Akuden i d-yeqqimen",
|
||||||
"time_remaining.seconds": "Mazal {number, plural, one {# n tasint} other {# n tsinin}} id yugran",
|
"time_remaining.seconds": "Mazal {number, plural, one {# n tasint} other {# n tsinin}} id yugran",
|
||||||
|
@ -620,7 +630,7 @@
|
||||||
"timeline_hint.resources.followers": "Imeḍfaṛen",
|
"timeline_hint.resources.followers": "Imeḍfaṛen",
|
||||||
"timeline_hint.resources.follows": "T·Yeṭafaṛ",
|
"timeline_hint.resources.follows": "T·Yeṭafaṛ",
|
||||||
"timeline_hint.resources.statuses": "Tisuffaɣ tiqdimin",
|
"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",
|
"trends.trending_now": "Ayen mucaɛen tura",
|
||||||
"ui.beforeunload": "Arewway-ik·im ad iruḥ ma yella tefeɣ-d deg Maṣṭudun.",
|
"ui.beforeunload": "Arewway-ik·im ad iruḥ ma yella tefeɣ-d deg Maṣṭudun.",
|
||||||
"units.short.billion": "{count}B",
|
"units.short.billion": "{count}B",
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
"about.not_available": "Бұл ақпарат бұл серверде қолжетімді емес.",
|
"about.not_available": "Бұл ақпарат бұл серверде қолжетімді емес.",
|
||||||
"about.powered_by": "{mastodon} негізіндегі орталықсыз әлеуметтік желі",
|
"about.powered_by": "{mastodon} негізіндегі орталықсыз әлеуметтік желі",
|
||||||
"about.rules": "Сервер ережелері",
|
"about.rules": "Сервер ережелері",
|
||||||
"account.account_note_header": "Жазба",
|
|
||||||
"account.add_or_remove_from_list": "Тізімге қосу немесе жою",
|
"account.add_or_remove_from_list": "Тізімге қосу немесе жою",
|
||||||
"account.badges.bot": "Бот",
|
"account.badges.bot": "Бот",
|
||||||
"account.badges.group": "Топ",
|
"account.badges.group": "Топ",
|
||||||
|
@ -245,7 +244,6 @@
|
||||||
"not_signed_in_indicator.not_signed_in": "You need to sign in to access this resource.",
|
"not_signed_in_indicator.not_signed_in": "You need to sign in to access this resource.",
|
||||||
"notification.follow": "{name} сізге жазылды",
|
"notification.follow": "{name} сізге жазылды",
|
||||||
"notification.follow_request": "{name} сізге жазылғысы келеді",
|
"notification.follow_request": "{name} сізге жазылғысы келеді",
|
||||||
"notification.mention": "{name} сізді атап өтті",
|
|
||||||
"notification.own_poll": "Сауалнама аяқталды",
|
"notification.own_poll": "Сауалнама аяқталды",
|
||||||
"notification.reblog": "{name} жазбаңызды бөлісті",
|
"notification.reblog": "{name} жазбаңызды бөлісті",
|
||||||
"notifications.clear": "Ескертпелерді тазарт",
|
"notifications.clear": "Ескертпелерді тазарт",
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
"about.disclaimer": "ಮಾಸ್ಟೋಡಾನ್ ಇದು ಉಚಿತ, ಮುಕ್ತ ತಂತ್ರಾಂಶ ಮತ್ತು Mastodon gGmbH ಇದರ ನೊಂದಾಯಿತ ಗುರುತು.",
|
"about.disclaimer": "ಮಾಸ್ಟೋಡಾನ್ ಇದು ಉಚಿತ, ಮುಕ್ತ ತಂತ್ರಾಂಶ ಮತ್ತು Mastodon gGmbH ಇದರ ನೊಂದಾಯಿತ ಗುರುತು.",
|
||||||
"about.domain_blocks.no_reason_available": "ಕಾರಣ ಲಭ್ಯವಿಲ್ಲ",
|
"about.domain_blocks.no_reason_available": "ಕಾರಣ ಲಭ್ಯವಿಲ್ಲ",
|
||||||
"about.domain_blocks.preamble": "ಸಾಮಾನ್ಯವಾಗಿ ಮಾಸ್ಟೊಡಾನ್ ನಿಮಗೆ ಇತರೆ ಬಳಕೆದಾರರಿಂದ ಹಂಚಲ್ಪಟ್ಟ ವಿಷಯಗಳನ್ನು ನೋಡಲು ಮತ್ತು ಅವರೊಂದಿಗೆ ಸಂಭಾಷಿಸಲು ಅನುಮತಿಸುತ್ತದೆ.\nಆದರೆ ಈ ಸರ್ವ್ರರ್ನಲ್ಲಿ ಅಳವಡಿಸಲಾದ ಕೆಲವು ವಿನಾಯಿತಿಗಳು ಇಂತಿವೆ.",
|
"about.domain_blocks.preamble": "ಸಾಮಾನ್ಯವಾಗಿ ಮಾಸ್ಟೊಡಾನ್ ನಿಮಗೆ ಇತರೆ ಬಳಕೆದಾರರಿಂದ ಹಂಚಲ್ಪಟ್ಟ ವಿಷಯಗಳನ್ನು ನೋಡಲು ಮತ್ತು ಅವರೊಂದಿಗೆ ಸಂಭಾಷಿಸಲು ಅನುಮತಿಸುತ್ತದೆ.\nಆದರೆ ಈ ಸರ್ವ್ರರ್ನಲ್ಲಿ ಅಳವಡಿಸಲಾದ ಕೆಲವು ವಿನಾಯಿತಿಗಳು ಇಂತಿವೆ.",
|
||||||
"account.account_note_header": "ಟಿಪ್ಪಣಿ",
|
|
||||||
"account.add_or_remove_from_list": "ಪಟ್ಟಿಗೆ ಸೇರಿಸು ಅಥವ ಪಟ್ಟಿಯಿಂದ ತೆಗೆದುಹಾಕು",
|
"account.add_or_remove_from_list": "ಪಟ್ಟಿಗೆ ಸೇರಿಸು ಅಥವ ಪಟ್ಟಿಯಿಂದ ತೆಗೆದುಹಾಕು",
|
||||||
"account.badges.bot": "Bot",
|
"account.badges.bot": "Bot",
|
||||||
"account.badges.group": "ಗುಂಪು",
|
"account.badges.group": "ಗುಂಪು",
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"about.not_available": "이 정보는 이 서버에서 사용할 수 없습니다.",
|
"about.not_available": "이 정보는 이 서버에서 사용할 수 없습니다.",
|
||||||
"about.powered_by": "{mastodon}으로 구동되는 분산 소셜 미디어",
|
"about.powered_by": "{mastodon}으로 구동되는 분산 소셜 미디어",
|
||||||
"about.rules": "서버 규칙",
|
"about.rules": "서버 규칙",
|
||||||
"account.account_note_header": "노트",
|
"account.account_note_header": "개인 메모",
|
||||||
"account.add_or_remove_from_list": "리스트에 추가 혹은 삭제",
|
"account.add_or_remove_from_list": "리스트에 추가 혹은 삭제",
|
||||||
"account.badges.bot": "자동화됨",
|
"account.badges.bot": "자동화됨",
|
||||||
"account.badges.group": "그룹",
|
"account.badges.group": "그룹",
|
||||||
|
@ -482,7 +482,6 @@
|
||||||
"notification.favourite": "{name} 님이 내 게시물을 좋아합니다",
|
"notification.favourite": "{name} 님이 내 게시물을 좋아합니다",
|
||||||
"notification.follow": "{name} 님이 나를 팔로우했습니다",
|
"notification.follow": "{name} 님이 나를 팔로우했습니다",
|
||||||
"notification.follow_request": "{name} 님이 팔로우 요청을 보냈습니다",
|
"notification.follow_request": "{name} 님이 팔로우 요청을 보냈습니다",
|
||||||
"notification.mention": "{name} 님의 멘션",
|
|
||||||
"notification.moderation-warning.learn_more": "더 알아보기",
|
"notification.moderation-warning.learn_more": "더 알아보기",
|
||||||
"notification.moderation_warning": "중재 경고를 받았습니다",
|
"notification.moderation_warning": "중재 경고를 받았습니다",
|
||||||
"notification.moderation_warning.action_delete_statuses": "게시물 몇 개가 삭제되었습니다.",
|
"notification.moderation_warning.action_delete_statuses": "게시물 몇 개가 삭제되었습니다.",
|
||||||
|
@ -494,7 +493,6 @@
|
||||||
"notification.moderation_warning.action_suspend": "계정이 정지되었습니다.",
|
"notification.moderation_warning.action_suspend": "계정이 정지되었습니다.",
|
||||||
"notification.own_poll": "설문을 마침",
|
"notification.own_poll": "설문을 마침",
|
||||||
"notification.poll": "참여한 투표가 끝났습니다",
|
"notification.poll": "참여한 투표가 끝났습니다",
|
||||||
"notification.private_mention": "{name} 님이 나를 개인적으로 멘션했습니다",
|
|
||||||
"notification.reblog": "{name} 님이 부스트했습니다",
|
"notification.reblog": "{name} 님이 부스트했습니다",
|
||||||
"notification.relationships_severance_event": "{name} 님과의 연결이 끊어졌습니다",
|
"notification.relationships_severance_event": "{name} 님과의 연결이 끊어졌습니다",
|
||||||
"notification.relationships_severance_event.account_suspension": "{from}의 관리자가 {target}를 정지시켰기 때문에 그들과 더이상 상호작용 할 수 없고 정보를 받아볼 수 없습니다.",
|
"notification.relationships_severance_event.account_suspension": "{from}의 관리자가 {target}를 정지시켰기 때문에 그들과 더이상 상호작용 할 수 없고 정보를 받아볼 수 없습니다.",
|
||||||
|
@ -505,6 +503,8 @@
|
||||||
"notification.update": "{name} 님이 게시물을 수정했습니다",
|
"notification.update": "{name} 님이 게시물을 수정했습니다",
|
||||||
"notification_requests.accept": "수락",
|
"notification_requests.accept": "수락",
|
||||||
"notification_requests.dismiss": "지우기",
|
"notification_requests.dismiss": "지우기",
|
||||||
|
"notification_requests.maximize": "최대화",
|
||||||
|
"notification_requests.minimize_banner": "걸러진 알림 배너 최소화",
|
||||||
"notification_requests.notifications_from": "{name} 님으로부터의 알림",
|
"notification_requests.notifications_from": "{name} 님으로부터의 알림",
|
||||||
"notification_requests.title": "걸러진 알림",
|
"notification_requests.title": "걸러진 알림",
|
||||||
"notifications.clear": "알림 비우기",
|
"notifications.clear": "알림 비우기",
|
||||||
|
@ -543,6 +543,8 @@
|
||||||
"notifications.permission_denied": "권한이 거부되었기 때문에 데스크탑 알림을 활성화할 수 없음",
|
"notifications.permission_denied": "권한이 거부되었기 때문에 데스크탑 알림을 활성화할 수 없음",
|
||||||
"notifications.permission_denied_alert": "이전에 브라우저 권한이 거부되었기 때문에, 데스크탑 알림이 활성화 될 수 없습니다.",
|
"notifications.permission_denied_alert": "이전에 브라우저 권한이 거부되었기 때문에, 데스크탑 알림이 활성화 될 수 없습니다.",
|
||||||
"notifications.permission_required": "필요한 권한이 승인되지 않아 데스크탑 알림을 사용할 수 없습니다.",
|
"notifications.permission_required": "필요한 권한이 승인되지 않아 데스크탑 알림을 사용할 수 없습니다.",
|
||||||
|
"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.hint": "{days, plural, one {하루} other {#일}} 안에 만들어진",
|
||||||
"notifications.policy.filter_new_accounts_title": "새 계정",
|
"notifications.policy.filter_new_accounts_title": "새 계정",
|
||||||
"notifications.policy.filter_not_followers_hint": "나를 팔로우 한 지 {days, plural, other {# 일}}이 되지 않은 사람들을 포함",
|
"notifications.policy.filter_not_followers_hint": "나를 팔로우 한 지 {days, plural, other {# 일}}이 되지 않은 사람들을 포함",
|
||||||
|
@ -551,7 +553,6 @@
|
||||||
"notifications.policy.filter_not_following_title": "내가 팔로우하지 않는 사람들",
|
"notifications.policy.filter_not_following_title": "내가 팔로우하지 않는 사람들",
|
||||||
"notifications.policy.filter_private_mentions_hint": "내가 한 멘션에 단 답글이거나 내가 발신자를 팔로우 한 것이 아닌 이상 걸러집니다",
|
"notifications.policy.filter_private_mentions_hint": "내가 한 멘션에 단 답글이거나 내가 발신자를 팔로우 한 것이 아닌 이상 걸러집니다",
|
||||||
"notifications.policy.filter_private_mentions_title": "청하지 않은 개인적인 멘션",
|
"notifications.policy.filter_private_mentions_title": "청하지 않은 개인적인 멘션",
|
||||||
"notifications.policy.title": "알림을 제외할 조건들…",
|
|
||||||
"notifications_permission_banner.enable": "데스크탑 알림 활성화",
|
"notifications_permission_banner.enable": "데스크탑 알림 활성화",
|
||||||
"notifications_permission_banner.how_to_control": "마스토돈이 열려 있지 않을 때에도 알림을 받으려면, 데스크탑 알림을 활성화 하세요. 당신은 어떤 종류의 반응이 데스크탑 알림을 발생할 지를 {icon} 버튼을 통해 세세하게 설정할 수 있습니다.",
|
"notifications_permission_banner.how_to_control": "마스토돈이 열려 있지 않을 때에도 알림을 받으려면, 데스크탑 알림을 활성화 하세요. 당신은 어떤 종류의 반응이 데스크탑 알림을 발생할 지를 {icon} 버튼을 통해 세세하게 설정할 수 있습니다.",
|
||||||
"notifications_permission_banner.title": "아무것도 놓치지 마세요",
|
"notifications_permission_banner.title": "아무것도 놓치지 마세요",
|
||||||
|
@ -803,11 +804,11 @@
|
||||||
"upload_button.label": "이미지, 영상, 오디오 파일 추가",
|
"upload_button.label": "이미지, 영상, 오디오 파일 추가",
|
||||||
"upload_error.limit": "파일 업로드 제한에 도달했습니다.",
|
"upload_error.limit": "파일 업로드 제한에 도달했습니다.",
|
||||||
"upload_error.poll": "파일 업로드는 설문과 함께 쓸 수 없습니다.",
|
"upload_error.poll": "파일 업로드는 설문과 함께 쓸 수 없습니다.",
|
||||||
"upload_form.audio_description": "청각 장애인을 위한 설명",
|
"upload_form.audio_description": "청각장애인이나 저청각자를 위한 설명",
|
||||||
"upload_form.description": "시각장애인을 위한 설명",
|
"upload_form.description": "시각장애인이나 저시력자를 위한 설명",
|
||||||
"upload_form.edit": "수정",
|
"upload_form.edit": "수정",
|
||||||
"upload_form.thumbnail": "썸네일 변경",
|
"upload_form.thumbnail": "썸네일 변경",
|
||||||
"upload_form.video_description": "청각, 시각 장애인을 위한 설명",
|
"upload_form.video_description": "청각장애인, 저청각자, 시각장애인, 저시력자를 위한 설명",
|
||||||
"upload_modal.analyzing_picture": "사진 분석 중…",
|
"upload_modal.analyzing_picture": "사진 분석 중…",
|
||||||
"upload_modal.apply": "적용",
|
"upload_modal.apply": "적용",
|
||||||
"upload_modal.applying": "적용 중...",
|
"upload_modal.applying": "적용 중...",
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
"about.not_available": "Ev zanyarî li ser vê rajekarê nehatine peydakirin.",
|
"about.not_available": "Ev zanyarî li ser vê rajekarê nehatine peydakirin.",
|
||||||
"about.powered_by": "Medyaya civakî ya nenavendî bi hêzdariya {mastodon}",
|
"about.powered_by": "Medyaya civakî ya nenavendî bi hêzdariya {mastodon}",
|
||||||
"about.rules": "Rêbazên rajekar",
|
"about.rules": "Rêbazên rajekar",
|
||||||
"account.account_note_header": "Nîşe",
|
|
||||||
"account.add_or_remove_from_list": "Li lîsteyan zêde bike yan jî rake",
|
"account.add_or_remove_from_list": "Li lîsteyan zêde bike yan jî rake",
|
||||||
"account.badges.bot": "Bot",
|
"account.badges.bot": "Bot",
|
||||||
"account.badges.group": "Kom",
|
"account.badges.group": "Kom",
|
||||||
|
@ -344,7 +343,6 @@
|
||||||
"notification.admin.sign_up": "{name} tomar bû",
|
"notification.admin.sign_up": "{name} tomar bû",
|
||||||
"notification.follow": "{name} te şopand",
|
"notification.follow": "{name} te şopand",
|
||||||
"notification.follow_request": "{name} dixwazê te bişopîne",
|
"notification.follow_request": "{name} dixwazê te bişopîne",
|
||||||
"notification.mention": "{name} qale te kir",
|
|
||||||
"notification.own_poll": "Rapirsîya te qediya",
|
"notification.own_poll": "Rapirsîya te qediya",
|
||||||
"notification.reblog": "{name} şandiya te bilind kir",
|
"notification.reblog": "{name} şandiya te bilind kir",
|
||||||
"notification.status": "{name} niha şand",
|
"notification.status": "{name} niha şand",
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
{
|
{
|
||||||
"about.blocks": "Leurennow koswys",
|
"about.blocks": "Leurennow koswys",
|
||||||
"account.account_note_header": "Noten",
|
|
||||||
"account.add_or_remove_from_list": "Keworra po Dilea a rolyow",
|
"account.add_or_remove_from_list": "Keworra po Dilea a rolyow",
|
||||||
"account.badges.bot": "Bot",
|
"account.badges.bot": "Bot",
|
||||||
"account.badges.group": "Bagas",
|
"account.badges.group": "Bagas",
|
||||||
|
@ -236,7 +235,6 @@
|
||||||
"not_signed_in_indicator.not_signed_in": "You need to sign in to access this resource.",
|
"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": "{name} a wrug agas holya",
|
||||||
"notification.follow_request": "{name} a bysis 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.own_poll": "Agas sondyans a worfennas",
|
||||||
"notification.reblog": "{name} a generthas agas post",
|
"notification.reblog": "{name} a generthas agas post",
|
||||||
"notification.status": "{name} a wrug nowydh postya",
|
"notification.status": "{name} a wrug nowydh postya",
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
"about.contact": "Ratio:",
|
"about.contact": "Ratio:",
|
||||||
"about.domain_blocks.no_reason_available": "Ratio abdere est",
|
"about.domain_blocks.no_reason_available": "Ratio abdere est",
|
||||||
"about.domain_blocks.silenced.explanation": "Tua profilia atque tuum contentum ab hac serve praecipue non videbis, nisi explōrēs expresse aut subsequeris et optēs.",
|
"about.domain_blocks.silenced.explanation": "Tua profilia atque tuum contentum ab hac serve praecipue non videbis, nisi explōrēs expresse aut subsequeris et optēs.",
|
||||||
"account.account_note_header": "Annotatio",
|
|
||||||
"account.add_or_remove_from_list": "Adde aut ēripe ex tabellīs",
|
"account.add_or_remove_from_list": "Adde aut ēripe ex tabellīs",
|
||||||
"account.badges.bot": "Robotum",
|
"account.badges.bot": "Robotum",
|
||||||
"account.badges.group": "Congregatio",
|
"account.badges.group": "Congregatio",
|
||||||
|
@ -141,7 +140,6 @@
|
||||||
"notification.favourite": "{name} nuntium tuum favit",
|
"notification.favourite": "{name} nuntium tuum favit",
|
||||||
"notification.follow": "{name} te secutus est",
|
"notification.follow": "{name} te secutus est",
|
||||||
"notification.follow_request": "{name} postulavit ut te sequeretur",
|
"notification.follow_request": "{name} postulavit ut te sequeretur",
|
||||||
"notification.mention": "{name} memoravi",
|
|
||||||
"notification.moderation_warning": "Accepistī monitionem moderationis.",
|
"notification.moderation_warning": "Accepistī monitionem moderationis.",
|
||||||
"notification.moderation_warning.action_disable": "Ratio tua debilitata est.",
|
"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_none": "Tua ratiō monitum moderātiōnis accēpit.",
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
"about.not_available": "Esta enformasyon no esta desponivle en este sirvidor.",
|
"about.not_available": "Esta enformasyon no esta desponivle en este sirvidor.",
|
||||||
"about.powered_by": "Redes sosyalas desentralizadas kon uzo de {mastodon}",
|
"about.powered_by": "Redes sosyalas desentralizadas kon uzo de {mastodon}",
|
||||||
"about.rules": "Reglas del sirvidor",
|
"about.rules": "Reglas del sirvidor",
|
||||||
"account.account_note_header": "Nota",
|
|
||||||
"account.add_or_remove_from_list": "Adjusta a o kita de listas",
|
"account.add_or_remove_from_list": "Adjusta a o kita de listas",
|
||||||
"account.badges.bot": "Otomatizado",
|
"account.badges.bot": "Otomatizado",
|
||||||
"account.badges.group": "Grupo",
|
"account.badges.group": "Grupo",
|
||||||
|
@ -450,7 +449,6 @@
|
||||||
"notification.favourite": "A {name} le plaze tu publikasyon",
|
"notification.favourite": "A {name} le plaze tu publikasyon",
|
||||||
"notification.follow": "{name} te ampeso a segir",
|
"notification.follow": "{name} te ampeso a segir",
|
||||||
"notification.follow_request": "{name} tiene solisitado segirte",
|
"notification.follow_request": "{name} tiene solisitado segirte",
|
||||||
"notification.mention": "{name} te enmento",
|
|
||||||
"notification.moderation-warning.learn_more": "Ambezate mas",
|
"notification.moderation-warning.learn_more": "Ambezate mas",
|
||||||
"notification.moderation_warning.action_disable": "Tu kuento tiene sido inkapasitado.",
|
"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.",
|
"notification.moderation_warning.action_mark_statuses_as_sensitive": "Algunas de tus publikasyones tienen sido markadas komo sensivles.",
|
||||||
|
@ -507,7 +505,6 @@
|
||||||
"notifications.policy.filter_not_following_hint": "Asta ke las aproves manualmente",
|
"notifications.policy.filter_not_following_hint": "Asta ke las aproves manualmente",
|
||||||
"notifications.policy.filter_not_following_title": "Personas ke no siges",
|
"notifications.policy.filter_not_following_title": "Personas ke no siges",
|
||||||
"notifications.policy.filter_private_mentions_title": "Enmentaduras privadas no solisitadas",
|
"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.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.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",
|
"notifications_permission_banner.title": "Nunkua te piedres niente",
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"about.not_available": "Ši informacija nebuvo pateikta šiame serveryje.",
|
"about.not_available": "Ši informacija nebuvo pateikta šiame serveryje.",
|
||||||
"about.powered_by": "Decentralizuota socialinė medija, veikianti pagal „{mastodon}“",
|
"about.powered_by": "Decentralizuota socialinė medija, veikianti pagal „{mastodon}“",
|
||||||
"about.rules": "Serverio taisyklės",
|
"about.rules": "Serverio taisyklės",
|
||||||
"account.account_note_header": "Pastaba",
|
"account.account_note_header": "Asmeninė pastaba",
|
||||||
"account.add_or_remove_from_list": "Pridėti arba pašalinti iš sąrašų",
|
"account.add_or_remove_from_list": "Pridėti arba pašalinti iš sąrašų",
|
||||||
"account.badges.bot": "Automatizuotas",
|
"account.badges.bot": "Automatizuotas",
|
||||||
"account.badges.group": "Grupė",
|
"account.badges.group": "Grupė",
|
||||||
|
@ -300,6 +300,7 @@
|
||||||
"filter_modal.select_filter.subtitle": "Naudok esamą kategoriją arba sukurk naują.",
|
"filter_modal.select_filter.subtitle": "Naudok esamą kategoriją arba sukurk naują.",
|
||||||
"filter_modal.select_filter.title": "Filtruoti šį įrašą",
|
"filter_modal.select_filter.title": "Filtruoti šį įrašą",
|
||||||
"filter_modal.title.status": "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",
|
"filtered_notifications_banner.title": "Filtruojami pranešimai",
|
||||||
"firehose.all": "Visi",
|
"firehose.all": "Visi",
|
||||||
"firehose.local": "Šis serveris",
|
"firehose.local": "Šis serveris",
|
||||||
|
@ -355,6 +356,15 @@
|
||||||
"home.pending_critical_update.link": "Žiūrėti naujinimus",
|
"home.pending_critical_update.link": "Žiūrėti naujinimus",
|
||||||
"home.pending_critical_update.title": "Galimas kritinis saugumo naujinimas.",
|
"home.pending_critical_update.title": "Galimas kritinis saugumo naujinimas.",
|
||||||
"home.show_announcements": "Rodyti skelbimus",
|
"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_avoid_confusion": "Filtravimas padeda išvengti galimos painiavos.",
|
||||||
|
"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.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.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.",
|
"interaction_modal.description.reblog": "Su Mastodon paskyra gali pakelti šią įrašą ir pasidalyti juo su savo sekėjais.",
|
||||||
|
@ -481,7 +491,11 @@
|
||||||
"notification.favourite": "{name} pamėgo tavo įrašą",
|
"notification.favourite": "{name} pamėgo tavo įrašą",
|
||||||
"notification.follow": "{name} seka tave",
|
"notification.follow": "{name} seka tave",
|
||||||
"notification.follow_request": "{name} paprašė tave sekti",
|
"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.learn_more": "Sužinoti daugiau",
|
||||||
"notification.moderation_warning": "Gavai prižiūrėjimo įspėjimą",
|
"notification.moderation_warning": "Gavai prižiūrėjimo įspėjimą",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Kai kurie tavo įrašai buvo pašalintos.",
|
"notification.moderation_warning.action_delete_statuses": "Kai kurie tavo įrašai buvo pašalintos.",
|
||||||
|
@ -493,7 +507,6 @@
|
||||||
"notification.moderation_warning.action_suspend": "Tavo paskyra buvo sustabdyta.",
|
"notification.moderation_warning.action_suspend": "Tavo paskyra buvo sustabdyta.",
|
||||||
"notification.own_poll": "Tavo apklausa baigėsi",
|
"notification.own_poll": "Tavo apklausa baigėsi",
|
||||||
"notification.poll": "Baigėsi apklausa, kurioje balsavai",
|
"notification.poll": "Baigėsi apklausa, kurioje balsavai",
|
||||||
"notification.private_mention": "{name} privačiai paminėjo tave",
|
|
||||||
"notification.reblog": "{name} pakėlė tavo įrašą",
|
"notification.reblog": "{name} pakėlė tavo įrašą",
|
||||||
"notification.relationships_severance_event": "Prarasti sąryšiai su {name}",
|
"notification.relationships_severance_event": "Prarasti sąryšiai su {name}",
|
||||||
"notification.relationships_severance_event.learn_more": "Sužinoti daugiau",
|
"notification.relationships_severance_event.learn_more": "Sužinoti daugiau",
|
||||||
|
@ -502,6 +515,10 @@
|
||||||
"notification.update": "{name} redagavo įrašą",
|
"notification.update": "{name} redagavo įrašą",
|
||||||
"notification_requests.accept": "Priimti",
|
"notification_requests.accept": "Priimti",
|
||||||
"notification_requests.dismiss": "Atmesti",
|
"notification_requests.dismiss": "Atmesti",
|
||||||
|
"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.notifications_from": "Pranešimai iš {name}",
|
||||||
"notification_requests.title": "Filtruojami pranešimai",
|
"notification_requests.title": "Filtruojami pranešimai",
|
||||||
"notifications.clear": "Išvalyti pranešimus",
|
"notifications.clear": "Išvalyti pranešimus",
|
||||||
|
@ -540,12 +557,20 @@
|
||||||
"notifications.permission_denied": "Darbalaukio pranešimai nepasiekiami dėl anksčiau atmestos naršyklės leidimų užklausos.",
|
"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_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.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.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_new_accounts_title": "Naujos paskyros",
|
||||||
"notifications.policy.filter_not_following_hint": "Kol jų nepatvirtinsi rankiniu būdu",
|
"notifications.policy.filter_not_following_hint": "Kol jų nepatvirtinsi rankiniu būdu",
|
||||||
"notifications.policy.filter_not_following_title": "Žmonių, kuriuos neseki",
|
"notifications.policy.filter_not_following_title": "Žmonių, kuriuos neseki",
|
||||||
"notifications.policy.filter_private_mentions_title": "Nepageidaujami privatūs paminėjimai",
|
"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.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.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",
|
"notifications_permission_banner.title": "Niekada nieko nepraleisk",
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
"about.not_available": "Šī informācija nav padarīta pieejama šajā serverī.",
|
"about.not_available": "Šī informācija nav padarīta pieejama šajā serverī.",
|
||||||
"about.powered_by": "Decentralizētu sociālo tīklu nodrošina {mastodon}",
|
"about.powered_by": "Decentralizētu sociālo tīklu nodrošina {mastodon}",
|
||||||
"about.rules": "Servera noteikumi",
|
"about.rules": "Servera noteikumi",
|
||||||
"account.account_note_header": "Piezīme",
|
|
||||||
"account.add_or_remove_from_list": "Pievienot vai Noņemt no sarakstiem",
|
"account.add_or_remove_from_list": "Pievienot vai Noņemt no sarakstiem",
|
||||||
"account.badges.bot": "Automatizēts",
|
"account.badges.bot": "Automatizēts",
|
||||||
"account.badges.group": "Grupa",
|
"account.badges.group": "Grupa",
|
||||||
|
@ -427,7 +426,6 @@
|
||||||
"notification.favourite": "{name} pievienoja tavu ziņu izlasei",
|
"notification.favourite": "{name} pievienoja tavu ziņu izlasei",
|
||||||
"notification.follow": "{name} uzsāka Tev sekot",
|
"notification.follow": "{name} uzsāka Tev sekot",
|
||||||
"notification.follow_request": "{name} nosūtīja Tev sekošanas pieprasījumu",
|
"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.learn_more": "Uzzināt vairāk",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Daži no Taviem ierakstiem tika noņemti.",
|
"notification.moderation_warning.action_delete_statuses": "Daži no Taviem ierakstiem tika noņemti.",
|
||||||
"notification.moderation_warning.action_disable": "Tavs konts tika atspējots.",
|
"notification.moderation_warning.action_disable": "Tavs konts tika atspējots.",
|
||||||
|
@ -482,7 +480,6 @@
|
||||||
"notifications.policy.filter_not_followers_title": "Cilvēki, kuri Tev neseko",
|
"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_hint": "Līdz tos pašrocīgi apstiprināsi",
|
||||||
"notifications.policy.filter_not_following_title": "Cilvēki, kuriem Tu neseko",
|
"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.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.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",
|
"notifications_permission_banner.title": "Nekad nepalaid neko garām",
|
||||||
|
|
|
@ -10,7 +10,6 @@
|
||||||
"about.not_available": "Оваа информација не е достапна на овој сервер.",
|
"about.not_available": "Оваа информација не е достапна на овој сервер.",
|
||||||
"about.powered_by": "Децентрализиран друштвен медиум овозможен од {mastodon}",
|
"about.powered_by": "Децентрализиран друштвен медиум овозможен од {mastodon}",
|
||||||
"about.rules": "Правила на серверот",
|
"about.rules": "Правила на серверот",
|
||||||
"account.account_note_header": "Белешка",
|
|
||||||
"account.add_or_remove_from_list": "Додади или одстрани од листа",
|
"account.add_or_remove_from_list": "Додади или одстрани од листа",
|
||||||
"account.badges.bot": "Бот",
|
"account.badges.bot": "Бот",
|
||||||
"account.badges.group": "Група",
|
"account.badges.group": "Група",
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
"about.domain_blocks.silenced.title": "പരിമിതമായത്",
|
"about.domain_blocks.silenced.title": "പരിമിതമായത്",
|
||||||
"about.domain_blocks.suspended.title": "താൽക്കാലികമായി നിർത്തിവെച്ചിരിക്കുന്നു",
|
"about.domain_blocks.suspended.title": "താൽക്കാലികമായി നിർത്തിവെച്ചിരിക്കുന്നു",
|
||||||
"about.rules": "സെർവ്വർ നിയമങ്ങൾ",
|
"about.rules": "സെർവ്വർ നിയമങ്ങൾ",
|
||||||
"account.account_note_header": "കുറിപ്പ്",
|
|
||||||
"account.add_or_remove_from_list": "പട്ടികയിൽ ചേർക്കുകയോ/മാറ്റുകയോ ചെയ്യുക",
|
"account.add_or_remove_from_list": "പട്ടികയിൽ ചേർക്കുകയോ/മാറ്റുകയോ ചെയ്യുക",
|
||||||
"account.badges.bot": "റോബോട്ട്",
|
"account.badges.bot": "റോബോട്ട്",
|
||||||
"account.badges.group": "ഗ്രൂപ്പ്",
|
"account.badges.group": "ഗ്രൂപ്പ്",
|
||||||
|
@ -239,7 +238,6 @@
|
||||||
"not_signed_in_indicator.not_signed_in": "You need to sign in to access this resource.",
|
"not_signed_in_indicator.not_signed_in": "You need to sign in to access this resource.",
|
||||||
"notification.follow": "{name} നിങ്ങളെ പിന്തുടർന്നു",
|
"notification.follow": "{name} നിങ്ങളെ പിന്തുടർന്നു",
|
||||||
"notification.follow_request": "{name} നിങ്ങളെ പിന്തുടരാൻ അഭ്യർത്ഥിച്ചു",
|
"notification.follow_request": "{name} നിങ്ങളെ പിന്തുടരാൻ അഭ്യർത്ഥിച്ചു",
|
||||||
"notification.mention": "{name} നിങ്ങളെ സൂചിപ്പിച്ചു",
|
|
||||||
"notification.own_poll": "നിങ്ങളുടെ പോൾ അവസാനിച്ചു",
|
"notification.own_poll": "നിങ്ങളുടെ പോൾ അവസാനിച്ചു",
|
||||||
"notification.reblog": "{name} നിങ്ങളുടെ പോസ്റ്റ് ബൂസ്റ്റ് ചെയ്തു",
|
"notification.reblog": "{name} നിങ്ങളുടെ പോസ്റ്റ് ബൂസ്റ്റ് ചെയ്തു",
|
||||||
"notification.status": "{name} ഇപ്പോൾ പോസ്റ്റുചെയ്തു",
|
"notification.status": "{name} ഇപ്പോൾ പോസ്റ്റുചെയ്തു",
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
"about.not_available": "ही माहिती या सर्व्हरवर उपलब्ध करून देण्यात आलेली नाही.",
|
"about.not_available": "ही माहिती या सर्व्हरवर उपलब्ध करून देण्यात आलेली नाही.",
|
||||||
"about.powered_by": "{mastodon} द्वारा समर्थित विकेंद्रित सोशल मीडिया",
|
"about.powered_by": "{mastodon} द्वारा समर्थित विकेंद्रित सोशल मीडिया",
|
||||||
"about.rules": "सर्व्हर नियम",
|
"about.rules": "सर्व्हर नियम",
|
||||||
"account.account_note_header": "नोंद",
|
|
||||||
"account.add_or_remove_from_list": "यादीत घाला किंवा यादीतून काढून टाका",
|
"account.add_or_remove_from_list": "यादीत घाला किंवा यादीतून काढून टाका",
|
||||||
"account.badges.bot": "स्वयंचलित खाते",
|
"account.badges.bot": "स्वयंचलित खाते",
|
||||||
"account.badges.group": "गट",
|
"account.badges.group": "गट",
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
"about.not_available": "Maklumat ini belum tersedia pada pelayan ini.",
|
"about.not_available": "Maklumat ini belum tersedia pada pelayan ini.",
|
||||||
"about.powered_by": "Media sosial terpencar yang dikuasakan oleh {mastodon}",
|
"about.powered_by": "Media sosial terpencar yang dikuasakan oleh {mastodon}",
|
||||||
"about.rules": "Peraturan pelayan",
|
"about.rules": "Peraturan pelayan",
|
||||||
"account.account_note_header": "Catatan",
|
|
||||||
"account.add_or_remove_from_list": "Tambah atau Buang dari senarai",
|
"account.add_or_remove_from_list": "Tambah atau Buang dari senarai",
|
||||||
"account.badges.bot": "Bot",
|
"account.badges.bot": "Bot",
|
||||||
"account.badges.group": "Kumpulan",
|
"account.badges.group": "Kumpulan",
|
||||||
|
@ -416,7 +415,6 @@
|
||||||
"notification.favourite": "{name} menggemari pos anda",
|
"notification.favourite": "{name} menggemari pos anda",
|
||||||
"notification.follow": "{name} mengikuti anda",
|
"notification.follow": "{name} mengikuti anda",
|
||||||
"notification.follow_request": "{name} meminta untuk mengikuti anda",
|
"notification.follow_request": "{name} meminta untuk mengikuti anda",
|
||||||
"notification.mention": "{name} menyebut anda",
|
|
||||||
"notification.own_poll": "Undian anda telah tamat",
|
"notification.own_poll": "Undian anda telah tamat",
|
||||||
"notification.reblog": "{name} menggalak hantaran anda",
|
"notification.reblog": "{name} menggalak hantaran anda",
|
||||||
"notification.status": "{name} baru sahaja mengirim hantaran",
|
"notification.status": "{name} baru sahaja mengirim hantaran",
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
"about.not_available": "ဤအချက်အလက်ကို ဤဆာဗာတွင် မရရှိနိုင်ပါ။",
|
"about.not_available": "ဤအချက်အလက်ကို ဤဆာဗာတွင် မရရှိနိုင်ပါ။",
|
||||||
"about.powered_by": "{mastodon} မှ ဗဟိုချုပ်ကိုင်မှုလျှော့ချထားသော ဆိုရှယ်မီဒီယာ",
|
"about.powered_by": "{mastodon} မှ ဗဟိုချုပ်ကိုင်မှုလျှော့ချထားသော ဆိုရှယ်မီဒီယာ",
|
||||||
"about.rules": "ဆာဗာစည်းမျဉ်းများ",
|
"about.rules": "ဆာဗာစည်းမျဉ်းများ",
|
||||||
"account.account_note_header": "မှတ်ချက်",
|
|
||||||
"account.add_or_remove_from_list": "စာရင်းများမှ ထည့်ပါ သို့မဟုတ် ဖယ်ရှားပါ။",
|
"account.add_or_remove_from_list": "စာရင်းများမှ ထည့်ပါ သို့မဟုတ် ဖယ်ရှားပါ။",
|
||||||
"account.badges.bot": "စက်ရုပ်",
|
"account.badges.bot": "စက်ရုပ်",
|
||||||
"account.badges.group": "အဖွဲ့",
|
"account.badges.group": "အဖွဲ့",
|
||||||
|
@ -397,7 +396,6 @@
|
||||||
"notification.favourite": "{name} က သင့်ပို့စ်ကို နှစ်သက်ခဲ့သည်",
|
"notification.favourite": "{name} က သင့်ပို့စ်ကို နှစ်သက်ခဲ့သည်",
|
||||||
"notification.follow": "{name} က သင့်ကို စောင့်ကြည့်ခဲ့သည်",
|
"notification.follow": "{name} က သင့်ကို စောင့်ကြည့်ခဲ့သည်",
|
||||||
"notification.follow_request": "{name} က သင့်ကို စောင့်ကြည့်ရန် တောင်းဆိုထားသည်",
|
"notification.follow_request": "{name} က သင့်ကို စောင့်ကြည့်ရန် တောင်းဆိုထားသည်",
|
||||||
"notification.mention": "{name} က သင့်ကို ဖော်ပြခဲ့သည်",
|
|
||||||
"notification.own_poll": "စစ်တမ်းကောက်မှု ပြီးဆုံးပါပြီ",
|
"notification.own_poll": "စစ်တမ်းကောက်မှု ပြီးဆုံးပါပြီ",
|
||||||
"notification.reblog": "{name} boosted your status",
|
"notification.reblog": "{name} boosted your status",
|
||||||
"notification.status": "{name} က အခုလေးတင် ပို့စ်တင်လိုက်ပါပြီ",
|
"notification.status": "{name} က အခုလေးတင် ပို့စ်တင်လိုက်ပါပြီ",
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"about.blocks": "Gelimiteerde en opgeschorte servers",
|
"about.blocks": "Beperkte en opgeschorte servers",
|
||||||
"about.contact": "Contact:",
|
"about.contact": "Contact:",
|
||||||
"about.disclaimer": "Mastodon is vrije, opensourcesoftware en een handelsmerk van Mastodon gGmbH.",
|
"about.disclaimer": "Mastodon is vrije, opensourcesoftware en een handelsmerk van Mastodon gGmbH.",
|
||||||
"about.domain_blocks.no_reason_available": "Reden niet beschikbaar",
|
"about.domain_blocks.no_reason_available": "Reden niet beschikbaar",
|
||||||
|
@ -11,7 +11,7 @@
|
||||||
"about.not_available": "Deze informatie is niet beschikbaar gemaakt op deze server.",
|
"about.not_available": "Deze informatie is niet beschikbaar gemaakt op deze server.",
|
||||||
"about.powered_by": "Gedecentraliseerde sociale media mogelijk gemaakt door {mastodon}",
|
"about.powered_by": "Gedecentraliseerde sociale media mogelijk gemaakt door {mastodon}",
|
||||||
"about.rules": "Serverregels",
|
"about.rules": "Serverregels",
|
||||||
"account.account_note_header": "Opmerking",
|
"account.account_note_header": "Persoonlijke opmerking",
|
||||||
"account.add_or_remove_from_list": "Toevoegen aan of verwijderen uit lijsten",
|
"account.add_or_remove_from_list": "Toevoegen aan of verwijderen uit lijsten",
|
||||||
"account.badges.bot": "Geautomatiseerd",
|
"account.badges.bot": "Geautomatiseerd",
|
||||||
"account.badges.group": "Groep",
|
"account.badges.group": "Groep",
|
||||||
|
@ -356,6 +356,17 @@
|
||||||
"home.pending_critical_update.link": "Bekijk updates",
|
"home.pending_critical_update.link": "Bekijk updates",
|
||||||
"home.pending_critical_update.title": "Kritieke beveiligingsupdate beschikbaar!",
|
"home.pending_critical_update.title": "Kritieke beveiligingsupdate beschikbaar!",
|
||||||
"home.show_announcements": "Mededelingen tonen",
|
"home.show_announcements": "Mededelingen tonen",
|
||||||
|
"ignore_notifications_modal.disclaimer": "Mastodon kan gebruikers niet informeren dat je hun meldingen hebt genegeerd. Meldingen negeren zal niet voorkomen dat de berichten zelf worden verzonden.",
|
||||||
|
"ignore_notifications_modal.filter_instead": "In plaats daarvan filteren",
|
||||||
|
"ignore_notifications_modal.filter_to_act_users": "Je bent nog steeds in staat om volgverzoeken goed- of af te keuren, en om gebruikers te rapporteren",
|
||||||
|
"ignore_notifications_modal.filter_to_avoid_confusion": "Filteren voorkomt potentiële verwarring",
|
||||||
|
"ignore_notifications_modal.filter_to_review_separately": "Je kunt gefilterde meldingen afzonderlijk beoordelen",
|
||||||
|
"ignore_notifications_modal.ignore": "Meldingen negeren",
|
||||||
|
"ignore_notifications_modal.limited_accounts_title": "Meldingen van beperkte accounts negeren?",
|
||||||
|
"ignore_notifications_modal.new_accounts_title": "Meldingen van nieuwe accounts negeren?",
|
||||||
|
"ignore_notifications_modal.not_followers_title": "Meldingen negeren van mensen die jou niet volgen?",
|
||||||
|
"ignore_notifications_modal.not_following_title": "Meldingen negeren van mensen die je niet volgt?",
|
||||||
|
"ignore_notifications_modal.private_mentions_title": "Meldingen negeren van ongevraagde privéberichten?",
|
||||||
"interaction_modal.description.favourite": "Je kunt met een Mastodon-account dit bericht als favoriet markeren, om die gebruiker te laten weten dat je het bericht waardeert en om het op te slaan.",
|
"interaction_modal.description.favourite": "Je kunt met een Mastodon-account dit bericht als favoriet markeren, om die gebruiker te laten weten dat je het bericht waardeert en om het op te slaan.",
|
||||||
"interaction_modal.description.follow": "Je kunt met een Mastodon-account {name} volgen, om zo diens berichten op jouw starttijdlijn te ontvangen.",
|
"interaction_modal.description.follow": "Je kunt met een Mastodon-account {name} volgen, om zo diens berichten op jouw starttijdlijn te ontvangen.",
|
||||||
"interaction_modal.description.reblog": "Je kunt met een Mastodon-account dit bericht boosten, om het zo met jouw volgers te delen.",
|
"interaction_modal.description.reblog": "Je kunt met een Mastodon-account dit bericht boosten, om het zo met jouw volgers te delen.",
|
||||||
|
@ -482,7 +493,11 @@
|
||||||
"notification.favourite": "{name} markeerde jouw bericht als favoriet",
|
"notification.favourite": "{name} markeerde jouw bericht als favoriet",
|
||||||
"notification.follow": "{name} volgt jou nu",
|
"notification.follow": "{name} volgt jou nu",
|
||||||
"notification.follow_request": "{name} wil jou graag volgen",
|
"notification.follow_request": "{name} wil jou graag volgen",
|
||||||
"notification.mention": "{name} vermeldde jou",
|
"notification.label.mention": "Vermelding",
|
||||||
|
"notification.label.private_mention": "Privébericht",
|
||||||
|
"notification.label.private_reply": "Privéreactie",
|
||||||
|
"notification.label.reply": "Reactie",
|
||||||
|
"notification.mention": "Vermelding",
|
||||||
"notification.moderation-warning.learn_more": "Meer informatie",
|
"notification.moderation-warning.learn_more": "Meer informatie",
|
||||||
"notification.moderation_warning": "Je hebt een moderatie-waarschuwing ontvangen",
|
"notification.moderation_warning": "Je hebt een moderatie-waarschuwing ontvangen",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Sommige van je berichten zijn verwijderd.",
|
"notification.moderation_warning.action_delete_statuses": "Sommige van je berichten zijn verwijderd.",
|
||||||
|
@ -494,7 +509,6 @@
|
||||||
"notification.moderation_warning.action_suspend": "Jouw account is opgeschort.",
|
"notification.moderation_warning.action_suspend": "Jouw account is opgeschort.",
|
||||||
"notification.own_poll": "Jouw peiling is beëindigd",
|
"notification.own_poll": "Jouw peiling is beëindigd",
|
||||||
"notification.poll": "Een peiling waaraan jij hebt meegedaan is beëindigd",
|
"notification.poll": "Een peiling waaraan jij hebt meegedaan is beëindigd",
|
||||||
"notification.private_mention": "{name} heeft je een privébericht gestuurd",
|
|
||||||
"notification.reblog": "{name} boostte jouw bericht",
|
"notification.reblog": "{name} boostte jouw bericht",
|
||||||
"notification.relationships_severance_event": "Verloren verbindingen met {name}",
|
"notification.relationships_severance_event": "Verloren verbindingen met {name}",
|
||||||
"notification.relationships_severance_event.account_suspension": "Een beheerder van {from} heeft {target} geschorst, wat betekent dat je geen updates meer van hen kunt ontvangen of met hen kunt communiceren.",
|
"notification.relationships_severance_event.account_suspension": "Een beheerder van {from} heeft {target} geschorst, wat betekent dat je geen updates meer van hen kunt ontvangen of met hen kunt communiceren.",
|
||||||
|
@ -504,11 +518,26 @@
|
||||||
"notification.status": "{name} heeft zojuist een bericht geplaatst",
|
"notification.status": "{name} heeft zojuist een bericht geplaatst",
|
||||||
"notification.update": "{name} heeft een bericht bewerkt",
|
"notification.update": "{name} heeft een bericht bewerkt",
|
||||||
"notification_requests.accept": "Accepteren",
|
"notification_requests.accept": "Accepteren",
|
||||||
|
"notification_requests.accept_all": "Alles accepteren",
|
||||||
|
"notification_requests.accept_multiple": "{count, plural, one {# verzoek accepteren} other {# verzoeken accepteren}}",
|
||||||
|
"notification_requests.confirm_accept_all.button": "Alles accepteren",
|
||||||
|
"notification_requests.confirm_accept_all.message": "Je staat op het punt om {count, plural, one {een meldingsverzoek} other {# meldingsverzoeken}} te accepteren. Wil je doorgaan?",
|
||||||
|
"notification_requests.confirm_accept_all.title": "Meldingsverzoeken accepteren?",
|
||||||
|
"notification_requests.confirm_dismiss_all.button": "Alles afwijzen",
|
||||||
|
"notification_requests.confirm_dismiss_all.message": "Je staat op het punt om {count, plural, one {een meldingsverzoek} other {# meldingsverzoeken}} af te wijzen. Je zult niet in staat zijn om {count, plural, one {hier} other {hier}} weer gemakkelijk toegang toe te krijgen. Wil je doorgaan?",
|
||||||
|
"notification_requests.confirm_dismiss_all.title": "Meldingsverzoeken afwijzen?",
|
||||||
"notification_requests.dismiss": "Afwijzen",
|
"notification_requests.dismiss": "Afwijzen",
|
||||||
"notification_requests.maximize": "Maximaliseer",
|
"notification_requests.dismiss_all": "Alles afwijzen",
|
||||||
|
"notification_requests.dismiss_multiple": "{count, plural, one {# verzoek afwijzen} other {# verzoeken afwijzen}}",
|
||||||
|
"notification_requests.enter_selection_mode": "Selecteren",
|
||||||
|
"notification_requests.exit_selection_mode": "Annuleren",
|
||||||
|
"notification_requests.explainer_for_limited_account": "Meldingen van dit account zijn gefilterd omdat dit account door een moderator is beperkt.",
|
||||||
|
"notification_requests.explainer_for_limited_remote_account": "Meldingen van dit account zijn gefilterd omdat dit account of diens server door een moderator is beperkt.",
|
||||||
|
"notification_requests.maximize": "Maximaliseren",
|
||||||
"notification_requests.minimize_banner": "Banner met gefilterde meldingen minimaliseren",
|
"notification_requests.minimize_banner": "Banner met gefilterde meldingen minimaliseren",
|
||||||
"notification_requests.notifications_from": "Meldingen van {name}",
|
"notification_requests.notifications_from": "Meldingen van {name}",
|
||||||
"notification_requests.title": "Gefilterde meldingen",
|
"notification_requests.title": "Gefilterde meldingen",
|
||||||
|
"notification_requests.view": "Meldingen bekijken",
|
||||||
"notifications.clear": "Meldingen verwijderen",
|
"notifications.clear": "Meldingen verwijderen",
|
||||||
"notifications.clear_confirmation": "Weet je het zeker dat je al jouw meldingen wilt verwijderen?",
|
"notifications.clear_confirmation": "Weet je het zeker dat je al jouw meldingen wilt verwijderen?",
|
||||||
"notifications.clear_title": "Meldingen verwijderen?",
|
"notifications.clear_title": "Meldingen verwijderen?",
|
||||||
|
@ -545,6 +574,14 @@
|
||||||
"notifications.permission_denied": "Desktopmeldingen zijn niet beschikbaar omdat een eerdere browsertoestemming werd geweigerd",
|
"notifications.permission_denied": "Desktopmeldingen zijn niet beschikbaar omdat een eerdere browsertoestemming werd geweigerd",
|
||||||
"notifications.permission_denied_alert": "Desktopmeldingen kunnen niet worden ingeschakeld, omdat een eerdere browsertoestemming werd geweigerd",
|
"notifications.permission_denied_alert": "Desktopmeldingen kunnen niet worden ingeschakeld, omdat een eerdere browsertoestemming werd geweigerd",
|
||||||
"notifications.permission_required": "Desktopmeldingen zijn niet beschikbaar omdat de benodigde toestemming niet is verleend.",
|
"notifications.permission_required": "Desktopmeldingen zijn niet beschikbaar omdat de benodigde toestemming niet is verleend.",
|
||||||
|
"notifications.policy.accept": "Accepteren",
|
||||||
|
"notifications.policy.accept_hint": "In meldingen weergeven",
|
||||||
|
"notifications.policy.drop": "Negeren",
|
||||||
|
"notifications.policy.drop_hint": "Permanent verwijderen",
|
||||||
|
"notifications.policy.filter": "Filter",
|
||||||
|
"notifications.policy.filter_hint": "Naar gefilterde inbox voor meldingen verzenden",
|
||||||
|
"notifications.policy.filter_limited_accounts_hint": "Beperkt door servermoderatoren",
|
||||||
|
"notifications.policy.filter_limited_accounts_title": "Gemodereerde accounts",
|
||||||
"notifications.policy.filter_new_accounts.hint": "In de afgelopen {days, plural, one {24 uur} other {# dagen}} geregistreerd",
|
"notifications.policy.filter_new_accounts.hint": "In de afgelopen {days, plural, one {24 uur} other {# dagen}} geregistreerd",
|
||||||
"notifications.policy.filter_new_accounts_title": "Nieuwe accounts",
|
"notifications.policy.filter_new_accounts_title": "Nieuwe accounts",
|
||||||
"notifications.policy.filter_not_followers_hint": "Inclusief mensen die jou korter dan {days, plural, one {24 uur} other {# dagen}} volgen",
|
"notifications.policy.filter_not_followers_hint": "Inclusief mensen die jou korter dan {days, plural, one {24 uur} other {# dagen}} volgen",
|
||||||
|
@ -553,7 +590,7 @@
|
||||||
"notifications.policy.filter_not_following_title": "Mensen die jij niet volgt",
|
"notifications.policy.filter_not_following_title": "Mensen die jij niet volgt",
|
||||||
"notifications.policy.filter_private_mentions_hint": "Onzichtbaar tenzij het een antwoord is op een privébericht van jou of wanneer je de afzender volgt",
|
"notifications.policy.filter_private_mentions_hint": "Onzichtbaar tenzij het een antwoord is op een privébericht van jou of wanneer je de afzender volgt",
|
||||||
"notifications.policy.filter_private_mentions_title": "Ongevraagde privéberichten",
|
"notifications.policy.filter_private_mentions_title": "Ongevraagde privéberichten",
|
||||||
"notifications.policy.title": "Meldingen verbergen van…",
|
"notifications.policy.title": "Meldingen beheren van…",
|
||||||
"notifications_permission_banner.enable": "Desktopmeldingen inschakelen",
|
"notifications_permission_banner.enable": "Desktopmeldingen inschakelen",
|
||||||
"notifications_permission_banner.how_to_control": "Om meldingen te ontvangen wanneer Mastodon niet open staat. Je kunt precies bepalen welke soort interacties wel of geen desktopmeldingen geven via de bovenstaande {icon} knop.",
|
"notifications_permission_banner.how_to_control": "Om meldingen te ontvangen wanneer Mastodon niet open staat. Je kunt precies bepalen welke soort interacties wel of geen desktopmeldingen geven via de bovenstaande {icon} knop.",
|
||||||
"notifications_permission_banner.title": "Mis nooit meer iets",
|
"notifications_permission_banner.title": "Mis nooit meer iets",
|
||||||
|
@ -794,6 +831,7 @@
|
||||||
"timeline_hint.remote_resource_not_displayed": "{resource} van andere servers worden niet getoond.",
|
"timeline_hint.remote_resource_not_displayed": "{resource} van andere servers worden niet getoond.",
|
||||||
"timeline_hint.resources.followers": "Volgers",
|
"timeline_hint.resources.followers": "Volgers",
|
||||||
"timeline_hint.resources.follows": "Volgend",
|
"timeline_hint.resources.follows": "Volgend",
|
||||||
|
"timeline_hint.resources.replies": "Enkele reacties",
|
||||||
"timeline_hint.resources.statuses": "Oudere berichten",
|
"timeline_hint.resources.statuses": "Oudere berichten",
|
||||||
"trends.counter_by_accounts": "{count, plural, one {{counter} persoon} other {{counter} mensen}} {days, plural, one {in het afgelopen etmaal} other {in de afgelopen {days} dagen}}",
|
"trends.counter_by_accounts": "{count, plural, one {{counter} persoon} other {{counter} mensen}} {days, plural, one {in het afgelopen etmaal} other {in de afgelopen {days} dagen}}",
|
||||||
"trends.trending_now": "Huidige trends",
|
"trends.trending_now": "Huidige trends",
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"about.not_available": "Denne informasjonen er ikkje gjort tilgjengeleg på denne tenaren.",
|
"about.not_available": "Denne informasjonen er ikkje gjort tilgjengeleg på denne tenaren.",
|
||||||
"about.powered_by": "Desentraliserte sosiale medium drive av {mastodon}",
|
"about.powered_by": "Desentraliserte sosiale medium drive av {mastodon}",
|
||||||
"about.rules": "Tenarreglar",
|
"about.rules": "Tenarreglar",
|
||||||
"account.account_note_header": "Merknad",
|
"account.account_note_header": "Personleg notat",
|
||||||
"account.add_or_remove_from_list": "Legg til eller fjern frå lister",
|
"account.add_or_remove_from_list": "Legg til eller fjern frå lister",
|
||||||
"account.badges.bot": "Robot",
|
"account.badges.bot": "Robot",
|
||||||
"account.badges.group": "Gruppe",
|
"account.badges.group": "Gruppe",
|
||||||
|
@ -171,21 +171,28 @@
|
||||||
"confirmations.block.confirm": "Blokker",
|
"confirmations.block.confirm": "Blokker",
|
||||||
"confirmations.delete.confirm": "Slett",
|
"confirmations.delete.confirm": "Slett",
|
||||||
"confirmations.delete.message": "Er du sikker på at du vil sletta denne statusen?",
|
"confirmations.delete.message": "Er du sikker på at du vil sletta denne statusen?",
|
||||||
|
"confirmations.delete.title": "Slett innlegget?",
|
||||||
"confirmations.delete_list.confirm": "Slett",
|
"confirmations.delete_list.confirm": "Slett",
|
||||||
"confirmations.delete_list.message": "Er du sikker på at du vil sletta denne lista for alltid?",
|
"confirmations.delete_list.message": "Er du sikker på at du vil sletta denne lista for alltid?",
|
||||||
|
"confirmations.delete_list.title": "Slett lista?",
|
||||||
"confirmations.discard_edit_media.confirm": "Forkast",
|
"confirmations.discard_edit_media.confirm": "Forkast",
|
||||||
"confirmations.discard_edit_media.message": "Du har ulagra endringar i mediaskildringa eller førehandsvisinga. Vil du forkasta dei likevel?",
|
"confirmations.discard_edit_media.message": "Du har ulagra endringar i mediaskildringa eller førehandsvisinga. Vil du forkasta dei likevel?",
|
||||||
"confirmations.edit.confirm": "Rediger",
|
"confirmations.edit.confirm": "Rediger",
|
||||||
"confirmations.edit.message": "Å redigera no vil overskriva den meldinga du er i ferd med å skriva. Er du sikker på at du vil halda fram?",
|
"confirmations.edit.message": "Å redigera no vil overskriva den meldinga du er i ferd med å skriva. Er du sikker på at du vil halda fram?",
|
||||||
|
"confirmations.edit.title": "Overskriv innlegget?",
|
||||||
"confirmations.logout.confirm": "Logg ut",
|
"confirmations.logout.confirm": "Logg ut",
|
||||||
"confirmations.logout.message": "Er du sikker på at du vil logga ut?",
|
"confirmations.logout.message": "Er du sikker på at du vil logga ut?",
|
||||||
|
"confirmations.logout.title": "Logg ut?",
|
||||||
"confirmations.mute.confirm": "Demp",
|
"confirmations.mute.confirm": "Demp",
|
||||||
"confirmations.redraft.confirm": "Slett & skriv på nytt",
|
"confirmations.redraft.confirm": "Slett & skriv på nytt",
|
||||||
"confirmations.redraft.message": "Er du sikker på at du vil sletta denne statusen og skriva han på nytt? Då misser du favorittar og framhevingar, og svar til det opprinnelege innlegget vert foreldrelause.",
|
"confirmations.redraft.message": "Er du sikker på at du vil sletta denne statusen og skriva han på nytt? Då misser du favorittar og framhevingar, og svar til det opprinnelege innlegget vert foreldrelause.",
|
||||||
|
"confirmations.redraft.title": "Slett og skriv på nytt?",
|
||||||
"confirmations.reply.confirm": "Svar",
|
"confirmations.reply.confirm": "Svar",
|
||||||
"confirmations.reply.message": "Å svara no vil overskriva den meldinga du er i ferd med å skriva. Er du sikker på at du vil halda fram?",
|
"confirmations.reply.message": "Å svara no vil overskriva den meldinga du er i ferd med å skriva. Er du sikker på at du vil halda fram?",
|
||||||
|
"confirmations.reply.title": "Overskriv innlegget?",
|
||||||
"confirmations.unfollow.confirm": "Slutt å fylgja",
|
"confirmations.unfollow.confirm": "Slutt å fylgja",
|
||||||
"confirmations.unfollow.message": "Er du sikker på at du vil slutta å fylgja {name}?",
|
"confirmations.unfollow.message": "Er du sikker på at du vil slutta å fylgja {name}?",
|
||||||
|
"confirmations.unfollow.title": "Slutt å fylgja brukaren?",
|
||||||
"conversation.delete": "Slett samtale",
|
"conversation.delete": "Slett samtale",
|
||||||
"conversation.mark_as_read": "Marker som lesen",
|
"conversation.mark_as_read": "Marker som lesen",
|
||||||
"conversation.open": "Sjå samtale",
|
"conversation.open": "Sjå samtale",
|
||||||
|
@ -349,6 +356,15 @@
|
||||||
"home.pending_critical_update.link": "Sjå oppdateringar",
|
"home.pending_critical_update.link": "Sjå oppdateringar",
|
||||||
"home.pending_critical_update.title": "Kritisk sikkerheitsoppdatering er tilgjengeleg!",
|
"home.pending_critical_update.title": "Kritisk sikkerheitsoppdatering er tilgjengeleg!",
|
||||||
"home.show_announcements": "Vis kunngjeringar",
|
"home.show_announcements": "Vis kunngjeringar",
|
||||||
|
"ignore_notifications_modal.disclaimer": "Mastodon kan ikkje informera brukarane at du overser varsla deira. Å oversjå varsel vil ikkje hindra at meldingane blir sende.",
|
||||||
|
"ignore_notifications_modal.filter_instead": "Filtrer i staden",
|
||||||
|
"ignore_notifications_modal.filter_to_avoid_confusion": "Å filtrera hjelper til å unngå mogleg forvirring",
|
||||||
|
"ignore_notifications_modal.ignore": "Oversjå varsel",
|
||||||
|
"ignore_notifications_modal.limited_accounts_title": "Oversjå varsel frå modererte kontoar?",
|
||||||
|
"ignore_notifications_modal.new_accounts_title": "Oversjå varsel frå nye kontoar?",
|
||||||
|
"ignore_notifications_modal.not_followers_title": "Oversjå varsel frå folk som ikkje fylgjer deg?",
|
||||||
|
"ignore_notifications_modal.not_following_title": "Oversjå varsel frå folk du ikkje fylgjer?",
|
||||||
|
"ignore_notifications_modal.private_mentions_title": "Oversjå varsel frå masseutsende private omtaler?",
|
||||||
"interaction_modal.description.favourite": "Med ein konto på Mastodon kan du favorittmerka dette innlegget for å visa forfattaren at du set pris på det, og for å lagra det til seinare.",
|
"interaction_modal.description.favourite": "Med ein konto på Mastodon kan du favorittmerka dette innlegget for å visa forfattaren at du set pris på det, og for å lagra det til seinare.",
|
||||||
"interaction_modal.description.follow": "Med ein konto på Mastodon kan du fylgja {name} for å sjå innlegga deira i din heimestraum.",
|
"interaction_modal.description.follow": "Med ein konto på Mastodon kan du fylgja {name} for å sjå innlegga deira i din heimestraum.",
|
||||||
"interaction_modal.description.reblog": "Med ein konto på Mastodon kan du framheva dette innlegget for å dela det med dine eigne fylgjarar.",
|
"interaction_modal.description.reblog": "Med ein konto på Mastodon kan du framheva dette innlegget for å dela det med dine eigne fylgjarar.",
|
||||||
|
@ -438,6 +454,8 @@
|
||||||
"mute_modal.title": "Demp brukaren?",
|
"mute_modal.title": "Demp brukaren?",
|
||||||
"mute_modal.you_wont_see_mentions": "Du vil ikkje sjå innlegg som nemner dei.",
|
"mute_modal.you_wont_see_mentions": "Du vil ikkje sjå innlegg som nemner dei.",
|
||||||
"mute_modal.you_wont_see_posts": "Dei kan framleis sjå innlegga dine, men du vil ikkje sjå deira.",
|
"mute_modal.you_wont_see_posts": "Dei kan framleis sjå innlegga dine, men du vil ikkje sjå deira.",
|
||||||
|
"name_and_others": "{name} og {count, plural, one {# annan} other {# andre}}",
|
||||||
|
"name_and_others_with_link": "{name} og <a>{count, plural, one {# annan} other {# andre}}</a>",
|
||||||
"navigation_bar.about": "Om",
|
"navigation_bar.about": "Om",
|
||||||
"navigation_bar.advanced_interface": "Opne i avansert nettgrensesnitt",
|
"navigation_bar.advanced_interface": "Opne i avansert nettgrensesnitt",
|
||||||
"navigation_bar.blocks": "Blokkerte brukarar",
|
"navigation_bar.blocks": "Blokkerte brukarar",
|
||||||
|
@ -465,11 +483,19 @@
|
||||||
"navigation_bar.security": "Tryggleik",
|
"navigation_bar.security": "Tryggleik",
|
||||||
"not_signed_in_indicator.not_signed_in": "Du må logga inn for å få tilgang til denne ressursen.",
|
"not_signed_in_indicator.not_signed_in": "Du må logga inn for å få tilgang til denne ressursen.",
|
||||||
"notification.admin.report": "{name} rapporterte {target}",
|
"notification.admin.report": "{name} rapporterte {target}",
|
||||||
|
"notification.admin.report_account": "{name} rapporterte {count, plural, one {eitt innlegg} other {# innlegg}} frå {target} for {category}",
|
||||||
|
"notification.admin.report_account_other": "{name} rapporterte {count, plural, one {eitt innlegg} other {# innlegg}} frå {target}",
|
||||||
|
"notification.admin.report_statuses": "{name} rapporterte {target} for {category}",
|
||||||
|
"notification.admin.report_statuses_other": "{name} rapporterte {target}",
|
||||||
"notification.admin.sign_up": "{name} er registrert",
|
"notification.admin.sign_up": "{name} er registrert",
|
||||||
"notification.favourite": "{name} markerte innlegget ditt som favoritt",
|
"notification.favourite": "{name} markerte innlegget ditt som favoritt",
|
||||||
"notification.follow": "{name} fylgde deg",
|
"notification.follow": "{name} fylgde deg",
|
||||||
"notification.follow_request": "{name} har bedt om å fylgja deg",
|
"notification.follow_request": "{name} har bedt om å fylgja deg",
|
||||||
"notification.mention": "{name} nemnde deg",
|
"notification.label.mention": "Omtale",
|
||||||
|
"notification.label.private_mention": "Privat omtale",
|
||||||
|
"notification.label.private_reply": "Privat svar",
|
||||||
|
"notification.label.reply": "Svar",
|
||||||
|
"notification.mention": "Omtale",
|
||||||
"notification.moderation-warning.learn_more": "Lær meir",
|
"notification.moderation-warning.learn_more": "Lær meir",
|
||||||
"notification.moderation_warning": "Du har mottatt ei moderasjonsåtvaring",
|
"notification.moderation_warning": "Du har mottatt ei moderasjonsåtvaring",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Nokre av innlegga dine har blitt fjerna.",
|
"notification.moderation_warning.action_delete_statuses": "Nokre av innlegga dine har blitt fjerna.",
|
||||||
|
@ -480,6 +506,7 @@
|
||||||
"notification.moderation_warning.action_silence": "Kontoen din har blitt avgrensa.",
|
"notification.moderation_warning.action_silence": "Kontoen din har blitt avgrensa.",
|
||||||
"notification.moderation_warning.action_suspend": "Kontoen din har blitt suspendert.",
|
"notification.moderation_warning.action_suspend": "Kontoen din har blitt suspendert.",
|
||||||
"notification.own_poll": "Rundspørjinga di er ferdig",
|
"notification.own_poll": "Rundspørjinga di er ferdig",
|
||||||
|
"notification.poll": "Ei rundspørjing du røysta i er ferdig",
|
||||||
"notification.reblog": "{name} framheva innlegget ditt",
|
"notification.reblog": "{name} framheva innlegget ditt",
|
||||||
"notification.relationships_severance_event": "Tapte samband med {name}",
|
"notification.relationships_severance_event": "Tapte samband med {name}",
|
||||||
"notification.relationships_severance_event.account_suspension": "Ein administrator på {from} har utvist {target}, som tyder at du ikkje lenger får oppdateringar frå dei eller kan samhandla med dei.",
|
"notification.relationships_severance_event.account_suspension": "Ein administrator på {from} har utvist {target}, som tyder at du ikkje lenger får oppdateringar frå dei eller kan samhandla med dei.",
|
||||||
|
@ -489,20 +516,40 @@
|
||||||
"notification.status": "{name} la nettopp ut",
|
"notification.status": "{name} la nettopp ut",
|
||||||
"notification.update": "{name} redigerte eit innlegg",
|
"notification.update": "{name} redigerte eit innlegg",
|
||||||
"notification_requests.accept": "Godkjenn",
|
"notification_requests.accept": "Godkjenn",
|
||||||
|
"notification_requests.accept_all": "Godta alle",
|
||||||
|
"notification_requests.accept_multiple": "{count, plural, one {Godta # førespurnad} other {Godta # førespurnader}}",
|
||||||
|
"notification_requests.confirm_accept_all.button": "Godta alle",
|
||||||
|
"notification_requests.confirm_accept_all.message": "Du er i ferd med å godta {count, plural, one {ein førespurnad om å fylgja deg} other {# førespurnader om å fylgja deg}}. Er du sikker på at du vil halda fram?",
|
||||||
|
"notification_requests.confirm_accept_all.title": "Godta førespurnad om varsel?",
|
||||||
|
"notification_requests.confirm_dismiss_all.button": "Avvis alle",
|
||||||
|
"notification_requests.confirm_dismiss_all.message": "Du er i ferd med å avvisa {count, plural, one {ein førespurnad om varsel} other {# førespurnader om varsel}}. Det blir ikkje lett å få tilgang til {count, plural, one {han} other {dei}} att. Er du sikker på at du vil halda fram?",
|
||||||
|
"notification_requests.confirm_dismiss_all.title": "Avvis førespurnader om varsel?",
|
||||||
"notification_requests.dismiss": "Avvis",
|
"notification_requests.dismiss": "Avvis",
|
||||||
|
"notification_requests.dismiss_all": "Avvis alle",
|
||||||
|
"notification_requests.dismiss_multiple": "{count, plural, one {Avvis # førespurnad} other {Avvis # førespurnader}}",
|
||||||
|
"notification_requests.enter_selection_mode": "Vel",
|
||||||
|
"notification_requests.exit_selection_mode": "Avbryt",
|
||||||
|
"notification_requests.explainer_for_limited_account": "Varsla frå denne kontoen er filtrerte ut fordi ein moderator har avgrensa kontoen.",
|
||||||
|
"notification_requests.explainer_for_limited_remote_account": "Varla frå denne kontoen er filtrerte ut fordi ein moderator har avgrensa kontoen eller tenaren.",
|
||||||
|
"notification_requests.maximize": "Maksimer",
|
||||||
|
"notification_requests.minimize_banner": "Minimer banneret for filtrerte varsel",
|
||||||
"notification_requests.notifications_from": "Varslingar frå {name}",
|
"notification_requests.notifications_from": "Varslingar frå {name}",
|
||||||
"notification_requests.title": "Filtrerte varslingar",
|
"notification_requests.title": "Filtrerte varslingar",
|
||||||
|
"notification_requests.view": "Sjå varsel",
|
||||||
"notifications.clear": "Tøm varsel",
|
"notifications.clear": "Tøm varsel",
|
||||||
"notifications.clear_confirmation": "Er du sikker på at du vil fjerna alle varsla dine for alltid?",
|
"notifications.clear_confirmation": "Er du sikker på at du vil fjerna alle varsla dine for alltid?",
|
||||||
|
"notifications.clear_title": "Tøm varsel?",
|
||||||
"notifications.column_settings.admin.report": "Nye rapportar:",
|
"notifications.column_settings.admin.report": "Nye rapportar:",
|
||||||
"notifications.column_settings.admin.sign_up": "Nyleg registrerte:",
|
"notifications.column_settings.admin.sign_up": "Nyleg registrerte:",
|
||||||
"notifications.column_settings.alert": "Skrivebordsvarsel",
|
"notifications.column_settings.alert": "Skrivebordsvarsel",
|
||||||
|
"notifications.column_settings.beta.category": "Eksperimentelle funksjonar",
|
||||||
|
"notifications.column_settings.beta.grouping": "Grupper varslingar",
|
||||||
"notifications.column_settings.favourite": "Favorittar:",
|
"notifications.column_settings.favourite": "Favorittar:",
|
||||||
"notifications.column_settings.filter_bar.advanced": "Vis alle kategoriar",
|
"notifications.column_settings.filter_bar.advanced": "Vis alle kategoriar",
|
||||||
"notifications.column_settings.filter_bar.category": "Snøggfilterline",
|
"notifications.column_settings.filter_bar.category": "Snøggfilterline",
|
||||||
"notifications.column_settings.follow": "Nye fylgjarar:",
|
"notifications.column_settings.follow": "Nye fylgjarar:",
|
||||||
"notifications.column_settings.follow_request": "Ny fylgjarførespurnader:",
|
"notifications.column_settings.follow_request": "Ny fylgjarførespurnader:",
|
||||||
"notifications.column_settings.mention": "Omtalar:",
|
"notifications.column_settings.mention": "Omtaler:",
|
||||||
"notifications.column_settings.poll": "Røysteresultat:",
|
"notifications.column_settings.poll": "Røysteresultat:",
|
||||||
"notifications.column_settings.push": "Pushvarsel",
|
"notifications.column_settings.push": "Pushvarsel",
|
||||||
"notifications.column_settings.reblog": "Framhevingar:",
|
"notifications.column_settings.reblog": "Framhevingar:",
|
||||||
|
@ -525,15 +572,23 @@
|
||||||
"notifications.permission_denied": "Skrivebordsvarsel er ikkje tilgjengelege på grunn av at nettlesaren tidlegare ikkje har fått naudsynte rettar til å vise dei",
|
"notifications.permission_denied": "Skrivebordsvarsel er ikkje tilgjengelege på grunn av at nettlesaren tidlegare ikkje har fått naudsynte rettar til å vise dei",
|
||||||
"notifications.permission_denied_alert": "Sidan nettlesaren tidlegare har blitt nekta naudsynte rettar, kan ikkje skrivebordsvarsel aktiverast",
|
"notifications.permission_denied_alert": "Sidan nettlesaren tidlegare har blitt nekta naudsynte rettar, kan ikkje skrivebordsvarsel aktiverast",
|
||||||
"notifications.permission_required": "Skrivebordsvarsel er utilgjengelege fordi naudsynte rettar ikkje er gitt.",
|
"notifications.permission_required": "Skrivebordsvarsel er utilgjengelege fordi naudsynte rettar ikkje er gitt.",
|
||||||
|
"notifications.policy.accept": "Godta",
|
||||||
|
"notifications.policy.accept_hint": "Vis i varsla",
|
||||||
|
"notifications.policy.drop": "Oversjå",
|
||||||
|
"notifications.policy.drop_hint": "Send ut i endeløysa så det aldri kjem att",
|
||||||
|
"notifications.policy.filter": "Filtrer",
|
||||||
|
"notifications.policy.filter_hint": "Send til innboksen for filtrerte varsel",
|
||||||
|
"notifications.policy.filter_limited_accounts_hint": "Avgrensa av moderatorar på tenaren",
|
||||||
|
"notifications.policy.filter_limited_accounts_title": "Modererte kontoar",
|
||||||
"notifications.policy.filter_new_accounts.hint": "Skrive siste {days, plural, one {dag} other {# dagar}}",
|
"notifications.policy.filter_new_accounts.hint": "Skrive siste {days, plural, one {dag} other {# dagar}}",
|
||||||
"notifications.policy.filter_new_accounts_title": "Nye brukarkontoar",
|
"notifications.policy.filter_new_accounts_title": "Nye brukarkontoar",
|
||||||
"notifications.policy.filter_not_followers_hint": "Inkludert folk som har fylgt deg mindre enn {days, plural, one {ein dag} other {# dagar}}",
|
"notifications.policy.filter_not_followers_hint": "Inkludert folk som har fylgt deg mindre enn {days, plural, one {ein dag} other {# dagar}}",
|
||||||
"notifications.policy.filter_not_followers_title": "Folk som ikkje fylgjer deg",
|
"notifications.policy.filter_not_followers_title": "Folk som ikkje fylgjer deg",
|
||||||
"notifications.policy.filter_not_following_hint": "Til du godkjenner dei manuelt",
|
"notifications.policy.filter_not_following_hint": "Til du godkjenner dei manuelt",
|
||||||
"notifications.policy.filter_not_following_title": "Folk du ikkje fylgjer",
|
"notifications.policy.filter_not_following_title": "Folk du ikkje fylgjer",
|
||||||
"notifications.policy.filter_private_mentions_hint": "Filtrert viss det ikkje er eit svar på dine eigne nemningar eller viss du fylgjer avsendaren",
|
"notifications.policy.filter_private_mentions_hint": "Filtrert viss det ikkje er eit svar på dine eigne omtaler eller viss du fylgjer avsendaren",
|
||||||
"notifications.policy.filter_private_mentions_title": "Masseutsende private nemningar",
|
"notifications.policy.filter_private_mentions_title": "Masseutsende private omtaler",
|
||||||
"notifications.policy.title": "Filtrer ut varslingar frå…",
|
"notifications.policy.title": "Handter varsel frå…",
|
||||||
"notifications_permission_banner.enable": "Skru på skrivebordsvarsel",
|
"notifications_permission_banner.enable": "Skru på skrivebordsvarsel",
|
||||||
"notifications_permission_banner.how_to_control": "Aktiver skrivebordsvarsel for å få varsel når Mastodon ikkje er open. Du kan nøye bestemme kva samhandlingar som skal føre til skrivebordsvarsel gjennom {icon}-knappen ovanfor etter at varsel er aktivert.",
|
"notifications_permission_banner.how_to_control": "Aktiver skrivebordsvarsel for å få varsel når Mastodon ikkje er open. Du kan nøye bestemme kva samhandlingar som skal føre til skrivebordsvarsel gjennom {icon}-knappen ovanfor etter at varsel er aktivert.",
|
||||||
"notifications_permission_banner.title": "Gå aldri glipp av noko",
|
"notifications_permission_banner.title": "Gå aldri glipp av noko",
|
||||||
|
@ -660,9 +715,13 @@
|
||||||
"report.unfollow_explanation": "Du fylgjer denne kontoen. Slutt å fylgje dei for ikkje lenger å sjå innlegga deira i heimestraumen din.",
|
"report.unfollow_explanation": "Du fylgjer denne kontoen. Slutt å fylgje dei for ikkje lenger å sjå innlegga deira i heimestraumen din.",
|
||||||
"report_notification.attached_statuses": "{count, plural, one {{count} innlegg} other {{count} innlegg}} lagt ved",
|
"report_notification.attached_statuses": "{count, plural, one {{count} innlegg} other {{count} innlegg}} lagt ved",
|
||||||
"report_notification.categories.legal": "Juridisk",
|
"report_notification.categories.legal": "Juridisk",
|
||||||
|
"report_notification.categories.legal_sentence": "ulovleg innhald",
|
||||||
"report_notification.categories.other": "Anna",
|
"report_notification.categories.other": "Anna",
|
||||||
|
"report_notification.categories.other_sentence": "anna",
|
||||||
"report_notification.categories.spam": "Søppelpost",
|
"report_notification.categories.spam": "Søppelpost",
|
||||||
|
"report_notification.categories.spam_sentence": "søppel",
|
||||||
"report_notification.categories.violation": "Regelbrot",
|
"report_notification.categories.violation": "Regelbrot",
|
||||||
|
"report_notification.categories.violation_sentence": "regelbrot",
|
||||||
"report_notification.open": "Opne rapport",
|
"report_notification.open": "Opne rapport",
|
||||||
"search.no_recent_searches": "Ingen søk nylig",
|
"search.no_recent_searches": "Ingen søk nylig",
|
||||||
"search.placeholder": "Søk",
|
"search.placeholder": "Søk",
|
||||||
|
@ -770,6 +829,7 @@
|
||||||
"timeline_hint.remote_resource_not_displayed": "{resource} frå andre tenarar blir ikkje vist.",
|
"timeline_hint.remote_resource_not_displayed": "{resource} frå andre tenarar blir ikkje vist.",
|
||||||
"timeline_hint.resources.followers": "Fylgjarar",
|
"timeline_hint.resources.followers": "Fylgjarar",
|
||||||
"timeline_hint.resources.follows": "Fylgjer",
|
"timeline_hint.resources.follows": "Fylgjer",
|
||||||
|
"timeline_hint.resources.replies": "Nokre svar",
|
||||||
"timeline_hint.resources.statuses": "Eldre tut",
|
"timeline_hint.resources.statuses": "Eldre tut",
|
||||||
"trends.counter_by_accounts": "{count, plural, one {{counter} person} other {{counter} folk}} siste {days, plural, one {døgnet} other {{days} dagane}}",
|
"trends.counter_by_accounts": "{count, plural, one {{counter} person} other {{counter} folk}} siste {days, plural, one {døgnet} other {{days} dagane}}",
|
||||||
"trends.trending_now": "Populært no",
|
"trends.trending_now": "Populært no",
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
"about.not_available": "Denne informasjonen er ikke gjort tilgjengelig på denne tjeneren.",
|
"about.not_available": "Denne informasjonen er ikke gjort tilgjengelig på denne tjeneren.",
|
||||||
"about.powered_by": "Desentraliserte sosiale medier drevet av {mastodon}",
|
"about.powered_by": "Desentraliserte sosiale medier drevet av {mastodon}",
|
||||||
"about.rules": "Regler for serveren",
|
"about.rules": "Regler for serveren",
|
||||||
"account.account_note_header": "Notat",
|
|
||||||
"account.add_or_remove_from_list": "Legg til eller fjern fra lister",
|
"account.add_or_remove_from_list": "Legg til eller fjern fra lister",
|
||||||
"account.badges.bot": "Automatisert",
|
"account.badges.bot": "Automatisert",
|
||||||
"account.badges.group": "Gruppe",
|
"account.badges.group": "Gruppe",
|
||||||
|
@ -409,7 +408,6 @@
|
||||||
"notification.favourite": "{name} favorittmarkerte innlegget ditt",
|
"notification.favourite": "{name} favorittmarkerte innlegget ditt",
|
||||||
"notification.follow": "{name} fulgte deg",
|
"notification.follow": "{name} fulgte deg",
|
||||||
"notification.follow_request": "{name} har bedt om å få følge deg",
|
"notification.follow_request": "{name} har bedt om å få følge deg",
|
||||||
"notification.mention": "{name} nevnte deg",
|
|
||||||
"notification.own_poll": "Avstemningen din er ferdig",
|
"notification.own_poll": "Avstemningen din er ferdig",
|
||||||
"notification.reblog": "{name} fremhevet ditt innlegg",
|
"notification.reblog": "{name} fremhevet ditt innlegg",
|
||||||
"notification.status": "{name} la nettopp ut",
|
"notification.status": "{name} la nettopp ut",
|
||||||
|
|
|
@ -8,7 +8,6 @@
|
||||||
"about.not_available": "Aquesta informacion foguèt pas renduda disponibla sus aqueste servidor.",
|
"about.not_available": "Aquesta informacion foguèt pas renduda disponibla sus aqueste servidor.",
|
||||||
"about.powered_by": "Malhum social descentralizat propulsat per {mastodon}",
|
"about.powered_by": "Malhum social descentralizat propulsat per {mastodon}",
|
||||||
"about.rules": "Règlas del servidor",
|
"about.rules": "Règlas del servidor",
|
||||||
"account.account_note_header": "Nòta",
|
|
||||||
"account.add_or_remove_from_list": "Ajustar o tirar de las listas",
|
"account.add_or_remove_from_list": "Ajustar o tirar de las listas",
|
||||||
"account.badges.bot": "Robòt",
|
"account.badges.bot": "Robòt",
|
||||||
"account.badges.group": "Grop",
|
"account.badges.group": "Grop",
|
||||||
|
@ -352,7 +351,6 @@
|
||||||
"notification.favourite": "{name} a mes vòstre estatut en favorit",
|
"notification.favourite": "{name} a mes vòstre estatut en favorit",
|
||||||
"notification.follow": "{name} vos sèc",
|
"notification.follow": "{name} vos sèc",
|
||||||
"notification.follow_request": "{name} a demandat a vos sègre",
|
"notification.follow_request": "{name} a demandat a vos sègre",
|
||||||
"notification.mention": "{name} vos a mencionat",
|
|
||||||
"notification.own_poll": "Vòstre sondatge es acabat",
|
"notification.own_poll": "Vòstre sondatge es acabat",
|
||||||
"notification.reblog": "{name} a partejat vòstre estatut",
|
"notification.reblog": "{name} a partejat vòstre estatut",
|
||||||
"notification.status": "{name} ven de publicar",
|
"notification.status": "{name} ven de publicar",
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
"about.domain_blocks.silenced.title": "ਸੀਮਿਤ",
|
"about.domain_blocks.silenced.title": "ਸੀਮਿਤ",
|
||||||
"about.domain_blocks.suspended.title": "ਮੁਅੱਤਲ ਕੀਤੀ",
|
"about.domain_blocks.suspended.title": "ਮੁਅੱਤਲ ਕੀਤੀ",
|
||||||
"about.rules": "ਸਰਵਰ ਨਿਯਮ",
|
"about.rules": "ਸਰਵਰ ਨਿਯਮ",
|
||||||
"account.account_note_header": "ਨੋਟ",
|
|
||||||
"account.add_or_remove_from_list": "ਸੂਚੀ ਵਿੱਚ ਜੋੜੋ ਜਾਂ ਹਟਾਓ",
|
"account.add_or_remove_from_list": "ਸੂਚੀ ਵਿੱਚ ਜੋੜੋ ਜਾਂ ਹਟਾਓ",
|
||||||
"account.badges.bot": "ਆਟੋਮੇਟ ਕੀਤਾ",
|
"account.badges.bot": "ਆਟੋਮੇਟ ਕੀਤਾ",
|
||||||
"account.badges.group": "ਗਰੁੱਪ",
|
"account.badges.group": "ਗਰੁੱਪ",
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"about.not_available": "Ta informacja nie została udostępniona na tym serwerze.",
|
"about.not_available": "Ta informacja nie została udostępniona na tym serwerze.",
|
||||||
"about.powered_by": "Zdecentralizowane media społecznościowe napędzane przez {mastodon}",
|
"about.powered_by": "Zdecentralizowane media społecznościowe napędzane przez {mastodon}",
|
||||||
"about.rules": "Regulamin serwera",
|
"about.rules": "Regulamin serwera",
|
||||||
"account.account_note_header": "Notatka",
|
"account.account_note_header": "Twoja notatka",
|
||||||
"account.add_or_remove_from_list": "Dodaj lub usuń z list",
|
"account.add_or_remove_from_list": "Dodaj lub usuń z list",
|
||||||
"account.badges.bot": "Bot",
|
"account.badges.bot": "Bot",
|
||||||
"account.badges.group": "Grupa",
|
"account.badges.group": "Grupa",
|
||||||
|
@ -356,6 +356,17 @@
|
||||||
"home.pending_critical_update.link": "Pokaż aktualizacje",
|
"home.pending_critical_update.link": "Pokaż aktualizacje",
|
||||||
"home.pending_critical_update.title": "Dostępna krytyczna aktualizacja bezpieczeństwa!",
|
"home.pending_critical_update.title": "Dostępna krytyczna aktualizacja bezpieczeństwa!",
|
||||||
"home.show_announcements": "Pokaż ogłoszenia",
|
"home.show_announcements": "Pokaż ogłoszenia",
|
||||||
|
"ignore_notifications_modal.disclaimer": "Mastodon nie może poinformować innych użytkowników że ignorujesz ich powiadomienia. Ignorowanie powiadomień nie zapobieże wysyłaniu wpisów per se. ",
|
||||||
|
"ignore_notifications_modal.filter_instead": "Filtruj zamiast tego",
|
||||||
|
"ignore_notifications_modal.filter_to_act_users": "Dalej będziesz mieć możliwość przyjmować, odrzucać, i raportować użytkowników",
|
||||||
|
"ignore_notifications_modal.filter_to_avoid_confusion": "Filtrowanie może ograniczyć pomyłki",
|
||||||
|
"ignore_notifications_modal.filter_to_review_separately": "Możesz osobno przejrzeć powiadomienia odfiltrowane",
|
||||||
|
"ignore_notifications_modal.ignore": "Ignoruj powiadomienia",
|
||||||
|
"ignore_notifications_modal.limited_accounts_title": "Ignoruj powiadomienia od kont moderowanych?",
|
||||||
|
"ignore_notifications_modal.new_accounts_title": "Ignoruj powiadomienia od nowych kont?",
|
||||||
|
"ignore_notifications_modal.not_followers_title": "Ignoruj powiadomienia od użytkowników którzy cię nie obserwują?",
|
||||||
|
"ignore_notifications_modal.not_following_title": "Ignoruj powiadomienia od użytkowników których nie obserwujesz?",
|
||||||
|
"ignore_notifications_modal.private_mentions_title": "Ignoruj powiadomienia o nieproszonych wzmiankach prywatnych?",
|
||||||
"interaction_modal.description.favourite": "Mając konto na Mastodonie, możesz dodawać wpisy do ulubionych by dać znać jego autorowi, że podoba Ci się ten wpis i zachować go na później.",
|
"interaction_modal.description.favourite": "Mając konto na Mastodonie, możesz dodawać wpisy do ulubionych by dać znać jego autorowi, że podoba Ci się ten wpis i zachować go na później.",
|
||||||
"interaction_modal.description.follow": "Mając konto na Mastodonie, możesz śledzić {name} by widzieć jego wpisy na swojej głównej osi czasu.",
|
"interaction_modal.description.follow": "Mając konto na Mastodonie, możesz śledzić {name} by widzieć jego wpisy na swojej głównej osi czasu.",
|
||||||
"interaction_modal.description.reblog": "Mając konto na Mastodonie, możesz podbić ten wpis i udostępnić go Twoim obserwującym.",
|
"interaction_modal.description.reblog": "Mając konto na Mastodonie, możesz podbić ten wpis i udostępnić go Twoim obserwującym.",
|
||||||
|
@ -482,7 +493,11 @@
|
||||||
"notification.favourite": "{name} dodaje Twój wpis do ulubionych",
|
"notification.favourite": "{name} dodaje Twój wpis do ulubionych",
|
||||||
"notification.follow": "{name} obserwuje Cię",
|
"notification.follow": "{name} obserwuje Cię",
|
||||||
"notification.follow_request": "{name} chce cię zaobserwować",
|
"notification.follow_request": "{name} chce cię zaobserwować",
|
||||||
"notification.mention": "Wspomniało o Tobie przez {name}",
|
"notification.label.mention": "Wzmianka",
|
||||||
|
"notification.label.private_mention": "Prywatna wzmianka",
|
||||||
|
"notification.label.private_reply": "Odpowiedź prywatna",
|
||||||
|
"notification.label.reply": "Odpowiedź",
|
||||||
|
"notification.mention": "Wzmianka",
|
||||||
"notification.moderation-warning.learn_more": "Dowiedz się więcej",
|
"notification.moderation-warning.learn_more": "Dowiedz się więcej",
|
||||||
"notification.moderation_warning": "Otrzymałeś/-łaś ostrzeżenie moderacyjne",
|
"notification.moderation_warning": "Otrzymałeś/-łaś ostrzeżenie moderacyjne",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Niektóre twoje wpisy zostały usunięte.",
|
"notification.moderation_warning.action_delete_statuses": "Niektóre twoje wpisy zostały usunięte.",
|
||||||
|
@ -494,7 +509,6 @@
|
||||||
"notification.moderation_warning.action_suspend": "Twoje konto zostało zawieszone.",
|
"notification.moderation_warning.action_suspend": "Twoje konto zostało zawieszone.",
|
||||||
"notification.own_poll": "Twoje głosowanie zakończyło się",
|
"notification.own_poll": "Twoje głosowanie zakończyło się",
|
||||||
"notification.poll": "Głosowanie, w którym brałeś(-aś) udział, zostało zakończone",
|
"notification.poll": "Głosowanie, w którym brałeś(-aś) udział, zostało zakończone",
|
||||||
"notification.private_mention": "{name} prywatnie o tobie wspomniał(a)",
|
|
||||||
"notification.reblog": "Twój post został podbity przez {name}",
|
"notification.reblog": "Twój post został podbity przez {name}",
|
||||||
"notification.relationships_severance_event": "Utracone związki z {name}",
|
"notification.relationships_severance_event": "Utracone związki z {name}",
|
||||||
"notification.relationships_severance_event.account_suspension": "Administrator z {from} zawiesił {target}, więc nie dostaniesz wieści ani nie wejdziesz w interakcje z użytkownikami z tego serwera.",
|
"notification.relationships_severance_event.account_suspension": "Administrator z {from} zawiesił {target}, więc nie dostaniesz wieści ani nie wejdziesz w interakcje z użytkownikami z tego serwera.",
|
||||||
|
@ -503,11 +517,26 @@
|
||||||
"notification.status": "{name} opublikował(a) nowy wpis",
|
"notification.status": "{name} opublikował(a) nowy wpis",
|
||||||
"notification.update": "{name} edytował(a) post",
|
"notification.update": "{name} edytował(a) post",
|
||||||
"notification_requests.accept": "Akceptuj",
|
"notification_requests.accept": "Akceptuj",
|
||||||
|
"notification_requests.accept_all": "Przyjmij wszystkie",
|
||||||
|
"notification_requests.accept_multiple": "Przyjmij {count, plural, one {# wniosek} few {# wnioski} other {# wniosków}} o powiadomienia",
|
||||||
|
"notification_requests.confirm_accept_all.button": "Przyjmij wszystkie",
|
||||||
|
"notification_requests.confirm_accept_all.message": "Na pewno przyjąć {count, plural, one {# wniosek o powiadomienie} few {# wnioski o powiadomienia} other {# wniosków o powiadomienia}}?",
|
||||||
|
"notification_requests.confirm_accept_all.title": "Przyjąć wnioski o powiadomienia?",
|
||||||
|
"notification_requests.confirm_dismiss_all.button": "Odrzuć wszystkie",
|
||||||
|
"notification_requests.confirm_dismiss_all.message": "Na pewno odrzucić {count, plural, one {# wniosek o powiadomienie} few {# wnioski o powiadomienia} other {# wniosków o powiadomienia}}? Stracisz do {count, plural, one {niego} other {nich}} łatwy dostęp.",
|
||||||
|
"notification_requests.confirm_dismiss_all.title": "Odrzuć żądania powiadomień?",
|
||||||
"notification_requests.dismiss": "Odrzuć",
|
"notification_requests.dismiss": "Odrzuć",
|
||||||
|
"notification_requests.dismiss_all": "Odrzuć wszystkie",
|
||||||
|
"notification_requests.dismiss_multiple": "Odrzuć {count, plural, one {# wniosek} few {# wnioski} other {# wniosków}} o powiadomienia",
|
||||||
|
"notification_requests.enter_selection_mode": "Wybierz",
|
||||||
|
"notification_requests.exit_selection_mode": "Anuluj",
|
||||||
|
"notification_requests.explainer_for_limited_account": "Powiadomienia od tego konta zostały odfiltrowane bo to konto zostało ograniczone przez moderatora.",
|
||||||
|
"notification_requests.explainer_for_limited_remote_account": "Powiadomienia od tego konta zostały odfiltrowane bo to konto, albo serwer na którym się znajduje, zostało ograniczone przez moderatora.",
|
||||||
"notification_requests.maximize": "Zmaksymalizuj",
|
"notification_requests.maximize": "Zmaksymalizuj",
|
||||||
"notification_requests.minimize_banner": "Zminimalizuj baner powiadomień filtrowanych",
|
"notification_requests.minimize_banner": "Zminimalizuj baner powiadomień filtrowanych",
|
||||||
"notification_requests.notifications_from": "Powiadomienia od {name}",
|
"notification_requests.notifications_from": "Powiadomienia od {name}",
|
||||||
"notification_requests.title": "Powiadomienia filtrowane",
|
"notification_requests.title": "Powiadomienia filtrowane",
|
||||||
|
"notification_requests.view": "Wyświetl powiadomienia",
|
||||||
"notifications.clear": "Wyczyść powiadomienia",
|
"notifications.clear": "Wyczyść powiadomienia",
|
||||||
"notifications.clear_confirmation": "Czy na pewno chcesz bezpowrotnie usunąć wszystkie powiadomienia?",
|
"notifications.clear_confirmation": "Czy na pewno chcesz bezpowrotnie usunąć wszystkie powiadomienia?",
|
||||||
"notifications.clear_title": "Wyczyścić powiadomienia?",
|
"notifications.clear_title": "Wyczyścić powiadomienia?",
|
||||||
|
@ -544,6 +573,14 @@
|
||||||
"notifications.permission_denied": "Powiadomienia na pulpicie nie są dostępne, ponieważ wcześniej nie udzielono uprawnień w przeglądarce",
|
"notifications.permission_denied": "Powiadomienia na pulpicie nie są dostępne, ponieważ wcześniej nie udzielono uprawnień w przeglądarce",
|
||||||
"notifications.permission_denied_alert": "Powiadomienia na pulpicie nie mogą zostać włączone, ponieważ wcześniej odmówiono uprawnień",
|
"notifications.permission_denied_alert": "Powiadomienia na pulpicie nie mogą zostać włączone, ponieważ wcześniej odmówiono uprawnień",
|
||||||
"notifications.permission_required": "Powiadomienia na pulpicie nie są dostępne, ponieważ nie przyznano wymaganego uprawnienia.",
|
"notifications.permission_required": "Powiadomienia na pulpicie nie są dostępne, ponieważ nie przyznano wymaganego uprawnienia.",
|
||||||
|
"notifications.policy.accept": "Zaakceptuj",
|
||||||
|
"notifications.policy.accept_hint": "Wyświetlaj w powiadomieniach",
|
||||||
|
"notifications.policy.drop": "Zignoruj",
|
||||||
|
"notifications.policy.drop_hint": "Usuń nieodzyskiwalnie.",
|
||||||
|
"notifications.policy.filter": "Odfiltruj",
|
||||||
|
"notifications.policy.filter_hint": "Wyślij do skrzynki powiadomień odfiltrowanych",
|
||||||
|
"notifications.policy.filter_limited_accounts_hint": "Ograniczonych przez moderatorów serwera",
|
||||||
|
"notifications.policy.filter_limited_accounts_title": "Kont zmoderowanych",
|
||||||
"notifications.policy.filter_new_accounts.hint": "Utworzone w ciągu {days, plural, one {ostatniego dnia} other {ostatnich # dni}}",
|
"notifications.policy.filter_new_accounts.hint": "Utworzone w ciągu {days, plural, one {ostatniego dnia} other {ostatnich # dni}}",
|
||||||
"notifications.policy.filter_new_accounts_title": "Nowe konta",
|
"notifications.policy.filter_new_accounts_title": "Nowe konta",
|
||||||
"notifications.policy.filter_not_followers_hint": "Zawierające osoby które obserwują cię krócej niż {days, plural, one {dzień} other {# dni}}",
|
"notifications.policy.filter_not_followers_hint": "Zawierające osoby które obserwują cię krócej niż {days, plural, one {dzień} other {# dni}}",
|
||||||
|
@ -552,7 +589,7 @@
|
||||||
"notifications.policy.filter_not_following_title": "Ludzie, których nie obserwujesz",
|
"notifications.policy.filter_not_following_title": "Ludzie, których nie obserwujesz",
|
||||||
"notifications.policy.filter_private_mentions_hint": "Odfiltrowane, chyba że są odpowiedzią na twoją własną wzmiankę, lub obserwujesz wysyłającego",
|
"notifications.policy.filter_private_mentions_hint": "Odfiltrowane, chyba że są odpowiedzią na twoją własną wzmiankę, lub obserwujesz wysyłającego",
|
||||||
"notifications.policy.filter_private_mentions_title": "Nieproszone prywatne wzmianki",
|
"notifications.policy.filter_private_mentions_title": "Nieproszone prywatne wzmianki",
|
||||||
"notifications.policy.title": "Odfiltruj powiadomienia od…",
|
"notifications.policy.title": "Zarządzaj powiadomieniami od…",
|
||||||
"notifications_permission_banner.enable": "Włącz powiadomienia na pulpicie",
|
"notifications_permission_banner.enable": "Włącz powiadomienia na pulpicie",
|
||||||
"notifications_permission_banner.how_to_control": "Aby otrzymywać powiadomienia, gdy Mastodon nie jest otwarty, włącz powiadomienia pulpitu. Możesz dokładnie kontrolować, októrych działaniach będziesz powiadomienia na pulpicie za pomocą przycisku {icon} powyżej, jeżeli tylko zostaną włączone.",
|
"notifications_permission_banner.how_to_control": "Aby otrzymywać powiadomienia, gdy Mastodon nie jest otwarty, włącz powiadomienia pulpitu. Możesz dokładnie kontrolować, októrych działaniach będziesz powiadomienia na pulpicie za pomocą przycisku {icon} powyżej, jeżeli tylko zostaną włączone.",
|
||||||
"notifications_permission_banner.title": "Nie przegap niczego",
|
"notifications_permission_banner.title": "Nie przegap niczego",
|
||||||
|
@ -793,6 +830,7 @@
|
||||||
"timeline_hint.remote_resource_not_displayed": "{resource} z innych serwerów nie są wyświetlane.",
|
"timeline_hint.remote_resource_not_displayed": "{resource} z innych serwerów nie są wyświetlane.",
|
||||||
"timeline_hint.resources.followers": "Obserwujący",
|
"timeline_hint.resources.followers": "Obserwujący",
|
||||||
"timeline_hint.resources.follows": "Obserwowani",
|
"timeline_hint.resources.follows": "Obserwowani",
|
||||||
|
"timeline_hint.resources.replies": "Niektóre odpowiedzi",
|
||||||
"timeline_hint.resources.statuses": "Starsze wpisy",
|
"timeline_hint.resources.statuses": "Starsze wpisy",
|
||||||
"trends.counter_by_accounts": "{count, plural, one {jedna osoba} few {{count} osoby} many {{count} osób} other {{counter} ludzie}} w ciągu {days, plural, one {ostatniego dnia} other {ostatnich {days} dni}}",
|
"trends.counter_by_accounts": "{count, plural, one {jedna osoba} few {{count} osoby} many {{count} osób} other {{counter} ludzie}} w ciągu {days, plural, one {ostatniego dnia} other {ostatnich {days} dni}}",
|
||||||
"trends.trending_now": "Popularne teraz",
|
"trends.trending_now": "Popularne teraz",
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
"about.not_available": "Esta informação não foi disponibilizada neste servidor.",
|
"about.not_available": "Esta informação não foi disponibilizada neste servidor.",
|
||||||
"about.powered_by": "Redes sociais descentralizadas alimentadas por {mastodon}",
|
"about.powered_by": "Redes sociais descentralizadas alimentadas por {mastodon}",
|
||||||
"about.rules": "Regras do servidor",
|
"about.rules": "Regras do servidor",
|
||||||
"account.account_note_header": "Nota",
|
|
||||||
"account.add_or_remove_from_list": "Adicionar ou remover de listas",
|
"account.add_or_remove_from_list": "Adicionar ou remover de listas",
|
||||||
"account.badges.bot": "Robô",
|
"account.badges.bot": "Robô",
|
||||||
"account.badges.group": "Grupo",
|
"account.badges.group": "Grupo",
|
||||||
|
@ -35,7 +34,9 @@
|
||||||
"account.follow_back": "Seguir de volta",
|
"account.follow_back": "Seguir de volta",
|
||||||
"account.followers": "Seguidores",
|
"account.followers": "Seguidores",
|
||||||
"account.followers.empty": "Nada aqui.",
|
"account.followers.empty": "Nada aqui.",
|
||||||
|
"account.followers_counter": "{count, plural, one {{counter} seguidor} other {{counter} seguidores}}",
|
||||||
"account.following": "Seguindo",
|
"account.following": "Seguindo",
|
||||||
|
"account.following_counter": "{count, plural, one {{counter} seguindo} other {{counter} seguindo}}",
|
||||||
"account.follows.empty": "Nada aqui.",
|
"account.follows.empty": "Nada aqui.",
|
||||||
"account.go_to_profile": "Ir ao perfil",
|
"account.go_to_profile": "Ir ao perfil",
|
||||||
"account.hide_reblogs": "Ocultar boosts de @{name}",
|
"account.hide_reblogs": "Ocultar boosts de @{name}",
|
||||||
|
@ -352,6 +353,10 @@
|
||||||
"home.pending_critical_update.link": "Ver atualizações",
|
"home.pending_critical_update.link": "Ver atualizações",
|
||||||
"home.pending_critical_update.title": "Atualização de segurança crítica disponível!",
|
"home.pending_critical_update.title": "Atualização de segurança crítica disponível!",
|
||||||
"home.show_announcements": "Mostrar comunicados",
|
"home.show_announcements": "Mostrar comunicados",
|
||||||
|
"ignore_notifications_modal.new_accounts_title": "Ignorar notificações de novas contas?",
|
||||||
|
"ignore_notifications_modal.not_followers_title": "Ignorar notificações de pessoas que não seguem você?",
|
||||||
|
"ignore_notifications_modal.not_following_title": "Ignorar notificações de pessoas que você não segue?",
|
||||||
|
"ignore_notifications_modal.private_mentions_title": "Ignorar notificações de menções privadas não solicitadas?",
|
||||||
"interaction_modal.description.favourite": "Com uma conta no Mastodon, você pode marcar esta publicação como favorita para que o autor saiba que você gostou e salvá-la para mais tarde.",
|
"interaction_modal.description.favourite": "Com uma conta no Mastodon, você pode marcar esta publicação como favorita para que o autor saiba que você gostou e salvá-la para mais tarde.",
|
||||||
"interaction_modal.description.follow": "Com uma conta no Mastodon, você pode seguir {name} para receber publicações na sua página inicial.",
|
"interaction_modal.description.follow": "Com uma conta no Mastodon, você pode seguir {name} para receber publicações na sua página inicial.",
|
||||||
"interaction_modal.description.reblog": "Com uma conta no Mastodon, você pode impulsionar esta publicação para compartilhá-lo com seus próprios seguidores.",
|
"interaction_modal.description.reblog": "Com uma conta no Mastodon, você pode impulsionar esta publicação para compartilhá-lo com seus próprios seguidores.",
|
||||||
|
@ -441,6 +446,8 @@
|
||||||
"mute_modal.title": "Silenciar usuário?",
|
"mute_modal.title": "Silenciar usuário?",
|
||||||
"mute_modal.you_wont_see_mentions": "Você não verá publicações que os mencionem.",
|
"mute_modal.you_wont_see_mentions": "Você não verá publicações que os mencionem.",
|
||||||
"mute_modal.you_wont_see_posts": "Eles ainda poderão ver suas publicações, mas você não verá as deles.",
|
"mute_modal.you_wont_see_posts": "Eles ainda poderão ver suas publicações, mas você não verá as deles.",
|
||||||
|
"name_and_others": "{name} e {count, plural, one {# outro} other {# outros}}",
|
||||||
|
"name_and_others_with_link": "{name} e <a>{count, plural, one {# outro} other {# outros}}</a>",
|
||||||
"navigation_bar.about": "Sobre",
|
"navigation_bar.about": "Sobre",
|
||||||
"navigation_bar.advanced_interface": "Ativar na interface web avançada",
|
"navigation_bar.advanced_interface": "Ativar na interface web avançada",
|
||||||
"navigation_bar.blocks": "Usuários bloqueados",
|
"navigation_bar.blocks": "Usuários bloqueados",
|
||||||
|
@ -472,7 +479,6 @@
|
||||||
"notification.favourite": "{name} favoritou sua publicação",
|
"notification.favourite": "{name} favoritou sua publicação",
|
||||||
"notification.follow": "{name} te seguiu",
|
"notification.follow": "{name} te seguiu",
|
||||||
"notification.follow_request": "{name} quer te seguir",
|
"notification.follow_request": "{name} quer te seguir",
|
||||||
"notification.mention": "{name} te mencionou",
|
|
||||||
"notification.moderation-warning.learn_more": "Aprender mais",
|
"notification.moderation-warning.learn_more": "Aprender mais",
|
||||||
"notification.moderation_warning": "Você recebeu um aviso de moderação",
|
"notification.moderation_warning": "Você recebeu um aviso de moderação",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Algumas das suas publicações foram removidas.",
|
"notification.moderation_warning.action_delete_statuses": "Algumas das suas publicações foram removidas.",
|
||||||
|
@ -492,7 +498,11 @@
|
||||||
"notification.status": "{name} acabou de tootar",
|
"notification.status": "{name} acabou de tootar",
|
||||||
"notification.update": "{name} editou uma publicação",
|
"notification.update": "{name} editou uma publicação",
|
||||||
"notification_requests.accept": "Aceitar",
|
"notification_requests.accept": "Aceitar",
|
||||||
|
"notification_requests.accept_all": "Aceitar tudo",
|
||||||
|
"notification_requests.confirm_accept_all.button": "Aceitar tudo",
|
||||||
"notification_requests.dismiss": "Rejeitar",
|
"notification_requests.dismiss": "Rejeitar",
|
||||||
|
"notification_requests.exit_selection_mode": "Cancelar",
|
||||||
|
"notification_requests.maximize": "Maximizar",
|
||||||
"notification_requests.notifications_from": "Notificações de {name}",
|
"notification_requests.notifications_from": "Notificações de {name}",
|
||||||
"notification_requests.title": "Notificações filtradas",
|
"notification_requests.title": "Notificações filtradas",
|
||||||
"notifications.clear": "Limpar notificações",
|
"notifications.clear": "Limpar notificações",
|
||||||
|
@ -529,6 +539,9 @@
|
||||||
"notifications.permission_denied": "Navegador não tem permissão para ativar notificações no computador.",
|
"notifications.permission_denied": "Navegador não tem permissão para ativar notificações no computador.",
|
||||||
"notifications.permission_denied_alert": "Verifique a permissão do navegador para ativar notificações no computador.",
|
"notifications.permission_denied_alert": "Verifique a permissão do navegador para ativar notificações no computador.",
|
||||||
"notifications.permission_required": "Ativar notificações no computador exige permissão do navegador.",
|
"notifications.permission_required": "Ativar notificações no computador exige permissão do navegador.",
|
||||||
|
"notifications.policy.accept": "Aceitar",
|
||||||
|
"notifications.policy.accept_hint": "Mostrar nas notificações",
|
||||||
|
"notifications.policy.drop": "Ignorar",
|
||||||
"notifications.policy.filter_new_accounts.hint": "Created within the past {days, plural, one {one day} other {# days}}",
|
"notifications.policy.filter_new_accounts.hint": "Created within the past {days, plural, one {one day} other {# days}}",
|
||||||
"notifications.policy.filter_new_accounts_title": "Novas contas",
|
"notifications.policy.filter_new_accounts_title": "Novas contas",
|
||||||
"notifications.policy.filter_not_followers_hint": "Including people who have been following you fewer than {days, plural, one {one day} other {# days}}",
|
"notifications.policy.filter_not_followers_hint": "Including people who have been following you fewer than {days, plural, one {one day} other {# days}}",
|
||||||
|
@ -537,7 +550,6 @@
|
||||||
"notifications.policy.filter_not_following_title": "Pessoas que você não segue",
|
"notifications.policy.filter_not_following_title": "Pessoas que você não segue",
|
||||||
"notifications.policy.filter_private_mentions_hint": "Filtrado, a menos que respondido em sua própria menção ou se você segue o remetente",
|
"notifications.policy.filter_private_mentions_hint": "Filtrado, a menos que respondido em sua própria menção ou se você segue o remetente",
|
||||||
"notifications.policy.filter_private_mentions_title": "Menções privadas não solicitadas",
|
"notifications.policy.filter_private_mentions_title": "Menções privadas não solicitadas",
|
||||||
"notifications.policy.title": "Filtrar notificações de…",
|
|
||||||
"notifications_permission_banner.enable": "Ativar notificações no computador",
|
"notifications_permission_banner.enable": "Ativar notificações no computador",
|
||||||
"notifications_permission_banner.how_to_control": "Para receber notificações quando o Mastodon não estiver aberto, ative as notificações no computador. Você pode controlar precisamente quais tipos de interações geram notificações no computador através do botão {icon}.",
|
"notifications_permission_banner.how_to_control": "Para receber notificações quando o Mastodon não estiver aberto, ative as notificações no computador. Você pode controlar precisamente quais tipos de interações geram notificações no computador através do botão {icon}.",
|
||||||
"notifications_permission_banner.title": "Nunca perca nada",
|
"notifications_permission_banner.title": "Nunca perca nada",
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue