mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-26 15:31:52 +00:00
Compare commits
9 Commits
6870ca384d
...
a568953b8a
Author | SHA1 | Date | |
---|---|---|---|
|
a568953b8a | ||
|
6d62581da1 | ||
|
9a7130d6da | ||
|
194a8cbb2a | ||
|
3896a5bd37 | ||
|
6bb83d25b0 | ||
|
1aa3490ad6 | ||
|
a931ccdc4d | ||
|
0248bca3c7 |
2
.github/workflows/bundler-audit.yml
vendored
2
.github/workflows/bundler-audit.yml
vendored
|
@ -36,4 +36,4 @@ jobs:
|
||||||
bundler-cache: true
|
bundler-cache: true
|
||||||
|
|
||||||
- name: Run bundler-audit
|
- name: Run bundler-audit
|
||||||
run: bundle exec bundler-audit check --update
|
run: bin/bundler-audit check --update
|
||||||
|
|
10
.github/workflows/check-i18n.yml
vendored
10
.github/workflows/check-i18n.yml
vendored
|
@ -35,18 +35,18 @@ jobs:
|
||||||
git diff --exit-code
|
git diff --exit-code
|
||||||
|
|
||||||
- name: Check locale file normalization
|
- name: Check locale file normalization
|
||||||
run: bundle exec i18n-tasks check-normalized
|
run: bin/i18n-tasks check-normalized
|
||||||
|
|
||||||
- name: Check for unused strings
|
- name: Check for unused strings
|
||||||
run: bundle exec i18n-tasks unused
|
run: bin/i18n-tasks unused
|
||||||
|
|
||||||
- name: Check for missing strings in English YML
|
- name: Check for missing strings in English YML
|
||||||
run: |
|
run: |
|
||||||
bundle exec i18n-tasks add-missing -l en
|
bin/i18n-tasks add-missing -l en
|
||||||
git diff --exit-code
|
git diff --exit-code
|
||||||
|
|
||||||
- name: Check for wrong string interpolations
|
- name: Check for wrong string interpolations
|
||||||
run: bundle exec i18n-tasks check-consistent-interpolations
|
run: bin/i18n-tasks check-consistent-interpolations
|
||||||
|
|
||||||
- name: Check that all required locale files exist
|
- name: Check that all required locale files exist
|
||||||
run: bundle exec rake repo:check_locales_files
|
run: bin/rake repo:check_locales_files
|
||||||
|
|
|
@ -46,7 +46,7 @@ jobs:
|
||||||
uses: ./.github/actions/setup-ruby
|
uses: ./.github/actions/setup-ruby
|
||||||
|
|
||||||
- name: Run i18n normalize task
|
- name: Run i18n normalize task
|
||||||
run: bundle exec i18n-tasks normalize
|
run: bin/i18n-tasks normalize
|
||||||
|
|
||||||
# Create or update the pull request
|
# Create or update the pull request
|
||||||
- name: Create Pull Request
|
- name: Create Pull Request
|
||||||
|
|
2
.github/workflows/crowdin-download.yml
vendored
2
.github/workflows/crowdin-download.yml
vendored
|
@ -48,7 +48,7 @@ jobs:
|
||||||
uses: ./.github/actions/setup-ruby
|
uses: ./.github/actions/setup-ruby
|
||||||
|
|
||||||
- name: Run i18n normalize task
|
- name: Run i18n normalize task
|
||||||
run: bundle exec i18n-tasks normalize
|
run: bin/i18n-tasks normalize
|
||||||
|
|
||||||
# Create or update the pull request
|
# Create or update the pull request
|
||||||
- name: Create Pull Request
|
- name: Create Pull Request
|
||||||
|
|
2
.github/workflows/lint-haml.yml
vendored
2
.github/workflows/lint-haml.yml
vendored
|
@ -43,4 +43,4 @@ jobs:
|
||||||
- name: Run haml-lint
|
- name: Run haml-lint
|
||||||
run: |
|
run: |
|
||||||
echo "::add-matcher::.github/workflows/haml-lint-problem-matcher.json"
|
echo "::add-matcher::.github/workflows/haml-lint-problem-matcher.json"
|
||||||
bundle exec haml-lint --reporter github
|
bin/haml-lint --reporter github
|
||||||
|
|
|
@ -1031,7 +1031,7 @@ DEPENDENCIES
|
||||||
xorcist (~> 1.1)
|
xorcist (~> 1.1)
|
||||||
|
|
||||||
RUBY VERSION
|
RUBY VERSION
|
||||||
ruby 3.3.5p100
|
ruby 3.3.6p108
|
||||||
|
|
||||||
BUNDLED WITH
|
BUNDLED WITH
|
||||||
2.5.22
|
2.5.23
|
||||||
|
|
|
@ -56,6 +56,16 @@ module Admin
|
||||||
end
|
end
|
||||||
|
|
||||||
def set_instances
|
def set_instances
|
||||||
|
# If we have a `status` in the query parameters, but it has no value or it
|
||||||
|
# isn't a known status remove the status query parameter
|
||||||
|
return redirect_to admin_instances_path filter_params.merge(status: nil) if params.include?(:status) && (params[:status].blank? || InstanceFilter::STATUSES.exclude?(params[:status]))
|
||||||
|
|
||||||
|
# If we have `limited` in the query parameters, remove it and redirect to suspended:
|
||||||
|
return redirect_to admin_instances_path filter_params.merge(status: :suspended) if params[:limited].present?
|
||||||
|
|
||||||
|
# If we're in limited federation mode and have a status parameter, remove it:
|
||||||
|
return redirect_to admin_instances_path filter_params.merge(status: nil) if limited_federation_mode? && params[:status].present?
|
||||||
|
|
||||||
@instances = filtered_instances.page(params[:page])
|
@instances = filtered_instances.page(params[:page])
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -68,7 +78,7 @@ module Admin
|
||||||
end
|
end
|
||||||
|
|
||||||
def filtered_instances
|
def filtered_instances
|
||||||
InstanceFilter.new(limited_federation_mode? ? { allowed: true } : filter_params).results
|
InstanceFilter.new(limited_federation_mode? ? filter_params.merge(status: :allowed) : filter_params).results
|
||||||
end
|
end
|
||||||
|
|
||||||
def filter_params
|
def filter_params
|
||||||
|
|
|
@ -58,6 +58,7 @@ class FeedManager
|
||||||
# @param [Boolean] update
|
# @param [Boolean] update
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
def push_to_home(account, status, update: false)
|
def push_to_home(account, status, update: false)
|
||||||
|
return false unless account.user&.signed_in_recently?
|
||||||
return false unless add_to_feed(:home, account.id, status, aggregate_reblogs: account.user&.aggregates_reblogs?)
|
return false unless add_to_feed(:home, account.id, status, aggregate_reblogs: account.user&.aggregates_reblogs?)
|
||||||
|
|
||||||
trim(:home, account.id)
|
trim(:home, account.id)
|
||||||
|
@ -83,7 +84,9 @@ class FeedManager
|
||||||
# @param [Boolean] update
|
# @param [Boolean] update
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
def push_to_list(list, status, update: false)
|
def push_to_list(list, status, update: false)
|
||||||
return false if filter_from_list?(status, list) || !add_to_feed(:list, list.id, status, aggregate_reblogs: list.account.user&.aggregates_reblogs?)
|
return false if filter_from_list?(status, list)
|
||||||
|
return false unless list.account.user&.signed_in_recently?
|
||||||
|
return false unless add_to_feed(:list, list.id, status, aggregate_reblogs: list.account.user&.aggregates_reblogs?)
|
||||||
|
|
||||||
trim(:list, list.id)
|
trim(:list, list.id)
|
||||||
PushUpdateWorker.perform_async(list.account_id, status.id, "timeline:list:#{list.id}", { 'update' => update }) if push_update_required?("timeline:list:#{list.id}")
|
PushUpdateWorker.perform_async(list.account_id, status.id, "timeline:list:#{list.id}", { 'update' => update }) if push_update_required?("timeline:list:#{list.id}")
|
||||||
|
|
|
@ -2,11 +2,19 @@
|
||||||
|
|
||||||
class InstanceFilter
|
class InstanceFilter
|
||||||
KEYS = %i(
|
KEYS = %i(
|
||||||
limited
|
status
|
||||||
by_domain
|
by_domain
|
||||||
availability
|
availability
|
||||||
).freeze
|
).freeze
|
||||||
|
|
||||||
|
# These are the valid input values for statuses:
|
||||||
|
STATUSES = %w(
|
||||||
|
allowed
|
||||||
|
suspended
|
||||||
|
limited
|
||||||
|
unrestricted
|
||||||
|
).freeze
|
||||||
|
|
||||||
attr_reader :params
|
attr_reader :params
|
||||||
|
|
||||||
def initialize(params)
|
def initialize(params)
|
||||||
|
@ -27,10 +35,8 @@ class InstanceFilter
|
||||||
|
|
||||||
def scope_for(key, value)
|
def scope_for(key, value)
|
||||||
case key.to_s
|
case key.to_s
|
||||||
when 'limited'
|
when 'status'
|
||||||
Instance.joins(:domain_block).reorder(domain_blocks: { id: :desc })
|
status_scope(value)
|
||||||
when 'allowed'
|
|
||||||
Instance.joins(:domain_allow).reorder(domain_allows: { id: :desc })
|
|
||||||
when 'by_domain'
|
when 'by_domain'
|
||||||
Instance.matches_domain(value)
|
Instance.matches_domain(value)
|
||||||
when 'availability'
|
when 'availability'
|
||||||
|
@ -40,12 +46,33 @@ class InstanceFilter
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def status_scope(value)
|
||||||
|
# The `join where` queries here look like they have a bug due to `domain_block`
|
||||||
|
# vs `domain_blocks`, however the table is `domain_blocks` while the relation on
|
||||||
|
# Instances is `domain_block`
|
||||||
|
case value.to_sym
|
||||||
|
when :allowed
|
||||||
|
Instance.joins(:domain_allow).reorder(Arel.sql('domain_allows.id desc'))
|
||||||
|
when :suspended
|
||||||
|
Instance.joins(:domain_block).where(domain_blocks: { severity: :suspend }).reorder(Arel.sql('domain_blocks.id desc'))
|
||||||
|
when :limited
|
||||||
|
Instance.joins(:domain_block).where(domain_blocks: { severity: [:silence, :noop] }).reorder(Arel.sql('domain_blocks.id desc'))
|
||||||
|
when :unrestricted
|
||||||
|
# Finds all instances where there isn't a record in the domain_blocks table
|
||||||
|
Instance.left_outer_joins(:domain_block).where(domain_blocks: { domain: nil })
|
||||||
|
else
|
||||||
|
raise Mastodon::InvalidParameterError, "Unknown limited scope value: #{value}"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
def availability_scope(value)
|
def availability_scope(value)
|
||||||
case value
|
case value
|
||||||
when 'failing'
|
when 'failing'
|
||||||
Instance.where(domain: DeliveryFailureTracker.warning_domains)
|
Instance.where(domain: DeliveryFailureTracker.warning_domains)
|
||||||
when 'unavailable'
|
when 'unavailable'
|
||||||
Instance.joins(:unavailable_domain)
|
Instance.joins(:unavailable_domain)
|
||||||
|
when 'available'
|
||||||
|
Instance.left_outer_joins(:unavailable_domain).where(unavailable_domain: { domain: nil })
|
||||||
else
|
else
|
||||||
raise Mastodon::InvalidParameterError, "Unknown availability: #{value}"
|
raise Mastodon::InvalidParameterError, "Unknown availability: #{value}"
|
||||||
end
|
end
|
||||||
|
|
|
@ -165,6 +165,10 @@ class User < ApplicationRecord
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def signed_in_recently?
|
||||||
|
current_sign_in_at.present? && current_sign_in_at >= ACTIVE_DURATION.ago
|
||||||
|
end
|
||||||
|
|
||||||
def confirmed?
|
def confirmed?
|
||||||
confirmed_at.present?
|
confirmed_at.present?
|
||||||
end
|
end
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
%span.comment.public-comment #{t('admin.domain_blocks.public_comment')}: #{instance.domain_block.public_comment}
|
%span.comment.public-comment #{t('admin.domain_blocks.public_comment')}: #{instance.domain_block.public_comment}
|
||||||
- if instance.domain_block.private_comment.present?
|
- if instance.domain_block.private_comment.present?
|
||||||
%span.comment.private-comment #{t('admin.domain_blocks.private_comment')}: #{instance.domain_block.private_comment}
|
%span.comment.private-comment #{t('admin.domain_blocks.private_comment')}: #{instance.domain_block.private_comment}
|
||||||
- elsif instance.domain_allow
|
- elsif limited_federation_mode? && instance.domain_allow
|
||||||
= t('admin.accounts.whitelisted')
|
= t('admin.accounts.whitelisted')
|
||||||
- else
|
- else
|
||||||
= t('admin.accounts.no_limits_imposed')
|
= t('admin.accounts.no_limits_imposed')
|
||||||
|
|
|
@ -15,34 +15,36 @@
|
||||||
.filter-subset
|
.filter-subset
|
||||||
%strong= t('admin.instances.moderation.title')
|
%strong= t('admin.instances.moderation.title')
|
||||||
%ul
|
%ul
|
||||||
%li= filter_link_to t('admin.instances.moderation.all'), limited: nil
|
- if limited_federation_mode?
|
||||||
|
%li= filter_link_to t('admin.instances.moderation.allowed'), status: nil
|
||||||
- unless limited_federation_mode?
|
- else
|
||||||
%li= filter_link_to t('admin.instances.moderation.limited'), limited: '1'
|
%li= filter_link_to t('admin.instances.moderation.all'), status: nil
|
||||||
|
%li= filter_link_to t('admin.instances.moderation.unrestricted'), status: 'unrestricted'
|
||||||
|
%li= filter_link_to t('admin.instances.moderation.limited'), status: 'limited'
|
||||||
|
%li= filter_link_to t('admin.instances.moderation.suspended'), status: 'suspended'
|
||||||
|
|
||||||
.filter-subset
|
.filter-subset
|
||||||
%strong= t('admin.instances.availability.title')
|
%strong= t('admin.instances.availability.title')
|
||||||
%ul
|
%ul
|
||||||
%li= filter_link_to t('admin.instances.delivery.all'), availability: nil
|
%li= filter_link_to t('admin.instances.delivery.all'), availability: nil
|
||||||
|
%li= filter_link_to t('admin.instances.delivery.available'), availability: 'available'
|
||||||
%li= filter_link_to t('admin.instances.delivery.failing'), availability: 'failing'
|
%li= filter_link_to t('admin.instances.delivery.failing'), availability: 'failing'
|
||||||
%li= filter_link_to t('admin.instances.delivery.unavailable'), availability: 'unavailable'
|
%li= filter_link_to t('admin.instances.delivery.unavailable'), availability: 'unavailable'
|
||||||
|
|
||||||
- unless limited_federation_mode?
|
= form_with url: admin_instances_url, method: :get, class: :simple_form do |form|
|
||||||
= form_with url: admin_instances_url, method: :get, class: :simple_form do |form|
|
.fields-group
|
||||||
.fields-group
|
- InstanceFilter::KEYS.each do |key|
|
||||||
- InstanceFilter::KEYS.each do |key|
|
= form.hidden_field key, value: params[key] if params[key].present?
|
||||||
= form.hidden_field key, value: params[key] if params[key].present?
|
|
||||||
|
|
||||||
- %i(by_domain).each do |key|
|
.input.string.optional
|
||||||
.input.string.optional
|
= form.text_field :by_domain,
|
||||||
= form.text_field key,
|
value: params[:by_domain],
|
||||||
value: params[key],
|
class: 'string optional',
|
||||||
class: 'string optional',
|
placeholder: t('admin.instances.by_domain')
|
||||||
placeholder: I18n.t("admin.instances.#{key}")
|
|
||||||
|
|
||||||
.actions
|
.actions
|
||||||
%button.button= t('admin.accounts.search')
|
%button.button= t('admin.accounts.search')
|
||||||
= link_to t('admin.accounts.reset'), admin_instances_path, class: 'button negative'
|
= link_to t('admin.accounts.reset'), admin_instances_path, class: 'button negative'
|
||||||
|
|
||||||
%hr.spacer/
|
%hr.spacer/
|
||||||
|
|
||||||
|
|
27
bin/bundler-audit
Executable file
27
bin/bundler-audit
Executable file
|
@ -0,0 +1,27 @@
|
||||||
|
#!/usr/bin/env ruby
|
||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
#
|
||||||
|
# This file was generated by Bundler.
|
||||||
|
#
|
||||||
|
# The application 'bundler-audit' is installed as part of a gem, and
|
||||||
|
# this file is here to facilitate running it.
|
||||||
|
#
|
||||||
|
|
||||||
|
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
|
||||||
|
|
||||||
|
bundle_binstub = File.expand_path("bundle", __dir__)
|
||||||
|
|
||||||
|
if File.file?(bundle_binstub)
|
||||||
|
if File.read(bundle_binstub, 300).include?("This file was generated by Bundler")
|
||||||
|
load(bundle_binstub)
|
||||||
|
else
|
||||||
|
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
||||||
|
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
require "rubygems"
|
||||||
|
require "bundler/setup"
|
||||||
|
|
||||||
|
load Gem.bin_path("bundler-audit", "bundler-audit")
|
27
bin/haml-lint
Executable file
27
bin/haml-lint
Executable file
|
@ -0,0 +1,27 @@
|
||||||
|
#!/usr/bin/env ruby
|
||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
#
|
||||||
|
# This file was generated by Bundler.
|
||||||
|
#
|
||||||
|
# The application 'haml-lint' is installed as part of a gem, and
|
||||||
|
# this file is here to facilitate running it.
|
||||||
|
#
|
||||||
|
|
||||||
|
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
|
||||||
|
|
||||||
|
bundle_binstub = File.expand_path("bundle", __dir__)
|
||||||
|
|
||||||
|
if File.file?(bundle_binstub)
|
||||||
|
if File.read(bundle_binstub, 300).include?("This file was generated by Bundler")
|
||||||
|
load(bundle_binstub)
|
||||||
|
else
|
||||||
|
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
||||||
|
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
require "rubygems"
|
||||||
|
require "bundler/setup"
|
||||||
|
|
||||||
|
load Gem.bin_path("haml_lint", "haml-lint")
|
27
bin/i18n-tasks
Executable file
27
bin/i18n-tasks
Executable file
|
@ -0,0 +1,27 @@
|
||||||
|
#!/usr/bin/env ruby
|
||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
#
|
||||||
|
# This file was generated by Bundler.
|
||||||
|
#
|
||||||
|
# The application 'i18n-tasks' is installed as part of a gem, and
|
||||||
|
# this file is here to facilitate running it.
|
||||||
|
#
|
||||||
|
|
||||||
|
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
|
||||||
|
|
||||||
|
bundle_binstub = File.expand_path("bundle", __dir__)
|
||||||
|
|
||||||
|
if File.file?(bundle_binstub)
|
||||||
|
if File.read(bundle_binstub, 300).include?("This file was generated by Bundler")
|
||||||
|
load(bundle_binstub)
|
||||||
|
else
|
||||||
|
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
||||||
|
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
require "rubygems"
|
||||||
|
require "bundler/setup"
|
||||||
|
|
||||||
|
load Gem.bin_path("i18n-tasks", "i18n-tasks")
|
16
bin/rspec
16
bin/rspec
|
@ -1,5 +1,6 @@
|
||||||
#!/usr/bin/env ruby
|
#!/usr/bin/env ruby
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
#
|
#
|
||||||
# This file was generated by Bundler.
|
# This file was generated by Bundler.
|
||||||
#
|
#
|
||||||
|
@ -7,9 +8,18 @@
|
||||||
# this file is here to facilitate running it.
|
# this file is here to facilitate running it.
|
||||||
#
|
#
|
||||||
|
|
||||||
require "pathname"
|
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
|
||||||
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
|
||||||
Pathname.new(__FILE__).realpath)
|
bundle_binstub = File.expand_path("bundle", __dir__)
|
||||||
|
|
||||||
|
if File.file?(bundle_binstub)
|
||||||
|
if File.read(bundle_binstub, 300).include?("This file was generated by Bundler")
|
||||||
|
load(bundle_binstub)
|
||||||
|
else
|
||||||
|
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
||||||
|
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
require "rubygems"
|
require "rubygems"
|
||||||
require "bundler/setup"
|
require "bundler/setup"
|
||||||
|
|
|
@ -54,10 +54,6 @@ af:
|
||||||
silence: Beperk
|
silence: Beperk
|
||||||
export_domain_allows:
|
export_domain_allows:
|
||||||
no_file: Geen lêer is gekies nie
|
no_file: Geen lêer is gekies nie
|
||||||
instances:
|
|
||||||
back_to_limited: Beperk
|
|
||||||
moderation:
|
|
||||||
limited: Beperk
|
|
||||||
roles:
|
roles:
|
||||||
categories:
|
categories:
|
||||||
devops: DevOps
|
devops: DevOps
|
||||||
|
|
|
@ -436,9 +436,6 @@ an:
|
||||||
no_failures_recorded: No i hai fallos en o rechistro.
|
no_failures_recorded: No i hai fallos en o rechistro.
|
||||||
title: Disponibilidat
|
title: Disponibilidat
|
||||||
warning: Lo zaguer intento de connexión a este servidor no ha teniu exito
|
warning: Lo zaguer intento de connexión a este servidor no ha teniu exito
|
||||||
back_to_all: Totz
|
|
||||||
back_to_limited: Limitaus
|
|
||||||
back_to_warning: Alvertencia
|
|
||||||
by_domain: Dominio
|
by_domain: Dominio
|
||||||
confirm_purge: Seguro que quiers eliminar permanentment los datos d'este dominio?
|
confirm_purge: Seguro que quiers eliminar permanentment los datos d'este dominio?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -468,9 +465,6 @@ an:
|
||||||
restart: Reiniciar entrega
|
restart: Reiniciar entrega
|
||||||
stop: Aturar entrega
|
stop: Aturar entrega
|
||||||
unavailable: No disponible
|
unavailable: No disponible
|
||||||
delivery_available: Entrega disponible
|
|
||||||
delivery_error_days: Días d'error d'entrega
|
|
||||||
delivery_error_hint: Si la entrega no ye posible a lo largo de %{count} días, se marcará automaticament como no entregable.
|
|
||||||
destroyed_msg: Los datos de %{domain} son agora en coda pa la suya imminent eliminación.
|
destroyed_msg: Los datos de %{domain} son agora en coda pa la suya imminent eliminación.
|
||||||
empty: No se troboron dominios.
|
empty: No se troboron dominios.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -478,18 +472,10 @@ an:
|
||||||
other: "%{count} cuentas conoixidas"
|
other: "%{count} cuentas conoixidas"
|
||||||
moderation:
|
moderation:
|
||||||
all: Totz
|
all: Totz
|
||||||
limited: Limitau
|
|
||||||
title: Moderación
|
title: Moderación
|
||||||
private_comment: Comentario privau
|
|
||||||
public_comment: Comentario publico
|
|
||||||
purge: Purgar
|
purge: Purgar
|
||||||
purge_description_html: Si creyes que este dominio ye desconnectau, puetz borrar totz los rechistros de cuentas y los datos asociaus d'este dominio d'o tuyo almagazenamiento. Esto puede levar un tiempo.
|
purge_description_html: Si creyes que este dominio ye desconnectau, puetz borrar totz los rechistros de cuentas y los datos asociaus d'este dominio d'o tuyo almagazenamiento. Esto puede levar un tiempo.
|
||||||
title: Instancias conoixidas
|
title: Instancias conoixidas
|
||||||
total_blocked_by_us: Blocau per nusatros
|
|
||||||
total_followed_by_them: Seguius per ells
|
|
||||||
total_followed_by_us: Seguiu per nusatros
|
|
||||||
total_reported: Informes sobre ellas
|
|
||||||
total_storage: Fichers multimedia
|
|
||||||
totals_time_period_hint_html: Los totals amostraus contino incluyen datos pa tot lo tiempo.
|
totals_time_period_hint_html: Los totals amostraus contino incluyen datos pa tot lo tiempo.
|
||||||
invites:
|
invites:
|
||||||
deactivate_all: Desactivar totz
|
deactivate_all: Desactivar totz
|
||||||
|
|
|
@ -497,9 +497,6 @@ ar:
|
||||||
no_failures_recorded: لم يتم العثور على أي فشل.
|
no_failures_recorded: لم يتم العثور على أي فشل.
|
||||||
title: التوفر
|
title: التوفر
|
||||||
warning: فشلت المحاولة الأخيرة للاتصال بهذا النطاق
|
warning: فشلت المحاولة الأخيرة للاتصال بهذا النطاق
|
||||||
back_to_all: الكل
|
|
||||||
back_to_limited: محدود
|
|
||||||
back_to_warning: تحذير
|
|
||||||
by_domain: النطاق
|
by_domain: النطاق
|
||||||
confirm_purge: هل أنت متأكد من أنك تريد حذف البيانات من هذا النطاق بشكل دائم؟
|
confirm_purge: هل أنت متأكد من أنك تريد حذف البيانات من هذا النطاق بشكل دائم؟
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -530,9 +527,6 @@ ar:
|
||||||
restart: إعادة تشغيل التوصيل
|
restart: إعادة تشغيل التوصيل
|
||||||
stop: إيقاف التوصيل
|
stop: إيقاف التوصيل
|
||||||
unavailable: غير متوفر
|
unavailable: غير متوفر
|
||||||
delivery_available: التسليم متوفر
|
|
||||||
delivery_error_days: أيام أخطاء التوصيل
|
|
||||||
delivery_error_hint: إذا كان التوصيل غير ممكناً لـ%{count} يوم، فستوضع عليها علامة {غير قابلة للتسليم} تلقائياً.
|
|
||||||
destroyed_msg: تم جدولة حذف بيانات النطاق %{domain}.
|
destroyed_msg: تم جدولة حذف بيانات النطاق %{domain}.
|
||||||
empty: لم يتم العثور على نطاقات.
|
empty: لم يتم العثور على نطاقات.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -544,18 +538,10 @@ ar:
|
||||||
zero: "%{count} حسابًا معروفًا"
|
zero: "%{count} حسابًا معروفًا"
|
||||||
moderation:
|
moderation:
|
||||||
all: كافتها
|
all: كافتها
|
||||||
limited: محدود
|
|
||||||
title: الإشراف
|
title: الإشراف
|
||||||
private_comment: تعليق خاص
|
|
||||||
public_comment: تعليق للعلن
|
|
||||||
purge: تطهير
|
purge: تطهير
|
||||||
purge_description_html: في حال رأيت أن هذا النطاق لن يعود، يمكنك حذف جميع الحسابات والبيانات المرتبطة به من التخزين الخاص بك. هذا قد يحتاج إلى بعض الوقت للانتهاء.
|
purge_description_html: في حال رأيت أن هذا النطاق لن يعود، يمكنك حذف جميع الحسابات والبيانات المرتبطة به من التخزين الخاص بك. هذا قد يحتاج إلى بعض الوقت للانتهاء.
|
||||||
title: الفديرالية
|
title: الفديرالية
|
||||||
total_blocked_by_us: المحجوبة مِن طرفنا
|
|
||||||
total_followed_by_them: يُتابِعونها
|
|
||||||
total_followed_by_us: التي نُتابِعها
|
|
||||||
total_reported: تقارير عنهم
|
|
||||||
total_storage: الوسائط المُرفَقة
|
|
||||||
totals_time_period_hint_html: المجموع المعروض في الأسفل يشمل بيانات منذ البداية.
|
totals_time_period_hint_html: المجموع المعروض في الأسفل يشمل بيانات منذ البداية.
|
||||||
unknown_instance: لا يوجد حاليا أي تسجيل لهذا النطاق على هذا الخادم.
|
unknown_instance: لا يوجد حاليا أي تسجيل لهذا النطاق على هذا الخادم.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -180,7 +180,6 @@ ast:
|
||||||
availability:
|
availability:
|
||||||
no_failures_recorded: Nun se rexistró nengún fallu.
|
no_failures_recorded: Nun se rexistró nengún fallu.
|
||||||
title: Disponibilidá
|
title: Disponibilidá
|
||||||
back_to_warning: Alvertencia
|
|
||||||
by_domain: Dominiu
|
by_domain: Dominiu
|
||||||
content_policies:
|
content_policies:
|
||||||
comment: Nota interna
|
comment: Nota interna
|
||||||
|
@ -204,10 +203,7 @@ ast:
|
||||||
other: "%{count} cuentes conocíes"
|
other: "%{count} cuentes conocíes"
|
||||||
moderation:
|
moderation:
|
||||||
title: Moderación
|
title: Moderación
|
||||||
private_comment: Comentariu priváu
|
|
||||||
public_comment: Comentariu públicu
|
|
||||||
title: Federación
|
title: Federación
|
||||||
total_reported: Informes d'esa instancia
|
|
||||||
invites:
|
invites:
|
||||||
deactivate_all: Desactivalo too
|
deactivate_all: Desactivalo too
|
||||||
filter:
|
filter:
|
||||||
|
|
|
@ -504,9 +504,6 @@ be:
|
||||||
no_failures_recorded: Памылак не зарэгістравана.
|
no_failures_recorded: Памылак не зарэгістравана.
|
||||||
title: Дасяжнасць
|
title: Дасяжнасць
|
||||||
warning: Апошняя спроба падключэння да гэтага серверу была няўдалай
|
warning: Апошняя спроба падключэння да гэтага серверу была няўдалай
|
||||||
back_to_all: Усе
|
|
||||||
back_to_limited: Абмежаваныя
|
|
||||||
back_to_warning: Папярэджанне
|
|
||||||
by_domain: Дамен
|
by_domain: Дамен
|
||||||
confirm_purge: Вы ўпэўненыя, што хочаце незваротна выдаліць даныя з гэтага дамена?
|
confirm_purge: Вы ўпэўненыя, што хочаце незваротна выдаліць даныя з гэтага дамена?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -537,9 +534,6 @@ be:
|
||||||
restart: Перазапусціць дастаўку
|
restart: Перазапусціць дастаўку
|
||||||
stop: Спыніць дастаўку
|
stop: Спыніць дастаўку
|
||||||
unavailable: Недаступна
|
unavailable: Недаступна
|
||||||
delivery_available: Дастаўка даступна
|
|
||||||
delivery_error_days: Дзён памылак дастаўкі
|
|
||||||
delivery_error_hint: Калі дастаўка немагчымая на працягу %{count} дзён, яна будзе аўтаматычна пазначана як недастаўленая.
|
|
||||||
destroyed_msg: Даныя з %{domain} цяпер стаяць у чарзе на неадкладнае выдаленне.
|
destroyed_msg: Даныя з %{domain} цяпер стаяць у чарзе на неадкладнае выдаленне.
|
||||||
empty: Даменаў не знойдзена.
|
empty: Даменаў не знойдзена.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -549,18 +543,10 @@ be:
|
||||||
other: "%{count} вядомых уліковых запісаў"
|
other: "%{count} вядомых уліковых запісаў"
|
||||||
moderation:
|
moderation:
|
||||||
all: Усе
|
all: Усе
|
||||||
limited: Абмежаваныя
|
|
||||||
title: Мадэрацыя
|
title: Мадэрацыя
|
||||||
private_comment: Прыватны каментарый
|
|
||||||
public_comment: Публічны каментарый
|
|
||||||
purge: Ачысціць
|
purge: Ачысціць
|
||||||
purge_description_html: Калі вам здаецца, што гэты дамен больш не будзе працаваць, вы можаце выдаліць усе даныя ўліковых запісаў і звязаныя з даменам даныя з вашага сховішча. Гэта можа заняць нейкі час.
|
purge_description_html: Калі вам здаецца, што гэты дамен больш не будзе працаваць, вы можаце выдаліць усе даныя ўліковых запісаў і звязаныя з даменам даныя з вашага сховішча. Гэта можа заняць нейкі час.
|
||||||
title: Федэрацыя
|
title: Федэрацыя
|
||||||
total_blocked_by_us: Заблакіравана намі
|
|
||||||
total_followed_by_them: Іхнія падпіскі
|
|
||||||
total_followed_by_us: Нашыя падпіскі
|
|
||||||
total_reported: Скаргі на іх
|
|
||||||
total_storage: Медыя далучэнні
|
|
||||||
totals_time_period_hint_html: Паказаныя агульныя значэнні ніжэй уключаюць даныя за ўвесь час.
|
totals_time_period_hint_html: Паказаныя агульныя значэнні ніжэй уключаюць даныя за ўвесь час.
|
||||||
unknown_instance: На дадзены момант няма запісаў аб гэтым дамене на гэтым серверы.
|
unknown_instance: На дадзены момант няма запісаў аб гэтым дамене на гэтым серверы.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -468,9 +468,6 @@ bg:
|
||||||
no_failures_recorded: Няма записани неуспешни опити.
|
no_failures_recorded: Няма записани неуспешни опити.
|
||||||
title: Наличност
|
title: Наличност
|
||||||
warning: Последният опит за свързване с този сървър беше неуспешен
|
warning: Последният опит за свързване с този сървър беше неуспешен
|
||||||
back_to_all: Всичко
|
|
||||||
back_to_limited: Ограничено
|
|
||||||
back_to_warning: Предупреждение
|
|
||||||
by_domain: Домейн
|
by_domain: Домейн
|
||||||
confirm_purge: Наистина ли искате завинаги да изтриете данните от този домейн?
|
confirm_purge: Наистина ли искате завинаги да изтриете данните от този домейн?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -501,9 +498,6 @@ bg:
|
||||||
restart: Рестартиране на доставката
|
restart: Рестартиране на доставката
|
||||||
stop: Спиране на доставката
|
stop: Спиране на доставката
|
||||||
unavailable: Неналично
|
unavailable: Неналично
|
||||||
delivery_available: Доставката е налична
|
|
||||||
delivery_error_days: Грешни дни на доставяне
|
|
||||||
delivery_error_hint: Ако доставката не е възможна за %{count} дни, автоматично ще бъде маркирана като невъзможно за доставка.
|
|
||||||
destroyed_msg: Данните от %{domain} са добавени към опашката за незабавно изтриване.
|
destroyed_msg: Данните от %{domain} са добавени към опашката за незабавно изтриване.
|
||||||
empty: Няма намерени домейни.
|
empty: Няма намерени домейни.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -511,18 +505,10 @@ bg:
|
||||||
other: "%{count} известни акаунти"
|
other: "%{count} известни акаунти"
|
||||||
moderation:
|
moderation:
|
||||||
all: Всичко
|
all: Всичко
|
||||||
limited: Ограничено
|
|
||||||
title: Mодериране
|
title: Mодериране
|
||||||
private_comment: Личен коментар
|
|
||||||
public_comment: Публичен коментар
|
|
||||||
purge: Чистка
|
purge: Чистка
|
||||||
purge_description_html: Ако считате, че този домейн е офлайн завинаги, можете да изтриете всички записи за акаунти и прилежащи данни за този домейн от вашата памет. Това може да отнеме известно време.
|
purge_description_html: Ако считате, че този домейн е офлайн завинаги, можете да изтриете всички записи за акаунти и прилежащи данни за този домейн от вашата памет. Това може да отнеме известно време.
|
||||||
title: Федерация
|
title: Федерация
|
||||||
total_blocked_by_us: Блокирано от нас
|
|
||||||
total_followed_by_them: Последвани от тях
|
|
||||||
total_followed_by_us: Последвано от нас
|
|
||||||
total_reported: Доклади за тях
|
|
||||||
total_storage: Прикачена мултимедия
|
|
||||||
totals_time_period_hint_html: Общите стойности, показани по-долу, включват данни за всички времена.
|
totals_time_period_hint_html: Общите стойности, показани по-долу, включват данни за всички времена.
|
||||||
unknown_instance: В момента няма запис на този домейн на този сървър.
|
unknown_instance: В момента няма запис на този домейн на този сървър.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -193,16 +193,8 @@ bn:
|
||||||
title: ড্যাশবোর্ড
|
title: ড্যাশবোর্ড
|
||||||
instances:
|
instances:
|
||||||
moderation:
|
moderation:
|
||||||
limited: সীমিত
|
|
||||||
title: প্রশাসনা
|
title: প্রশাসনা
|
||||||
private_comment: ব্যক্তিগত মন্তব্য
|
|
||||||
public_comment: জনমত
|
|
||||||
title: ফেডারেশন
|
title: ফেডারেশন
|
||||||
total_blocked_by_us: আমাদের দ্বারা অবরুদ্ধ
|
|
||||||
total_followed_by_them: তাদের দ্বারা অনুসরণ
|
|
||||||
total_followed_by_us: আমাদের দ্বারা অনুসরণ
|
|
||||||
total_reported: তাদের সম্পর্কে রিপোর্ট
|
|
||||||
total_storage: মিডিয়া সংযুক্তিগুলি
|
|
||||||
invites:
|
invites:
|
||||||
deactivate_all: সব নিষ্ক্রিয় করুন
|
deactivate_all: সব নিষ্ক্রিয় করুন
|
||||||
filter:
|
filter:
|
||||||
|
|
|
@ -159,9 +159,6 @@ br:
|
||||||
status: Statud
|
status: Statud
|
||||||
suppressed: Dilamet
|
suppressed: Dilamet
|
||||||
instances:
|
instances:
|
||||||
back_to_all: Pep tra
|
|
||||||
back_to_limited: Bevennet
|
|
||||||
back_to_warning: Diwall
|
|
||||||
by_domain: Domani
|
by_domain: Domani
|
||||||
content_policies:
|
content_policies:
|
||||||
policies:
|
policies:
|
||||||
|
@ -175,11 +172,9 @@ br:
|
||||||
failing: O faziañ
|
failing: O faziañ
|
||||||
moderation:
|
moderation:
|
||||||
all: Pep tra
|
all: Pep tra
|
||||||
limited: Bevennet
|
|
||||||
title: Habaskadur
|
title: Habaskadur
|
||||||
purge: Spurjañ
|
purge: Spurjañ
|
||||||
title: Kevread
|
title: Kevread
|
||||||
total_storage: Restroù media stag
|
|
||||||
invites:
|
invites:
|
||||||
filter:
|
filter:
|
||||||
all: Pep tra
|
all: Pep tra
|
||||||
|
|
|
@ -496,9 +496,6 @@ ca:
|
||||||
no_failures_recorded: Sense errors registrats.
|
no_failures_recorded: Sense errors registrats.
|
||||||
title: Disponibilitat
|
title: Disponibilitat
|
||||||
warning: El darrer intent de connexió a aquest servidor no ha tingut èxit
|
warning: El darrer intent de connexió a aquest servidor no ha tingut èxit
|
||||||
back_to_all: Totes
|
|
||||||
back_to_limited: Limitades
|
|
||||||
back_to_warning: Avís
|
|
||||||
by_domain: Domini
|
by_domain: Domini
|
||||||
confirm_purge: Estàs segur que vols eliminar permanentment les dades d'aquest domini?
|
confirm_purge: Estàs segur que vols eliminar permanentment les dades d'aquest domini?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -529,9 +526,6 @@ ca:
|
||||||
restart: Reinicia el lliurament
|
restart: Reinicia el lliurament
|
||||||
stop: Atura el lliurament
|
stop: Atura el lliurament
|
||||||
unavailable: No disponible
|
unavailable: No disponible
|
||||||
delivery_available: El lliurament està disponible
|
|
||||||
delivery_error_days: Dies de fallades de lliurament
|
|
||||||
delivery_error_hint: Si el lliurament no és possible per %{count} dies, serà automàticament marcat com a no lliurable.
|
|
||||||
destroyed_msg: Les dades de %{domain} ara son en la cua per a esborrat imminent.
|
destroyed_msg: Les dades de %{domain} ara son en la cua per a esborrat imminent.
|
||||||
empty: No s'han trobat dominis.
|
empty: No s'han trobat dominis.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -539,18 +533,10 @@ ca:
|
||||||
other: "%{count} comptes coneguts"
|
other: "%{count} comptes coneguts"
|
||||||
moderation:
|
moderation:
|
||||||
all: Totes
|
all: Totes
|
||||||
limited: Limitades
|
|
||||||
title: Moderació
|
title: Moderació
|
||||||
private_comment: Comentari privat
|
|
||||||
public_comment: Comentari públic
|
|
||||||
purge: Purga
|
purge: Purga
|
||||||
purge_description_html: Si creus que aquest domini està fora de línia per sempre, pots esborrar tots els seus comptes i dades relacionades del teu emmagatzematge. Això pot trigar una estona.
|
purge_description_html: Si creus que aquest domini està fora de línia per sempre, pots esborrar tots els seus comptes i dades relacionades del teu emmagatzematge. Això pot trigar una estona.
|
||||||
title: Federació
|
title: Federació
|
||||||
total_blocked_by_us: Bloquejats per nosaltres
|
|
||||||
total_followed_by_them: Seguits per ells
|
|
||||||
total_followed_by_us: Seguits per nosaltres
|
|
||||||
total_reported: Informes sobre ells
|
|
||||||
total_storage: Adjunts multimèdia
|
|
||||||
totals_time_period_hint_html: Els totals mostrats a sota incloeixen dades de tots els temps.
|
totals_time_period_hint_html: Els totals mostrats a sota incloeixen dades de tots els temps.
|
||||||
unknown_instance: A hores d'ara no hi ha cap registre d'aquest domini al servidor.
|
unknown_instance: A hores d'ara no hi ha cap registre d'aquest domini al servidor.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -336,9 +336,6 @@ ckb:
|
||||||
no_failures_recorded: هیچ شکستێک لە تۆماردا نییە.
|
no_failures_recorded: هیچ شکستێک لە تۆماردا نییە.
|
||||||
title: بەردەست بوونی
|
title: بەردەست بوونی
|
||||||
warning: دوایین هەوڵ بۆ پەیوەندیکردن بەم سێرڤەرە سەرکەوتوو نەبوو
|
warning: دوایین هەوڵ بۆ پەیوەندیکردن بەم سێرڤەرە سەرکەوتوو نەبوو
|
||||||
back_to_all: هەمووی
|
|
||||||
back_to_limited: سنووردار
|
|
||||||
back_to_warning: ئاگاداری
|
|
||||||
by_domain: دۆمەین
|
by_domain: دۆمەین
|
||||||
confirm_purge: ئایا دڵنیای کە دەتەوێت بۆ هەمیشە زانیارییەکان لەم دۆمەینە بسڕیتەوە?
|
confirm_purge: ئایا دڵنیای کە دەتەوێت بۆ هەمیشە زانیارییەکان لەم دۆمەینە بسڕیتەوە?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -368,9 +365,6 @@ ckb:
|
||||||
restart: دووبارە دەستپێکردنەوەی گەیاندن
|
restart: دووبارە دەستپێکردنەوەی گەیاندن
|
||||||
stop: گەیاندن بوەستێنە
|
stop: گەیاندن بوەستێنە
|
||||||
unavailable: بەردەست نییە
|
unavailable: بەردەست نییە
|
||||||
delivery_available: گەیاندن بەردەستە
|
|
||||||
delivery_error_days: ڕۆژانی هەڵەی گەیاندن
|
|
||||||
delivery_error_hint: ئەگەر گەیاندن بۆ %{count} ڕۆژەکان نەتوانرێت، بە شێوەیەکی ئۆتۆماتیکی وەک ناگەیاندن نیشان دەدرێت.
|
|
||||||
destroyed_msg: ئێستا داتا لە %{domain} لە ڕیزدا دانراوە بۆ سڕینەوەی نزیک.
|
destroyed_msg: ئێستا داتا لە %{domain} لە ڕیزدا دانراوە بۆ سڕینەوەی نزیک.
|
||||||
empty: هیچ دۆمەینێک نەدۆزرایەوە.
|
empty: هیچ دۆمەینێک نەدۆزرایەوە.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -378,18 +372,10 @@ ckb:
|
||||||
other: "%{count} ئەژمێری ناسراو"
|
other: "%{count} ئەژمێری ناسراو"
|
||||||
moderation:
|
moderation:
|
||||||
all: هەموو
|
all: هەموو
|
||||||
limited: سنووردار
|
|
||||||
title: بەڕێوەبردن
|
title: بەڕێوەبردن
|
||||||
private_comment: لێدوانی تایبەت
|
|
||||||
public_comment: سەرنجی گشتی
|
|
||||||
purge: پاککردنەوە
|
purge: پاککردنەوە
|
||||||
purge_description_html: ئەگەر پێت وایە ئەم دۆمەینە بۆ هەمیشە ئۆفلاینە، دەتوانیت هەموو تۆمارەکانی ئەکاونت و زانیارییە پەیوەندیدارەکانی ئەم دۆمەینە لە هەڵگرتنەکەت بسڕیتەوە. لەوانەیە ئەمە ماوەیەکی پێ بچێت.
|
purge_description_html: ئەگەر پێت وایە ئەم دۆمەینە بۆ هەمیشە ئۆفلاینە، دەتوانیت هەموو تۆمارەکانی ئەکاونت و زانیارییە پەیوەندیدارەکانی ئەم دۆمەینە لە هەڵگرتنەکەت بسڕیتەوە. لەوانەیە ئەمە ماوەیەکی پێ بچێت.
|
||||||
title: پەیوەندی نێوان ڕاژە
|
title: پەیوەندی نێوان ڕاژە
|
||||||
total_blocked_by_us: لەلایەن ئێمە بەربەست کراوە
|
|
||||||
total_followed_by_them: شوێنمان دەکەون
|
|
||||||
total_followed_by_us: شوێنیان کەوتین
|
|
||||||
total_reported: گوزارشت له باره یان
|
|
||||||
total_storage: هاوپێچی میدیا
|
|
||||||
totals_time_period_hint_html: ئەو کۆی گشتیانەی لە خوارەوە پیشان دراون داتای هەموو کاتەکان لەخۆدەگرن.
|
totals_time_period_hint_html: ئەو کۆی گشتیانەی لە خوارەوە پیشان دراون داتای هەموو کاتەکان لەخۆدەگرن.
|
||||||
invites:
|
invites:
|
||||||
deactivate_all: هەموو لەکارخستنی
|
deactivate_all: هەموو لەکارخستنی
|
||||||
|
|
|
@ -330,9 +330,6 @@ co:
|
||||||
title: Ricumandazione d'abbunamentu
|
title: Ricumandazione d'abbunamentu
|
||||||
unsuppress: Riattivà a ricumandazione d'abbunamentu
|
unsuppress: Riattivà a ricumandazione d'abbunamentu
|
||||||
instances:
|
instances:
|
||||||
back_to_all: Tutti
|
|
||||||
back_to_limited: Limitate
|
|
||||||
back_to_warning: Avertimenti
|
|
||||||
by_domain: Duminiu
|
by_domain: Duminiu
|
||||||
delivery:
|
delivery:
|
||||||
all: Tutti
|
all: Tutti
|
||||||
|
@ -340,22 +337,11 @@ co:
|
||||||
restart: Riprincipià a distribuzione
|
restart: Riprincipià a distribuzione
|
||||||
stop: Firmà a distribuzione
|
stop: Firmà a distribuzione
|
||||||
unavailable: Indispunibule
|
unavailable: Indispunibule
|
||||||
delivery_available: Distribuzione dispunibule
|
|
||||||
delivery_error_days: Ghjorni d'errori di a distribuzione
|
|
||||||
delivery_error_hint: S'ellu ùn si pò distribuì à u duminiu per %{count} ghjorni, sarà autumaticamente marcatu cum'è indistribuibile.
|
|
||||||
empty: Mancun duminiu trovu.
|
empty: Mancun duminiu trovu.
|
||||||
moderation:
|
moderation:
|
||||||
all: Tuttu
|
all: Tuttu
|
||||||
limited: Limitatu
|
|
||||||
title: Muderazione
|
title: Muderazione
|
||||||
private_comment: Cummentariu privatu
|
|
||||||
public_comment: Cummentariu pubblicu
|
|
||||||
title: Federazione
|
title: Federazione
|
||||||
total_blocked_by_us: Bluccati da noi
|
|
||||||
total_followed_by_them: Siguitati da elli
|
|
||||||
total_followed_by_us: Siguitati da noi
|
|
||||||
total_reported: Riporti nant'à elli
|
|
||||||
total_storage: Media aghjunti
|
|
||||||
invites:
|
invites:
|
||||||
deactivate_all: Disattivà tuttu
|
deactivate_all: Disattivà tuttu
|
||||||
filter:
|
filter:
|
||||||
|
|
|
@ -479,9 +479,6 @@ cs:
|
||||||
no_failures_recorded: Žádné zaznamenané selhání.
|
no_failures_recorded: Žádné zaznamenané selhání.
|
||||||
title: Dostupnost
|
title: Dostupnost
|
||||||
warning: Poslední pokus o připojení k tomuto serveru byl neúspěšný
|
warning: Poslední pokus o připojení k tomuto serveru byl neúspěšný
|
||||||
back_to_all: Vše
|
|
||||||
back_to_limited: Omezená
|
|
||||||
back_to_warning: Varování
|
|
||||||
by_domain: Doména
|
by_domain: Doména
|
||||||
confirm_purge: Jste si jisti, že chcete nevratně smazat data z této domény?
|
confirm_purge: Jste si jisti, že chcete nevratně smazat data z této domény?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -512,9 +509,6 @@ cs:
|
||||||
restart: Restartovat doručování
|
restart: Restartovat doručování
|
||||||
stop: Zastavit doručování
|
stop: Zastavit doručování
|
||||||
unavailable: Nedostupná
|
unavailable: Nedostupná
|
||||||
delivery_available: Doručení je k dispozici
|
|
||||||
delivery_error_days: Dny chybného doručování
|
|
||||||
delivery_error_hint: Není-li možné doručení po dobu %{count} dnů, bude automaticky označen za nedoručitelný.
|
|
||||||
destroyed_msg: Data z %{domain} nyní čekají na smazání.
|
destroyed_msg: Data z %{domain} nyní čekají na smazání.
|
||||||
empty: Nebyly nalezeny žádné domény.
|
empty: Nebyly nalezeny žádné domény.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -524,18 +518,10 @@ cs:
|
||||||
other: "%{count} známých účtů"
|
other: "%{count} známých účtů"
|
||||||
moderation:
|
moderation:
|
||||||
all: Všechny
|
all: Všechny
|
||||||
limited: Omezený
|
|
||||||
title: Moderování
|
title: Moderování
|
||||||
private_comment: Soukromý komentář
|
|
||||||
public_comment: Veřejný komentář
|
|
||||||
purge: Odmazat
|
purge: Odmazat
|
||||||
purge_description_html: Pokud se domníváte, že tato doména je offline už navždy, můžete ze svého úložiště smazat všechny záznamy účtů a přidružená data z této domény. To může chvíli trvat.
|
purge_description_html: Pokud se domníváte, že tato doména je offline už navždy, můžete ze svého úložiště smazat všechny záznamy účtů a přidružená data z této domény. To může chvíli trvat.
|
||||||
title: Federace
|
title: Federace
|
||||||
total_blocked_by_us: Blokované námi
|
|
||||||
total_followed_by_them: Sledované jimi
|
|
||||||
total_followed_by_us: Sledované námi
|
|
||||||
total_reported: Hlášení o nich
|
|
||||||
total_storage: Mediální přílohy
|
|
||||||
totals_time_period_hint_html: Níže zobrazené součty zahrnují data za celou dobu.
|
totals_time_period_hint_html: Níže zobrazené součty zahrnují data za celou dobu.
|
||||||
unknown_instance: Na tomto serveru momentálně neexistuje žádný záznam o této doméně.
|
unknown_instance: Na tomto serveru momentálně neexistuje žádný záznam o této doméně.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -536,9 +536,6 @@ cy:
|
||||||
no_failures_recorded: Dim methiannau wedi'u cofnodi.
|
no_failures_recorded: Dim methiannau wedi'u cofnodi.
|
||||||
title: Argaeledd
|
title: Argaeledd
|
||||||
warning: Bu'r ymgais olaf i gysylltu â'r gweinydd hwn yn aflwyddiannus
|
warning: Bu'r ymgais olaf i gysylltu â'r gweinydd hwn yn aflwyddiannus
|
||||||
back_to_all: Popeth
|
|
||||||
back_to_limited: Cyfyngedig
|
|
||||||
back_to_warning: Rhybudd
|
|
||||||
by_domain: Parth
|
by_domain: Parth
|
||||||
confirm_purge: Ydych chi'n siŵr eich bod am ddileu data o'r parth hwn yn barhaol?
|
confirm_purge: Ydych chi'n siŵr eich bod am ddileu data o'r parth hwn yn barhaol?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -569,9 +566,6 @@ cy:
|
||||||
restart: Ailgychwyn anfon
|
restart: Ailgychwyn anfon
|
||||||
stop: Atal anfon
|
stop: Atal anfon
|
||||||
unavailable: Ddim ar gael
|
unavailable: Ddim ar gael
|
||||||
delivery_available: Mae'r anfon ar gael
|
|
||||||
delivery_error_days: Dyddiau gwall anfon
|
|
||||||
delivery_error_hint: Os nad yw'n bosibl anfon am %{count} o ddyddiau, caiff ei nodi'n awtomatig fel un nad oes modd ei anfon.
|
|
||||||
destroyed_msg: Mae data o %{domain} bellach mewn ciw i'w ddileu'n syth.
|
destroyed_msg: Mae data o %{domain} bellach mewn ciw i'w ddileu'n syth.
|
||||||
empty: Heb ganfod parthau.
|
empty: Heb ganfod parthau.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -583,18 +577,10 @@ cy:
|
||||||
zero: "%{count} o gyfrifon hysbys"
|
zero: "%{count} o gyfrifon hysbys"
|
||||||
moderation:
|
moderation:
|
||||||
all: Popeth
|
all: Popeth
|
||||||
limited: Cyfyngedig
|
|
||||||
title: Cymedroli
|
title: Cymedroli
|
||||||
private_comment: Sylw preifat
|
|
||||||
public_comment: Sylw cyhoeddus
|
|
||||||
purge: Clirio
|
purge: Clirio
|
||||||
purge_description_html: Os ydych chi'n credu bod y parth hwn all-lein am byth, gallwch ddileu'r holl gofnodion cyfrif a data cysylltiedig o'r parth hwn o'ch storfa. Gall hyn gymryd peth amser.
|
purge_description_html: Os ydych chi'n credu bod y parth hwn all-lein am byth, gallwch ddileu'r holl gofnodion cyfrif a data cysylltiedig o'r parth hwn o'ch storfa. Gall hyn gymryd peth amser.
|
||||||
title: Ffederasiwn
|
title: Ffederasiwn
|
||||||
total_blocked_by_us: Wedi'i flocio gennym ni
|
|
||||||
total_followed_by_them: Yn cael eu dilyn ganddyn nhw
|
|
||||||
total_followed_by_us: Yn cael eu dilyn gennym ni
|
|
||||||
total_reported: Adroddiadau amdanyn nhw
|
|
||||||
total_storage: Atodiadau cyfryngau
|
|
||||||
totals_time_period_hint_html: Mae'r cyfansymiau sy'n cael eu dangos isod yn cynnwys data am y cyfnod cyfan.
|
totals_time_period_hint_html: Mae'r cyfansymiau sy'n cael eu dangos isod yn cynnwys data am y cyfnod cyfan.
|
||||||
unknown_instance: Nid oes cofnod o'r parth hwn ar y gweinydd hwn ar hyn o bryd.
|
unknown_instance: Nid oes cofnod o'r parth hwn ar y gweinydd hwn ar hyn o bryd.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -496,9 +496,6 @@ da:
|
||||||
no_failures_recorded: Ingen fejl noteret.
|
no_failures_recorded: Ingen fejl noteret.
|
||||||
title: Tilgængelighed
|
title: Tilgængelighed
|
||||||
warning: Seneste forsøg på at oprette forbindelse til denne server mislykkedes
|
warning: Seneste forsøg på at oprette forbindelse til denne server mislykkedes
|
||||||
back_to_all: Alle
|
|
||||||
back_to_limited: Begrænset
|
|
||||||
back_to_warning: Advarsel
|
|
||||||
by_domain: Domæne
|
by_domain: Domæne
|
||||||
confirm_purge: Sikker på, at data skal slettes fra dette domæne permanent?
|
confirm_purge: Sikker på, at data skal slettes fra dette domæne permanent?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -529,9 +526,6 @@ da:
|
||||||
restart: Genstart levering
|
restart: Genstart levering
|
||||||
stop: Stop levering
|
stop: Stop levering
|
||||||
unavailable: Utilgængelig
|
unavailable: Utilgængelig
|
||||||
delivery_available: Levering er tilgængelig
|
|
||||||
delivery_error_days: Leveringsfejldage
|
|
||||||
delivery_error_hint: Er levering ikke mulig i %{count} dage, markeres den automatisk som ikke-leverbar.
|
|
||||||
destroyed_msg: Data fra %{domain} er nu sat i kø mhp. snarlig sletning.
|
destroyed_msg: Data fra %{domain} er nu sat i kø mhp. snarlig sletning.
|
||||||
empty: Ingen domæner fundet.
|
empty: Ingen domæner fundet.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -539,18 +533,10 @@ da:
|
||||||
other: "%{count} kendte konti"
|
other: "%{count} kendte konti"
|
||||||
moderation:
|
moderation:
|
||||||
all: Alle
|
all: Alle
|
||||||
limited: Begrænset
|
|
||||||
title: Moderation
|
title: Moderation
|
||||||
private_comment: Privat kommentar
|
|
||||||
public_comment: Offentlig kommentar
|
|
||||||
purge: Udrens
|
purge: Udrens
|
||||||
purge_description_html: Antages dette domæne at være offline permanent, kan alle kontooptegnelser og tilknyttede data herfra slettes fra ens lagerplads. Dette kan tage et stykke tid.
|
purge_description_html: Antages dette domæne at være offline permanent, kan alle kontooptegnelser og tilknyttede data herfra slettes fra ens lagerplads. Dette kan tage et stykke tid.
|
||||||
title: Federering
|
title: Federering
|
||||||
total_blocked_by_us: Blokeret af os
|
|
||||||
total_followed_by_them: Følges af dem
|
|
||||||
total_followed_by_us: Følges af os
|
|
||||||
total_reported: Anmeldelser om dem
|
|
||||||
total_storage: Medievedhæftninger
|
|
||||||
totals_time_period_hint_html: Nedenfor viste totaler omfatter data for alle tidsperioder.
|
totals_time_period_hint_html: Nedenfor viste totaler omfatter data for alle tidsperioder.
|
||||||
unknown_instance: Der er i pt. ingen post for dette domæne på denne server.
|
unknown_instance: Der er i pt. ingen post for dette domæne på denne server.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -496,9 +496,6 @@ de:
|
||||||
no_failures_recorded: Keine Fehler bei der Aufzeichnung.
|
no_failures_recorded: Keine Fehler bei der Aufzeichnung.
|
||||||
title: Verfügbarkeit
|
title: Verfügbarkeit
|
||||||
warning: Der letzte Versuch, sich mit diesem Server zu verbinden, war nicht erfolgreich
|
warning: Der letzte Versuch, sich mit diesem Server zu verbinden, war nicht erfolgreich
|
||||||
back_to_all: Alle
|
|
||||||
back_to_limited: Stummgeschaltet
|
|
||||||
back_to_warning: Warnung
|
|
||||||
by_domain: Domain
|
by_domain: Domain
|
||||||
confirm_purge: Möchtest du die Daten von dieser Domain wirklich für immer löschen?
|
confirm_purge: Möchtest du die Daten von dieser Domain wirklich für immer löschen?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -529,9 +526,6 @@ de:
|
||||||
restart: Zustellung neu starten
|
restart: Zustellung neu starten
|
||||||
stop: Zustellung beenden
|
stop: Zustellung beenden
|
||||||
unavailable: Nicht verfügbar
|
unavailable: Nicht verfügbar
|
||||||
delivery_available: Zustellung funktioniert
|
|
||||||
delivery_error_days: Tage der fehlerhaften Zustellung
|
|
||||||
delivery_error_hint: Wenn eine Zustellung %{count} Tage lang nicht möglich ist, wird sie automatisch als unzustellbar markiert.
|
|
||||||
destroyed_msg: Daten von %{domain} sind nun in der Warteschlange für die bevorstehende Löschung.
|
destroyed_msg: Daten von %{domain} sind nun in der Warteschlange für die bevorstehende Löschung.
|
||||||
empty: Keine Domains gefunden.
|
empty: Keine Domains gefunden.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -539,18 +533,10 @@ de:
|
||||||
other: "%{count} bekannte Konten"
|
other: "%{count} bekannte Konten"
|
||||||
moderation:
|
moderation:
|
||||||
all: Alle
|
all: Alle
|
||||||
limited: Eingeschränkt
|
|
||||||
title: Server
|
title: Server
|
||||||
private_comment: Privater Kommentar
|
|
||||||
public_comment: Öffentlicher Kommentar
|
|
||||||
purge: Säubern
|
purge: Säubern
|
||||||
purge_description_html: Wenn du glaubst, dass diese Domain endgültig offline ist, dann kannst du alle Kontodatensätze und zugehörigen Daten von diesem Server löschen. Das kann eine Weile dauern.
|
purge_description_html: Wenn du glaubst, dass diese Domain endgültig offline ist, dann kannst du alle Kontodatensätze und zugehörigen Daten von diesem Server löschen. Das kann eine Weile dauern.
|
||||||
title: Föderation
|
title: Föderation
|
||||||
total_blocked_by_us: Von uns gesperrt
|
|
||||||
total_followed_by_them: Gefolgt von denen
|
|
||||||
total_followed_by_us: Gefolgt von uns
|
|
||||||
total_reported: Beschwerden über sie
|
|
||||||
total_storage: Medienanhänge
|
|
||||||
totals_time_period_hint_html: Die unten angezeigten Summen enthalten Daten für alle Zeiten.
|
totals_time_period_hint_html: Die unten angezeigten Summen enthalten Daten für alle Zeiten.
|
||||||
unknown_instance: Auf diesem Server gibt es derzeit keinen Eintrag dieser Domain.
|
unknown_instance: Auf diesem Server gibt es derzeit keinen Eintrag dieser Domain.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -478,9 +478,6 @@ el:
|
||||||
no_failures_recorded: Καμία καταγεγραμμένη αποτυχία.
|
no_failures_recorded: Καμία καταγεγραμμένη αποτυχία.
|
||||||
title: Διαθεσιμότητα
|
title: Διαθεσιμότητα
|
||||||
warning: Η τελευταία προσπάθεια σύνδεσης σε αυτόν τον διακομιστή απέτυχε
|
warning: Η τελευταία προσπάθεια σύνδεσης σε αυτόν τον διακομιστή απέτυχε
|
||||||
back_to_all: Όλα
|
|
||||||
back_to_limited: Περιορισμένος
|
|
||||||
back_to_warning: Προειδοποίηση
|
|
||||||
by_domain: Τομέας
|
by_domain: Τομέας
|
||||||
confirm_purge: Είσαι βέβαιος ότι θες να διαγράψεις μόνιμα τα δεδομένα από αυτόν τον τομέα;
|
confirm_purge: Είσαι βέβαιος ότι θες να διαγράψεις μόνιμα τα δεδομένα από αυτόν τον τομέα;
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -511,9 +508,6 @@ el:
|
||||||
restart: Επανεκκίνηση παράδοσης
|
restart: Επανεκκίνηση παράδοσης
|
||||||
stop: Διακοπή παράδοσης
|
stop: Διακοπή παράδοσης
|
||||||
unavailable: Μη διαθέσιμο
|
unavailable: Μη διαθέσιμο
|
||||||
delivery_available: Διαθέσιμη παράδοση
|
|
||||||
delivery_error_days: Ημέρες σφάλματος παράδοσης
|
|
||||||
delivery_error_hint: Εάν η παράδοση δεν είναι δυνατή για %{count} ημέρες, θα επισημανθεί αυτόματα ως μη παραδόσιμη.
|
|
||||||
destroyed_msg: Τα δεδομένα από το %{domain} βρίσκονται σε αναμονή για επικείμενη διαγραφή.
|
destroyed_msg: Τα δεδομένα από το %{domain} βρίσκονται σε αναμονή για επικείμενη διαγραφή.
|
||||||
empty: Δεν βρέθηκαν τομείς.
|
empty: Δεν βρέθηκαν τομείς.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -521,18 +515,10 @@ el:
|
||||||
other: "%{count} γνωστοί λογαριασμοί"
|
other: "%{count} γνωστοί λογαριασμοί"
|
||||||
moderation:
|
moderation:
|
||||||
all: Όλα
|
all: Όλα
|
||||||
limited: Περιορισμένα
|
|
||||||
title: Συντονισμός
|
title: Συντονισμός
|
||||||
private_comment: Ιδιωτικό σχόλιο
|
|
||||||
public_comment: Δημόσιο σχόλιο
|
|
||||||
purge: Εκκαθάριση
|
purge: Εκκαθάριση
|
||||||
purge_description_html: Εάν πιστεύεις ότι αυτός ο τομέας είναι εκτός σύνδεσης μόνιμα, μπορείς να διαγράψεις όλες τις καταχωρήσεις λογαριασμών και τα σχετικά δεδομένα από αυτόν τον τομέα από τον αποθηκευτικό σου χώρο. Αυτό μπορεί να διαρκέσει λίγη ώρα.
|
purge_description_html: Εάν πιστεύεις ότι αυτός ο τομέας είναι εκτός σύνδεσης μόνιμα, μπορείς να διαγράψεις όλες τις καταχωρήσεις λογαριασμών και τα σχετικά δεδομένα από αυτόν τον τομέα από τον αποθηκευτικό σου χώρο. Αυτό μπορεί να διαρκέσει λίγη ώρα.
|
||||||
title: Συναλλαγές
|
title: Συναλλαγές
|
||||||
total_blocked_by_us: Αποκλεισμένοι από εμάς
|
|
||||||
total_followed_by_them: Ακολουθούνται από εκείνους
|
|
||||||
total_followed_by_us: Ακολουθούνται από εμάς
|
|
||||||
total_reported: Αναφορές προς εκείνους
|
|
||||||
total_storage: Συνημμένα πολυμέσα
|
|
||||||
totals_time_period_hint_html: Τα σύνολα που εμφανίζονται παρακάτω περιλαμβάνουν στοιχεία από την αρχή.
|
totals_time_period_hint_html: Τα σύνολα που εμφανίζονται παρακάτω περιλαμβάνουν στοιχεία από την αρχή.
|
||||||
unknown_instance: Προς το παρόν δεν υπάρχει καμία εγγραφή αυτού του τομέα σε αυτόν το διακομιστή.
|
unknown_instance: Προς το παρόν δεν υπάρχει καμία εγγραφή αυτού του τομέα σε αυτόν το διακομιστή.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -487,9 +487,6 @@ en-GB:
|
||||||
no_failures_recorded: No failures on record.
|
no_failures_recorded: No failures on record.
|
||||||
title: Availability
|
title: Availability
|
||||||
warning: The last attempt to connect to this server has been unsuccessful
|
warning: The last attempt to connect to this server has been unsuccessful
|
||||||
back_to_all: All
|
|
||||||
back_to_limited: Limited
|
|
||||||
back_to_warning: Warning
|
|
||||||
by_domain: Domain
|
by_domain: Domain
|
||||||
confirm_purge: Are you sure you want to permanently delete data from this domain?
|
confirm_purge: Are you sure you want to permanently delete data from this domain?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -520,9 +517,6 @@ en-GB:
|
||||||
restart: Restart delivery
|
restart: Restart delivery
|
||||||
stop: Stop delivery
|
stop: Stop delivery
|
||||||
unavailable: Unavailable
|
unavailable: Unavailable
|
||||||
delivery_available: Delivery is available
|
|
||||||
delivery_error_days: Delivery error days
|
|
||||||
delivery_error_hint: If delivery is not possible for %{count} days, it will be automatically marked as undeliverable.
|
|
||||||
destroyed_msg: Data from %{domain} is now queued for imminent deletion.
|
destroyed_msg: Data from %{domain} is now queued for imminent deletion.
|
||||||
empty: No domains found.
|
empty: No domains found.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -530,18 +524,10 @@ en-GB:
|
||||||
other: "%{count} known accounts"
|
other: "%{count} known accounts"
|
||||||
moderation:
|
moderation:
|
||||||
all: All
|
all: All
|
||||||
limited: Limited
|
|
||||||
title: Moderation
|
title: Moderation
|
||||||
private_comment: Private comment
|
|
||||||
public_comment: Public comment
|
|
||||||
purge: Purge
|
purge: Purge
|
||||||
purge_description_html: If you believe this domain is offline for good, you can delete all account records and associated data from this domain from your storage. This may take a while.
|
purge_description_html: If you believe this domain is offline for good, you can delete all account records and associated data from this domain from your storage. This may take a while.
|
||||||
title: Federation
|
title: Federation
|
||||||
total_blocked_by_us: Blocked by us
|
|
||||||
total_followed_by_them: Followed by them
|
|
||||||
total_followed_by_us: Followed by us
|
|
||||||
total_reported: Reports about them
|
|
||||||
total_storage: Media attachments
|
|
||||||
totals_time_period_hint_html: The totals displayed below include data for all time.
|
totals_time_period_hint_html: The totals displayed below include data for all time.
|
||||||
unknown_instance: There is currently no record of this domain on this server.
|
unknown_instance: There is currently no record of this domain on this server.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -496,9 +496,6 @@ en:
|
||||||
no_failures_recorded: No failures on record.
|
no_failures_recorded: No failures on record.
|
||||||
title: Availability
|
title: Availability
|
||||||
warning: The last attempt to connect to this server has been unsuccessful
|
warning: The last attempt to connect to this server has been unsuccessful
|
||||||
back_to_all: All
|
|
||||||
back_to_limited: Limited
|
|
||||||
back_to_warning: Warning
|
|
||||||
by_domain: Domain
|
by_domain: Domain
|
||||||
confirm_purge: Are you sure you want to permanently delete data from this domain?
|
confirm_purge: Are you sure you want to permanently delete data from this domain?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -524,14 +521,12 @@ en:
|
||||||
instance_statuses_measure: stored posts
|
instance_statuses_measure: stored posts
|
||||||
delivery:
|
delivery:
|
||||||
all: All
|
all: All
|
||||||
|
available: Available
|
||||||
clear: Clear delivery errors
|
clear: Clear delivery errors
|
||||||
failing: Failing
|
failing: Failing
|
||||||
restart: Restart delivery
|
restart: Restart delivery
|
||||||
stop: Stop delivery
|
stop: Stop delivery
|
||||||
unavailable: Unavailable
|
unavailable: Unavailable
|
||||||
delivery_available: Delivery is available
|
|
||||||
delivery_error_days: Delivery error days
|
|
||||||
delivery_error_hint: If delivery is not possible for %{count} days, it will be automatically marked as undeliverable.
|
|
||||||
destroyed_msg: Data from %{domain} is now queued for imminent deletion.
|
destroyed_msg: Data from %{domain} is now queued for imminent deletion.
|
||||||
empty: No domains found.
|
empty: No domains found.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -539,18 +534,14 @@ en:
|
||||||
other: "%{count} known accounts"
|
other: "%{count} known accounts"
|
||||||
moderation:
|
moderation:
|
||||||
all: All
|
all: All
|
||||||
|
allowed: Allowed
|
||||||
limited: Limited
|
limited: Limited
|
||||||
|
suspended: Suspended
|
||||||
title: Moderation
|
title: Moderation
|
||||||
private_comment: Private comment
|
unrestricted: Unrestricted
|
||||||
public_comment: Public comment
|
|
||||||
purge: Purge
|
purge: Purge
|
||||||
purge_description_html: If you believe this domain is offline for good, you can delete all account records and associated data from this domain from your storage. This may take a while.
|
purge_description_html: If you believe this domain is offline for good, you can delete all account records and associated data from this domain from your storage. This may take a while.
|
||||||
title: Federation
|
title: Federation
|
||||||
total_blocked_by_us: Blocked by us
|
|
||||||
total_followed_by_them: Followed by them
|
|
||||||
total_followed_by_us: Followed by us
|
|
||||||
total_reported: Reports about them
|
|
||||||
total_storage: Media attachments
|
|
||||||
totals_time_period_hint_html: The totals displayed below include data for all time.
|
totals_time_period_hint_html: The totals displayed below include data for all time.
|
||||||
unknown_instance: There is currently no record of this domain on this server.
|
unknown_instance: There is currently no record of this domain on this server.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -494,9 +494,6 @@ eo:
|
||||||
no_failures_recorded: Neniuj malsukcesoj en protokolo.
|
no_failures_recorded: Neniuj malsukcesoj en protokolo.
|
||||||
title: Disponebleco
|
title: Disponebleco
|
||||||
warning: La lasta provo por konektiĝi al ĉi tiu servilo estis malsukcesa
|
warning: La lasta provo por konektiĝi al ĉi tiu servilo estis malsukcesa
|
||||||
back_to_all: Ĉiuj
|
|
||||||
back_to_limited: Limigita
|
|
||||||
back_to_warning: Averta
|
|
||||||
by_domain: Domajno
|
by_domain: Domajno
|
||||||
confirm_purge: Ĉu vi certas ke vi volas porĉiame forigi datumojn de ĉi tiun domajno?
|
confirm_purge: Ĉu vi certas ke vi volas porĉiame forigi datumojn de ĉi tiun domajno?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -527,9 +524,6 @@ eo:
|
||||||
restart: Restarti liveradon
|
restart: Restarti liveradon
|
||||||
stop: Halti liveradon
|
stop: Halti liveradon
|
||||||
unavailable: Nedisponebla
|
unavailable: Nedisponebla
|
||||||
delivery_available: Liverado disponeblas
|
|
||||||
delivery_error_days: Sendoerardioj
|
|
||||||
delivery_error_hint: Se sendo ne estas ebla por %{count} dioj, ĝi automate markotas kiel nesendebla.
|
|
||||||
destroyed_msg: Datumo de %{domain} nun vicitas por baldaua forigo.
|
destroyed_msg: Datumo de %{domain} nun vicitas por baldaua forigo.
|
||||||
empty: Neniuj domajnoj trovitaj.
|
empty: Neniuj domajnoj trovitaj.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -537,18 +531,10 @@ eo:
|
||||||
other: "%{count} konataj kontoj"
|
other: "%{count} konataj kontoj"
|
||||||
moderation:
|
moderation:
|
||||||
all: Ĉiuj
|
all: Ĉiuj
|
||||||
limited: Limigita
|
|
||||||
title: Moderigado
|
title: Moderigado
|
||||||
private_comment: Privata komento
|
|
||||||
public_comment: Publika komento
|
|
||||||
purge: Purigu
|
purge: Purigu
|
||||||
purge_description_html: Se vi kredas ke ĉi tiuj domajno estas malreta, vi povas forigi ĉiujn kontorekordojn.
|
purge_description_html: Se vi kredas ke ĉi tiuj domajno estas malreta, vi povas forigi ĉiujn kontorekordojn.
|
||||||
title: Federacio
|
title: Federacio
|
||||||
total_blocked_by_us: Blokitaj de ni
|
|
||||||
total_followed_by_them: Sekvataj de ili
|
|
||||||
total_followed_by_us: Sekvataj de ni
|
|
||||||
total_reported: Signaloj pri ili
|
|
||||||
total_storage: Aŭdovidaj kunsendaĵoj
|
|
||||||
totals_time_period_hint_html: Sumo montritas malsupre inkluzivas datumo ekde komenco.
|
totals_time_period_hint_html: Sumo montritas malsupre inkluzivas datumo ekde komenco.
|
||||||
unknown_instance: Nuntempe ne ekzistas registro pri ĉi tiu domajno sur ĉi tiu servilo.
|
unknown_instance: Nuntempe ne ekzistas registro pri ĉi tiu domajno sur ĉi tiu servilo.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -496,9 +496,6 @@ es-AR:
|
||||||
no_failures_recorded: No hay fallos en el registro.
|
no_failures_recorded: No hay fallos en el registro.
|
||||||
title: Disponibilidad
|
title: Disponibilidad
|
||||||
warning: El último intento de conexión a este servidor no fue exitoso
|
warning: El último intento de conexión a este servidor no fue exitoso
|
||||||
back_to_all: Todos
|
|
||||||
back_to_limited: Limitados
|
|
||||||
back_to_warning: Advertencia
|
|
||||||
by_domain: Dominio
|
by_domain: Dominio
|
||||||
confirm_purge: "¿Estás seguro que querés eliminar permanentemente los datos de este dominio?"
|
confirm_purge: "¿Estás seguro que querés eliminar permanentemente los datos de este dominio?"
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -529,9 +526,6 @@ es-AR:
|
||||||
restart: Reiniciar entrega
|
restart: Reiniciar entrega
|
||||||
stop: Detener entrega
|
stop: Detener entrega
|
||||||
unavailable: No disponible
|
unavailable: No disponible
|
||||||
delivery_available: La entrega está disponible
|
|
||||||
delivery_error_days: Días de error de entrega
|
|
||||||
delivery_error_hint: Si la entrega no es posible durante %{count} días, se marcará automáticamente como no entregable.
|
|
||||||
destroyed_msg: Los datos de %{domain} están ahora en cola para su eliminación inminente.
|
destroyed_msg: Los datos de %{domain} están ahora en cola para su eliminación inminente.
|
||||||
empty: No se encontraron dominios.
|
empty: No se encontraron dominios.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -539,18 +533,10 @@ es-AR:
|
||||||
other: "%{count} cuentas conocidas"
|
other: "%{count} cuentas conocidas"
|
||||||
moderation:
|
moderation:
|
||||||
all: Todas
|
all: Todas
|
||||||
limited: Limitadas
|
|
||||||
title: Moderación
|
title: Moderación
|
||||||
private_comment: Comentario privado
|
|
||||||
public_comment: Comentario público
|
|
||||||
purge: Purgar
|
purge: Purgar
|
||||||
purge_description_html: Si creés que este dominio está fuera de línea para siempre, podés eliminar de tu almacenamiento todos los registros de cuentas y los datos asociados a este dominio. Esto puede llevar un tiempo.
|
purge_description_html: Si creés que este dominio está fuera de línea para siempre, podés eliminar de tu almacenamiento todos los registros de cuentas y los datos asociados a este dominio. Esto puede llevar un tiempo.
|
||||||
title: Federación
|
title: Federación
|
||||||
total_blocked_by_us: Bloqueada por nosotros
|
|
||||||
total_followed_by_them: Seguidas por ellos
|
|
||||||
total_followed_by_us: Seguidas por nosotros
|
|
||||||
total_reported: Denuncias sobre ellas
|
|
||||||
total_storage: Adjuntos
|
|
||||||
totals_time_period_hint_html: Los datos totales mostrados a continuación incluyen datos para todo el tiempo.
|
totals_time_period_hint_html: Los datos totales mostrados a continuación incluyen datos para todo el tiempo.
|
||||||
unknown_instance: Actualmente no hay ningún registro de este dominio en este servidor.
|
unknown_instance: Actualmente no hay ningún registro de este dominio en este servidor.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -496,9 +496,6 @@ es-MX:
|
||||||
no_failures_recorded: No hay fallos en el registro.
|
no_failures_recorded: No hay fallos en el registro.
|
||||||
title: Disponibilidad
|
title: Disponibilidad
|
||||||
warning: El último intento de conexión a este servidor no ha tenido éxito
|
warning: El último intento de conexión a este servidor no ha tenido éxito
|
||||||
back_to_all: Todos
|
|
||||||
back_to_limited: Limitados
|
|
||||||
back_to_warning: Advertencia
|
|
||||||
by_domain: Dominio
|
by_domain: Dominio
|
||||||
confirm_purge: "¿Seguro que quieres eliminar permanentemente los datos de este dominio?"
|
confirm_purge: "¿Seguro que quieres eliminar permanentemente los datos de este dominio?"
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -529,9 +526,6 @@ es-MX:
|
||||||
restart: Reiniciar entrega
|
restart: Reiniciar entrega
|
||||||
stop: Detener entrega
|
stop: Detener entrega
|
||||||
unavailable: No disponible
|
unavailable: No disponible
|
||||||
delivery_available: Entrega disponible
|
|
||||||
delivery_error_days: Días de error de entrega
|
|
||||||
delivery_error_hint: Si la entrega no es posible a lo largo de %{count} días, se marcará automáticamente como no entregable.
|
|
||||||
destroyed_msg: Los datos de %{domain} están ahora en cola para su inminente eliminación.
|
destroyed_msg: Los datos de %{domain} están ahora en cola para su inminente eliminación.
|
||||||
empty: No se encontraron dominios.
|
empty: No se encontraron dominios.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -539,18 +533,10 @@ es-MX:
|
||||||
other: "%{count} cuentas conocidas"
|
other: "%{count} cuentas conocidas"
|
||||||
moderation:
|
moderation:
|
||||||
all: Todos
|
all: Todos
|
||||||
limited: Limitado
|
|
||||||
title: Moderación
|
title: Moderación
|
||||||
private_comment: Comentario privado
|
|
||||||
public_comment: Comentario público
|
|
||||||
purge: Purgar
|
purge: Purgar
|
||||||
purge_description_html: Si crees que este dominio está desconectado, puedes borrar todos los registros de cuentas y los datos asociados de este dominio de tu almacenamiento. Esto puede llevar un tiempo.
|
purge_description_html: Si crees que este dominio está desconectado, puedes borrar todos los registros de cuentas y los datos asociados de este dominio de tu almacenamiento. Esto puede llevar un tiempo.
|
||||||
title: Instancias conocidas
|
title: Instancias conocidas
|
||||||
total_blocked_by_us: Bloqueado por nosotros
|
|
||||||
total_followed_by_them: Seguidos por ellos
|
|
||||||
total_followed_by_us: Seguido por nosotros
|
|
||||||
total_reported: Informes sobre ellas
|
|
||||||
total_storage: Archivos multimedia
|
|
||||||
totals_time_period_hint_html: Los totales mostrados a continuación incluyen datos para todo el tiempo.
|
totals_time_period_hint_html: Los totales mostrados a continuación incluyen datos para todo el tiempo.
|
||||||
unknown_instance: Actualmente no hay registros de este dominio en el servidor.
|
unknown_instance: Actualmente no hay registros de este dominio en el servidor.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -496,9 +496,6 @@ es:
|
||||||
no_failures_recorded: No hay fallos en el registro.
|
no_failures_recorded: No hay fallos en el registro.
|
||||||
title: Disponibilidad
|
title: Disponibilidad
|
||||||
warning: El último intento de conexión a este servidor no ha tenido éxito
|
warning: El último intento de conexión a este servidor no ha tenido éxito
|
||||||
back_to_all: Todos
|
|
||||||
back_to_limited: Limitados
|
|
||||||
back_to_warning: Advertencia
|
|
||||||
by_domain: Dominio
|
by_domain: Dominio
|
||||||
confirm_purge: "¿Seguro que quieres eliminar permanentemente los datos de este dominio?"
|
confirm_purge: "¿Seguro que quieres eliminar permanentemente los datos de este dominio?"
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -529,9 +526,6 @@ es:
|
||||||
restart: Reiniciar entrega
|
restart: Reiniciar entrega
|
||||||
stop: Detener entrega
|
stop: Detener entrega
|
||||||
unavailable: No disponible
|
unavailable: No disponible
|
||||||
delivery_available: Entrega disponible
|
|
||||||
delivery_error_days: Días de error de entrega
|
|
||||||
delivery_error_hint: Si la entrega no es posible a lo largo de %{count} días, se marcará automáticamente como no entregable.
|
|
||||||
destroyed_msg: Los datos de %{domain} están ahora en cola para su inminente eliminación.
|
destroyed_msg: Los datos de %{domain} están ahora en cola para su inminente eliminación.
|
||||||
empty: No se encontraron dominios.
|
empty: No se encontraron dominios.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -539,18 +533,10 @@ es:
|
||||||
other: "%{count} cuentas conocidas"
|
other: "%{count} cuentas conocidas"
|
||||||
moderation:
|
moderation:
|
||||||
all: Todos
|
all: Todos
|
||||||
limited: Limitado
|
|
||||||
title: Moderación
|
title: Moderación
|
||||||
private_comment: Comentario privado
|
|
||||||
public_comment: Comentario público
|
|
||||||
purge: Purgar
|
purge: Purgar
|
||||||
purge_description_html: Si crees que este dominio está desconectado, puedes borrar todos los registros de cuentas y los datos asociados de este dominio de tu almacenamiento. Esto puede llevar un tiempo.
|
purge_description_html: Si crees que este dominio está desconectado, puedes borrar todos los registros de cuentas y los datos asociados de este dominio de tu almacenamiento. Esto puede llevar un tiempo.
|
||||||
title: Instancias conocidas
|
title: Instancias conocidas
|
||||||
total_blocked_by_us: Bloqueado por nosotros
|
|
||||||
total_followed_by_them: Seguidos por ellos
|
|
||||||
total_followed_by_us: Seguido por nosotros
|
|
||||||
total_reported: Informes sobre ellas
|
|
||||||
total_storage: Archivos multimedia
|
|
||||||
totals_time_period_hint_html: Los totales mostrados a continuación incluyen datos para todo el tiempo.
|
totals_time_period_hint_html: Los totales mostrados a continuación incluyen datos para todo el tiempo.
|
||||||
unknown_instance: Actualmente no hay ningún registro de este dominio en este servidor.
|
unknown_instance: Actualmente no hay ningún registro de este dominio en este servidor.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -488,9 +488,6 @@ et:
|
||||||
no_failures_recorded: Nurjumisi pole.
|
no_failures_recorded: Nurjumisi pole.
|
||||||
title: Saadavus
|
title: Saadavus
|
||||||
warning: Viimane ühenduskatse selle serveriga ebaõnnestus
|
warning: Viimane ühenduskatse selle serveriga ebaõnnestus
|
||||||
back_to_all: Kõik
|
|
||||||
back_to_limited: Piiratud
|
|
||||||
back_to_warning: Hoiatus
|
|
||||||
by_domain: Domeen
|
by_domain: Domeen
|
||||||
confirm_purge: Kindel, et selle domeeni andmed kustutada jäädavalt?
|
confirm_purge: Kindel, et selle domeeni andmed kustutada jäädavalt?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -521,9 +518,6 @@ et:
|
||||||
restart: Taaskäivita edastus
|
restart: Taaskäivita edastus
|
||||||
stop: Peata edastus
|
stop: Peata edastus
|
||||||
unavailable: Pole saadaval
|
unavailable: Pole saadaval
|
||||||
delivery_available: Üleandmine on saadaval
|
|
||||||
delivery_error_days: Edastustõrgete päevad
|
|
||||||
delivery_error_hint: Kui edastus pole võimalik %{count} päeva, märgitakse automaatselt edastamatuks.
|
|
||||||
destroyed_msg: Domeeni %{domain} andmed on märgitud lõplikuks kustutamiseks.
|
destroyed_msg: Domeeni %{domain} andmed on märgitud lõplikuks kustutamiseks.
|
||||||
empty: Domeene ei leidu.
|
empty: Domeene ei leidu.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -531,18 +525,10 @@ et:
|
||||||
other: "%{count} teada kontot"
|
other: "%{count} teada kontot"
|
||||||
moderation:
|
moderation:
|
||||||
all: Kõik
|
all: Kõik
|
||||||
limited: Piiratud
|
|
||||||
title: Modereerimine
|
title: Modereerimine
|
||||||
private_comment: Privaatne kommentaar
|
|
||||||
public_comment: Avalik kommentaar
|
|
||||||
purge: Kustuta
|
purge: Kustuta
|
||||||
purge_description_html: Kui on arvata, et domeen on lõplikult kadunud, on võimalik kustutada kõik siin talletatud kontode kirjed ja seotud andmed. See võib aega võtta.
|
purge_description_html: Kui on arvata, et domeen on lõplikult kadunud, on võimalik kustutada kõik siin talletatud kontode kirjed ja seotud andmed. See võib aega võtta.
|
||||||
title: Födereerumine
|
title: Födereerumine
|
||||||
total_blocked_by_us: Meie poolt blokeeritud
|
|
||||||
total_followed_by_them: Nende poolt jälgitud
|
|
||||||
total_followed_by_us: Meie poolt jälgitud
|
|
||||||
total_reported: Nende kohta teateid
|
|
||||||
total_storage: Lisatud meedia
|
|
||||||
totals_time_period_hint_html: Allpool kuvatud summad sisaldavad andmed kogu aja kohta.
|
totals_time_period_hint_html: Allpool kuvatud summad sisaldavad andmed kogu aja kohta.
|
||||||
unknown_instance: Hetkel pole selle domeeni jaoks siin serveris kirjet.
|
unknown_instance: Hetkel pole selle domeeni jaoks siin serveris kirjet.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -455,9 +455,6 @@ eu:
|
||||||
no_failures_recorded: Ez dago hutsegiterik erregistroan.
|
no_failures_recorded: Ez dago hutsegiterik erregistroan.
|
||||||
title: Egoera
|
title: Egoera
|
||||||
warning: Zerbitzari honetara konektatzeko azken saiakerak huts egin du
|
warning: Zerbitzari honetara konektatzeko azken saiakerak huts egin du
|
||||||
back_to_all: Guztiak
|
|
||||||
back_to_limited: Mugatua
|
|
||||||
back_to_warning: Abisua
|
|
||||||
by_domain: Domeinua
|
by_domain: Domeinua
|
||||||
confirm_purge: Ziur domeinu honen datuak behin betiko ezabatu nahi dituzula?
|
confirm_purge: Ziur domeinu honen datuak behin betiko ezabatu nahi dituzula?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -488,9 +485,6 @@ eu:
|
||||||
restart: Berrabiarazi banaketa
|
restart: Berrabiarazi banaketa
|
||||||
stop: Gelditu banaketa
|
stop: Gelditu banaketa
|
||||||
unavailable: Eskuraezina
|
unavailable: Eskuraezina
|
||||||
delivery_available: Bidalketa eskuragarri dago
|
|
||||||
delivery_error_days: Banaketa errore egunak
|
|
||||||
delivery_error_hint: Banaketa ezin bada %{count} egunean egin, banaezin bezala markatuko da automatikoki.
|
|
||||||
destroyed_msg: "%{domain} domeinuko datuak berehala ezabatzeko ilaran daude orain."
|
destroyed_msg: "%{domain} domeinuko datuak berehala ezabatzeko ilaran daude orain."
|
||||||
empty: Ez da domeinurik aurkitu.
|
empty: Ez da domeinurik aurkitu.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -498,18 +492,10 @@ eu:
|
||||||
other: "%{count} kontu ezagun"
|
other: "%{count} kontu ezagun"
|
||||||
moderation:
|
moderation:
|
||||||
all: Denak
|
all: Denak
|
||||||
limited: Mugatua
|
|
||||||
title: Moderazioa
|
title: Moderazioa
|
||||||
private_comment: Iruzkin pribatua
|
|
||||||
public_comment: Iruzkin publikoa
|
|
||||||
purge: Ezabatu betiko
|
purge: Ezabatu betiko
|
||||||
purge_description_html: Domeinu hau behin betiko lineaz kanpo dagoela uste baduzu, domeinuko kontu guztien erregistroak eta erlazionatutako datuak ezabatu ditzakezu biltegitik. Honek luze jo dezake.
|
purge_description_html: Domeinu hau behin betiko lineaz kanpo dagoela uste baduzu, domeinuko kontu guztien erregistroak eta erlazionatutako datuak ezabatu ditzakezu biltegitik. Honek luze jo dezake.
|
||||||
title: Federazioa
|
title: Federazioa
|
||||||
total_blocked_by_us: Guk blokeatuta
|
|
||||||
total_followed_by_them: Haiek jarraitua
|
|
||||||
total_followed_by_us: Guk jarraitua
|
|
||||||
total_reported: Heiei buruzko txostenak
|
|
||||||
total_storage: Multimedia eranskinak
|
|
||||||
totals_time_period_hint_html: Behean bistaratutako guztizkoek datu guztiak hartzen dituzte barne.
|
totals_time_period_hint_html: Behean bistaratutako guztizkoek datu guztiak hartzen dituzte barne.
|
||||||
unknown_instance: Ez dago domeinu honen erregistrorik zerbitzarian orain.
|
unknown_instance: Ez dago domeinu honen erregistrorik zerbitzarian orain.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -469,9 +469,6 @@ fa:
|
||||||
failure_threshold_reached: در %{date} به آستانهٔ شکست رسید.
|
failure_threshold_reached: در %{date} به آستانهٔ شکست رسید.
|
||||||
no_failures_recorded: هیچ شکستی در سابقه نیست.
|
no_failures_recorded: هیچ شکستی در سابقه نیست.
|
||||||
title: موجود بودن
|
title: موجود بودن
|
||||||
back_to_all: همه
|
|
||||||
back_to_limited: محدود
|
|
||||||
back_to_warning: هشدار
|
|
||||||
by_domain: دامین
|
by_domain: دامین
|
||||||
confirm_purge: آیا مطمئن هستید میخواهید داده را از این دامنه برای همیشه پاک کنید؟
|
confirm_purge: آیا مطمئن هستید میخواهید داده را از این دامنه برای همیشه پاک کنید؟
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -500,9 +497,6 @@ fa:
|
||||||
restart: بازراهاندازی تحویل محتوا
|
restart: بازراهاندازی تحویل محتوا
|
||||||
stop: متوقفکردن تحویل محتوا
|
stop: متوقفکردن تحویل محتوا
|
||||||
unavailable: ناموجود
|
unavailable: ناموجود
|
||||||
delivery_available: پیام آماده است
|
|
||||||
delivery_error_days: زورهای خطای تحویل محتوا
|
|
||||||
delivery_error_hint: اگر تحویل محتوا به مدت %{count} روز ممکن نباشد، به طور خودکار به عنوان تحویلناشونده علامتگذاری خواهد شد.
|
|
||||||
destroyed_msg: هم اکنون داده دامنه %{domain} در صف حذف حتمی است.
|
destroyed_msg: هم اکنون داده دامنه %{domain} در صف حذف حتمی است.
|
||||||
empty: هیج دامنهای پیدا نشد.
|
empty: هیج دامنهای پیدا نشد.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -510,17 +504,9 @@ fa:
|
||||||
other: "%{count} حساب شناخته"
|
other: "%{count} حساب شناخته"
|
||||||
moderation:
|
moderation:
|
||||||
all: همه
|
all: همه
|
||||||
limited: محدود
|
|
||||||
title: مدیریت
|
title: مدیریت
|
||||||
private_comment: یادداشت خصوصی
|
|
||||||
public_comment: یادداشت عمومی
|
|
||||||
purge: پاکسازی
|
purge: پاکسازی
|
||||||
title: ارتباط همگانی
|
title: ارتباط همگانی
|
||||||
total_blocked_by_us: مسدودشده از طرف ما
|
|
||||||
total_followed_by_them: ما را پی میگیرند
|
|
||||||
total_followed_by_us: ما پیگیرشان هستیم
|
|
||||||
total_reported: گزارشها دربارهشان
|
|
||||||
total_storage: عکسها و ویدیوها
|
|
||||||
invites:
|
invites:
|
||||||
deactivate_all: غیرفعالکردن همه
|
deactivate_all: غیرفعالکردن همه
|
||||||
filter:
|
filter:
|
||||||
|
|
|
@ -496,9 +496,6 @@ fi:
|
||||||
no_failures_recorded: Ei kirjattuja epäonnistumisia.
|
no_failures_recorded: Ei kirjattuja epäonnistumisia.
|
||||||
title: Saatavuus
|
title: Saatavuus
|
||||||
warning: Viimeisin yritys yhdistää tähän palvelimeen epäonnistui
|
warning: Viimeisin yritys yhdistää tähän palvelimeen epäonnistui
|
||||||
back_to_all: Kaikki
|
|
||||||
back_to_limited: Rajoitettu
|
|
||||||
back_to_warning: Varoitus
|
|
||||||
by_domain: Verkkotunnus
|
by_domain: Verkkotunnus
|
||||||
confirm_purge: Haluatko varmasti poistaa pysyvästi tämän verkkotunnuksen tiedot?
|
confirm_purge: Haluatko varmasti poistaa pysyvästi tämän verkkotunnuksen tiedot?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -529,9 +526,6 @@ fi:
|
||||||
restart: Käynnistä toimitus uudelleen
|
restart: Käynnistä toimitus uudelleen
|
||||||
stop: Lopeta toimitus
|
stop: Lopeta toimitus
|
||||||
unavailable: Ei saatavilla
|
unavailable: Ei saatavilla
|
||||||
delivery_available: Toimitus on saatavilla
|
|
||||||
delivery_error_days: Toimitusvirheen päivät
|
|
||||||
delivery_error_hint: Jos toimitus ei ole mahdollista %{count} päivään, se merkitään automaattisesti toimituskelvottomaksi.
|
|
||||||
destroyed_msg: Palvelimelta %{domain} peräisin olevat tiedot ovat nyt jonossa poistattaviksi.
|
destroyed_msg: Palvelimelta %{domain} peräisin olevat tiedot ovat nyt jonossa poistattaviksi.
|
||||||
empty: Verkkotunnuksia ei löytynyt.
|
empty: Verkkotunnuksia ei löytynyt.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -539,18 +533,10 @@ fi:
|
||||||
other: "%{count} tunnettua tiliä"
|
other: "%{count} tunnettua tiliä"
|
||||||
moderation:
|
moderation:
|
||||||
all: Kaikki
|
all: Kaikki
|
||||||
limited: Rajoitettu
|
|
||||||
title: Moderointi
|
title: Moderointi
|
||||||
private_comment: Yksityinen kommentti
|
|
||||||
public_comment: Julkinen kommentti
|
|
||||||
purge: Tyhjennä
|
purge: Tyhjennä
|
||||||
purge_description_html: Jos uskot, että tämä verkkotunnus on yhteydettömässä tilassa tarkoituksella, voit poistaa kaikki verkkotunnuksen tilitietueet ja niihin liittyvät tiedot tallennustilastasi. Tämä voi kestää jonkin aikaa.
|
purge_description_html: Jos uskot, että tämä verkkotunnus on yhteydettömässä tilassa tarkoituksella, voit poistaa kaikki verkkotunnuksen tilitietueet ja niihin liittyvät tiedot tallennustilastasi. Tämä voi kestää jonkin aikaa.
|
||||||
title: Federointi
|
title: Federointi
|
||||||
total_blocked_by_us: Estämämme
|
|
||||||
total_followed_by_them: Heidän seuraama
|
|
||||||
total_followed_by_us: Meidän seuraama
|
|
||||||
total_reported: Heitä koskevat raportit
|
|
||||||
total_storage: Medialiitteet
|
|
||||||
totals_time_period_hint_html: Seuraavassa näkyvät määrät sisältävät tiedot koko ajalta.
|
totals_time_period_hint_html: Seuraavassa näkyvät määrät sisältävät tiedot koko ajalta.
|
||||||
unknown_instance: Tällä palvelimella ei tällä hetkellä ole tähän verkkotunnukseen liittyviä tietueita.
|
unknown_instance: Tällä palvelimella ei tällä hetkellä ole tähän verkkotunnukseen liittyviä tietueita.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -496,9 +496,6 @@ fo:
|
||||||
no_failures_recorded: Eingi brek skrásett.
|
no_failures_recorded: Eingi brek skrásett.
|
||||||
title: Tøki
|
title: Tøki
|
||||||
warning: Seinasta royndin at fáa samband við ambætaran eydnaðist ikki
|
warning: Seinasta royndin at fáa samband við ambætaran eydnaðist ikki
|
||||||
back_to_all: Øll
|
|
||||||
back_to_limited: Avmarkaði
|
|
||||||
back_to_warning: Ávaring
|
|
||||||
by_domain: Økisnavn
|
by_domain: Økisnavn
|
||||||
confirm_purge: Er tað tilætlað, at dátur frá hesum navnaøkinum skulu strikast med alla?
|
confirm_purge: Er tað tilætlað, at dátur frá hesum navnaøkinum skulu strikast med alla?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -529,9 +526,6 @@ fo:
|
||||||
restart: Byrja veiting av nýggjum
|
restart: Byrja veiting av nýggjum
|
||||||
stop: Støðga veiting
|
stop: Støðga veiting
|
||||||
unavailable: Ikki tøkt
|
unavailable: Ikki tøkt
|
||||||
delivery_available: Levering er møgulig
|
|
||||||
delivery_error_days: Dagar við veitingarvillum
|
|
||||||
delivery_error_hint: Er veiting ikki møgulig í %{count} dagar, so verða tey sjálvvirkandi merkt sum ikki møgulig at veita.
|
|
||||||
destroyed_msg: Dátur frá %{domain} eru nú settar í bíðirøð til beinan vegin at blíva strikaðar.
|
destroyed_msg: Dátur frá %{domain} eru nú settar í bíðirøð til beinan vegin at blíva strikaðar.
|
||||||
empty: Eingi navnaøki funnin.
|
empty: Eingi navnaøki funnin.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -539,18 +533,10 @@ fo:
|
||||||
other: "%{count} kendar kontur"
|
other: "%{count} kendar kontur"
|
||||||
moderation:
|
moderation:
|
||||||
all: Allir
|
all: Allir
|
||||||
limited: Avmarkaðir
|
|
||||||
title: Umsjón
|
title: Umsjón
|
||||||
private_comment: Privat viðmerking
|
|
||||||
public_comment: Sjónlig viðmerking
|
|
||||||
purge: Reinsa
|
purge: Reinsa
|
||||||
purge_description_html: Heldur tú, at hetta navnaøkið varandi hevur mist sambandið við netið, so kanst tú strika allar kontupostar og tilknýttar dátur frá hesum navnaøkinum frá tíni goymslu. Tað kann taka eina løtu.
|
purge_description_html: Heldur tú, at hetta navnaøkið varandi hevur mist sambandið við netið, so kanst tú strika allar kontupostar og tilknýttar dátur frá hesum navnaøkinum frá tíni goymslu. Tað kann taka eina løtu.
|
||||||
title: Sameining
|
title: Sameining
|
||||||
total_blocked_by_us: Blokerað av okkum
|
|
||||||
total_followed_by_them: Fylgt av teimum
|
|
||||||
total_followed_by_us: Fylgt av okkum
|
|
||||||
total_reported: Meldingar um tey
|
|
||||||
total_storage: Viðheftir miðlar
|
|
||||||
totals_time_period_hint_html: Við í samanteljingunum niðanfyri eru dátur frá byrjan av.
|
totals_time_period_hint_html: Við í samanteljingunum niðanfyri eru dátur frá byrjan av.
|
||||||
unknown_instance: Í løtuni er hetta navnaøkið ikki skrásett á hesum ambætaranum.
|
unknown_instance: Í løtuni er hetta navnaøkið ikki skrásett á hesum ambætaranum.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -491,9 +491,6 @@ fr-CA:
|
||||||
no_failures_recorded: Pas d'échec enregistré.
|
no_failures_recorded: Pas d'échec enregistré.
|
||||||
title: Disponibilité
|
title: Disponibilité
|
||||||
warning: La dernière tentative de connexion à ce serveur a échoué
|
warning: La dernière tentative de connexion à ce serveur a échoué
|
||||||
back_to_all: Tout
|
|
||||||
back_to_limited: Limité
|
|
||||||
back_to_warning: Avertissement
|
|
||||||
by_domain: Domaine
|
by_domain: Domaine
|
||||||
confirm_purge: Êtes-vous sûr de vouloir supprimer définitivement les données de ce domaine ?
|
confirm_purge: Êtes-vous sûr de vouloir supprimer définitivement les données de ce domaine ?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -524,9 +521,6 @@ fr-CA:
|
||||||
restart: Redémarrer la livraison
|
restart: Redémarrer la livraison
|
||||||
stop: Arrêter la livraison
|
stop: Arrêter la livraison
|
||||||
unavailable: Indisponible
|
unavailable: Indisponible
|
||||||
delivery_available: Livraison disponible
|
|
||||||
delivery_error_days: Jours d'erreur de livraison
|
|
||||||
delivery_error_hint: Si la livraison n'est pas possible pendant %{count} jours, elle sera automatiquement marquée comme non livrable.
|
|
||||||
destroyed_msg: Les données de %{domain} sont maintenant en file d'attente pour une suppression imminente.
|
destroyed_msg: Les données de %{domain} sont maintenant en file d'attente pour une suppression imminente.
|
||||||
empty: Aucun domaine trouvé.
|
empty: Aucun domaine trouvé.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -534,18 +528,10 @@ fr-CA:
|
||||||
other: "%{count} comptes connus"
|
other: "%{count} comptes connus"
|
||||||
moderation:
|
moderation:
|
||||||
all: Tout
|
all: Tout
|
||||||
limited: Limité
|
|
||||||
title: Modération
|
title: Modération
|
||||||
private_comment: Commentaire privé
|
|
||||||
public_comment: Commentaire public
|
|
||||||
purge: Purge
|
purge: Purge
|
||||||
purge_description_html: Si vous pensez que ce domaine est définitivement hors service, vous pouvez supprimer de votre espace de stockage toutes les traces des comptes de ce domaine et les données associées. Cela peut prendre du temps.
|
purge_description_html: Si vous pensez que ce domaine est définitivement hors service, vous pouvez supprimer de votre espace de stockage toutes les traces des comptes de ce domaine et les données associées. Cela peut prendre du temps.
|
||||||
title: Fédération
|
title: Fédération
|
||||||
total_blocked_by_us: Bloqués par nous
|
|
||||||
total_followed_by_them: Suivi par eux
|
|
||||||
total_followed_by_us: Suivi par nous
|
|
||||||
total_reported: Signalements à leur sujet
|
|
||||||
total_storage: Attachements de média
|
|
||||||
totals_time_period_hint_html: Les totaux affichés ci-dessous incluent des données sans limite de temps.
|
totals_time_period_hint_html: Les totaux affichés ci-dessous incluent des données sans limite de temps.
|
||||||
unknown_instance: Il n’y a actuellement aucune trace de ce domaine sur ce serveur.
|
unknown_instance: Il n’y a actuellement aucune trace de ce domaine sur ce serveur.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -491,9 +491,6 @@ fr:
|
||||||
no_failures_recorded: Pas d'échec enregistré.
|
no_failures_recorded: Pas d'échec enregistré.
|
||||||
title: Disponibilité
|
title: Disponibilité
|
||||||
warning: La dernière tentative de connexion à ce serveur a échoué
|
warning: La dernière tentative de connexion à ce serveur a échoué
|
||||||
back_to_all: Tout
|
|
||||||
back_to_limited: Limité
|
|
||||||
back_to_warning: Avertissement
|
|
||||||
by_domain: Domaine
|
by_domain: Domaine
|
||||||
confirm_purge: Êtes-vous sûr de vouloir supprimer définitivement les données de ce domaine ?
|
confirm_purge: Êtes-vous sûr de vouloir supprimer définitivement les données de ce domaine ?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -524,9 +521,6 @@ fr:
|
||||||
restart: Redémarrer la livraison
|
restart: Redémarrer la livraison
|
||||||
stop: Arrêter la livraison
|
stop: Arrêter la livraison
|
||||||
unavailable: Indisponible
|
unavailable: Indisponible
|
||||||
delivery_available: Livraison disponible
|
|
||||||
delivery_error_days: Jours d'erreur de livraison
|
|
||||||
delivery_error_hint: Si la livraison n'est pas possible pendant %{count} jours, elle sera automatiquement marquée comme non livrable.
|
|
||||||
destroyed_msg: Les données de %{domain} sont maintenant en file d'attente pour une suppression imminente.
|
destroyed_msg: Les données de %{domain} sont maintenant en file d'attente pour une suppression imminente.
|
||||||
empty: Aucun domaine trouvé.
|
empty: Aucun domaine trouvé.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -534,18 +528,10 @@ fr:
|
||||||
other: "%{count} comptes connus"
|
other: "%{count} comptes connus"
|
||||||
moderation:
|
moderation:
|
||||||
all: Tout
|
all: Tout
|
||||||
limited: Limité
|
|
||||||
title: Modération
|
title: Modération
|
||||||
private_comment: Commentaire privé
|
|
||||||
public_comment: Commentaire public
|
|
||||||
purge: Purge
|
purge: Purge
|
||||||
purge_description_html: Si vous pensez que ce domaine est définitivement hors service, vous pouvez supprimer de votre espace de stockage toutes les traces des comptes de ce domaine et les données associées. Cela peut prendre du temps.
|
purge_description_html: Si vous pensez que ce domaine est définitivement hors service, vous pouvez supprimer de votre espace de stockage toutes les traces des comptes de ce domaine et les données associées. Cela peut prendre du temps.
|
||||||
title: Fédération
|
title: Fédération
|
||||||
total_blocked_by_us: Bloqués par nous
|
|
||||||
total_followed_by_them: Suivi par eux
|
|
||||||
total_followed_by_us: Suivi par nous
|
|
||||||
total_reported: Signalements à leur sujet
|
|
||||||
total_storage: Attachements de média
|
|
||||||
totals_time_period_hint_html: Les totaux affichés ci-dessous incluent des données sans limite de temps.
|
totals_time_period_hint_html: Les totaux affichés ci-dessous incluent des données sans limite de temps.
|
||||||
unknown_instance: Il n’y a actuellement aucune trace de ce domaine sur ce serveur.
|
unknown_instance: Il n’y a actuellement aucune trace de ce domaine sur ce serveur.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -488,9 +488,6 @@ fy:
|
||||||
no_failures_recorded: Gjin steuringen bekend.
|
no_failures_recorded: Gjin steuringen bekend.
|
||||||
title: Beskikberheid
|
title: Beskikberheid
|
||||||
warning: It lêste besykjen om mei dizze server te ferbinen wie sûnder sukses
|
warning: It lêste besykjen om mei dizze server te ferbinen wie sûnder sukses
|
||||||
back_to_all: Alle
|
|
||||||
back_to_limited: Beheind
|
|
||||||
back_to_warning: Warskôging
|
|
||||||
by_domain: Domein
|
by_domain: Domein
|
||||||
confirm_purge: Wolle jo werklik alle gegevens fan dit domein foar ivich fuortsmite?
|
confirm_purge: Wolle jo werklik alle gegevens fan dit domein foar ivich fuortsmite?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -521,9 +518,6 @@ fy:
|
||||||
restart: Oflevering opnij starte
|
restart: Oflevering opnij starte
|
||||||
stop: Oflevering beëinigje
|
stop: Oflevering beëinigje
|
||||||
unavailable: Net beskikber
|
unavailable: Net beskikber
|
||||||
delivery_available: Ofleverjen is mooglik
|
|
||||||
delivery_error_days: Dagen mei ôfleverflaters
|
|
||||||
delivery_error_hint: Wannear’t de besoarging foar %{count} dagen net mooglik is, wurdt de besoarging automatysk as net beskikber markearre.
|
|
||||||
destroyed_msg: Gegevens fan %{domain} stean no yn de wachtrige foar oansteande ferwidering.
|
destroyed_msg: Gegevens fan %{domain} stean no yn de wachtrige foar oansteande ferwidering.
|
||||||
empty: Gjin domeinen fûn.
|
empty: Gjin domeinen fûn.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -531,18 +525,10 @@ fy:
|
||||||
other: "%{count} bekende accounts"
|
other: "%{count} bekende accounts"
|
||||||
moderation:
|
moderation:
|
||||||
all: Alle
|
all: Alle
|
||||||
limited: Beheind
|
|
||||||
title: Moderaasje
|
title: Moderaasje
|
||||||
private_comment: Priveeopmerking
|
|
||||||
public_comment: Iepenbiere opmerking
|
|
||||||
purge: Folslein fuortsmite
|
purge: Folslein fuortsmite
|
||||||
purge_description_html: As jo tinke dat dit domein definityf offline is, kinne jo alle accounts en byhearrende gegevens fan dit domein fuortsmite. Dit kin efkes duorje.
|
purge_description_html: As jo tinke dat dit domein definityf offline is, kinne jo alle accounts en byhearrende gegevens fan dit domein fuortsmite. Dit kin efkes duorje.
|
||||||
title: Federaasje
|
title: Federaasje
|
||||||
total_blocked_by_us: Troch ús blokkearre
|
|
||||||
total_followed_by_them: Troch harren folge
|
|
||||||
total_followed_by_us: Troch ús folge
|
|
||||||
total_reported: Rapportaazjes oer harren
|
|
||||||
total_storage: Mediabylagen
|
|
||||||
totals_time_period_hint_html: De hjirûnder toande totalen befetsje gegevens sûnt it begjin.
|
totals_time_period_hint_html: De hjirûnder toande totalen befetsje gegevens sûnt it begjin.
|
||||||
unknown_instance: Der binne op dit stuit gjin gegevens fan dit domein op dizze server.
|
unknown_instance: Der binne op dit stuit gjin gegevens fan dit domein op dizze server.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -526,9 +526,6 @@ ga:
|
||||||
no_failures_recorded: Uimh teipeanna ar taifead.
|
no_failures_recorded: Uimh teipeanna ar taifead.
|
||||||
title: Infhaighteacht
|
title: Infhaighteacht
|
||||||
warning: Níor éirigh leis an iarracht dheireanach chun ceangal leis an bhfreastalaí seo
|
warning: Níor éirigh leis an iarracht dheireanach chun ceangal leis an bhfreastalaí seo
|
||||||
back_to_all: Uile
|
|
||||||
back_to_limited: Teoranta
|
|
||||||
back_to_warning: Rabhadh
|
|
||||||
by_domain: Fearann
|
by_domain: Fearann
|
||||||
confirm_purge: An bhfuil tú cinnte gur mian leat sonraí a scriosadh go buan ón bhfearann seo?
|
confirm_purge: An bhfuil tú cinnte gur mian leat sonraí a scriosadh go buan ón bhfearann seo?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -559,9 +556,6 @@ ga:
|
||||||
restart: Seachadadh a atosú
|
restart: Seachadadh a atosú
|
||||||
stop: Stad seachadadh
|
stop: Stad seachadadh
|
||||||
unavailable: Níl ar fáil
|
unavailable: Níl ar fáil
|
||||||
delivery_available: Tá seachadadh ar fáil
|
|
||||||
delivery_error_days: Laethanta earráide seachadta
|
|
||||||
delivery_error_hint: Mura féidir seachadadh a dhéanamh ar feadh %{count} lá, marcálfar go huathoibríoch é mar dosheachadta.
|
|
||||||
destroyed_msg: Tá sonraí ó %{domain} ciúáilte anois le haghaidh scriosadh gan mhoill.
|
destroyed_msg: Tá sonraí ó %{domain} ciúáilte anois le haghaidh scriosadh gan mhoill.
|
||||||
empty: Níor aimsíodh aon fhearainn.
|
empty: Níor aimsíodh aon fhearainn.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -572,18 +566,10 @@ ga:
|
||||||
two: "%{count} cuntas aitheanta"
|
two: "%{count} cuntas aitheanta"
|
||||||
moderation:
|
moderation:
|
||||||
all: Uile
|
all: Uile
|
||||||
limited: Teoranta
|
|
||||||
title: Measarthacht
|
title: Measarthacht
|
||||||
private_comment: Trácht príobháideach
|
|
||||||
public_comment: Trácht poiblí
|
|
||||||
purge: Glan
|
purge: Glan
|
||||||
purge_description_html: Má chreideann tú go bhfuil an fearann seo as líne ar feadh tamaill mhaith, is féidir leat gach taifead cuntais agus sonraí gaolmhara ón bhfearann seo a scriosadh ó do stór. Seans go dtógfaidh sé seo tamall.
|
purge_description_html: Má chreideann tú go bhfuil an fearann seo as líne ar feadh tamaill mhaith, is féidir leat gach taifead cuntais agus sonraí gaolmhara ón bhfearann seo a scriosadh ó do stór. Seans go dtógfaidh sé seo tamall.
|
||||||
title: Cónascadh
|
title: Cónascadh
|
||||||
total_blocked_by_us: Blocáilte ag dúinn
|
|
||||||
total_followed_by_them: Ina dhiaidh sin iad
|
|
||||||
total_followed_by_us: Á leanúint againn
|
|
||||||
total_reported: Tuarascálacha mar gheall orthu
|
|
||||||
total_storage: Ceangaltáin meán
|
|
||||||
totals_time_period_hint_html: Áiríonn na hiomláin a thaispeántar thíos sonraí don am ar fad.
|
totals_time_period_hint_html: Áiríonn na hiomláin a thaispeántar thíos sonraí don am ar fad.
|
||||||
unknown_instance: Níl aon taifead den fhearann seo ar an bhfreastalaí seo faoi láthair.
|
unknown_instance: Níl aon taifead den fhearann seo ar an bhfreastalaí seo faoi láthair.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -516,9 +516,6 @@ gd:
|
||||||
no_failures_recorded: Cha deach fàilligeadh sam bith a chlàradh.
|
no_failures_recorded: Cha deach fàilligeadh sam bith a chlàradh.
|
||||||
title: Faotainneachd
|
title: Faotainneachd
|
||||||
warning: Cha deach leis an oidhirp mu dheireadh air ceangal ris an fhrithealaiche seo
|
warning: Cha deach leis an oidhirp mu dheireadh air ceangal ris an fhrithealaiche seo
|
||||||
back_to_all: Na h-uile
|
|
||||||
back_to_limited: Cuingichte
|
|
||||||
back_to_warning: Rabhadh
|
|
||||||
by_domain: Àrainn
|
by_domain: Àrainn
|
||||||
confirm_purge: A bheil thu cinnteach gu bheil thu airson an dàta on àrainn seo a sguabadh às gu buan?
|
confirm_purge: A bheil thu cinnteach gu bheil thu airson an dàta on àrainn seo a sguabadh às gu buan?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -549,9 +546,6 @@ gd:
|
||||||
restart: Ath-thòisich air an lìbhrigeadh
|
restart: Ath-thòisich air an lìbhrigeadh
|
||||||
stop: Cuir stad air an lìbhrigeadh
|
stop: Cuir stad air an lìbhrigeadh
|
||||||
unavailable: Chan eil e ri làimh
|
unavailable: Chan eil e ri làimh
|
||||||
delivery_available: Tha lìbhrigeadh ri fhaighinn
|
|
||||||
delivery_error_days: Làithean le mearachd lìbhrigidh
|
|
||||||
delivery_error_hint: Mura gabh a lìbhrigeadh fad %{count} là(ithean), thèid comharra a chur ris gu fèin-obrachail a dh’innseas nach gabh a lìbhrigeadh.
|
|
||||||
destroyed_msg: Tha an dàta o %{domain} air ciutha an sguabaidh às aithghearr.
|
destroyed_msg: Tha an dàta o %{domain} air ciutha an sguabaidh às aithghearr.
|
||||||
empty: Cha deach àrainn a lorg.
|
empty: Cha deach àrainn a lorg.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -561,18 +555,10 @@ gd:
|
||||||
two: "%{count} chunntas as aithne dhuinn"
|
two: "%{count} chunntas as aithne dhuinn"
|
||||||
moderation:
|
moderation:
|
||||||
all: Na h-uile
|
all: Na h-uile
|
||||||
limited: Cuingichte
|
|
||||||
title: Maorsainneachd
|
title: Maorsainneachd
|
||||||
private_comment: Beachd prìobhaideach
|
|
||||||
public_comment: Beachd poblach
|
|
||||||
purge: Purgaidich
|
purge: Purgaidich
|
||||||
purge_description_html: Ma tha thu dhen bheachd gu bheil an àrainn seo far loidhne gu buan, ’s urrainn dhut a h-uile clàr cunntais ’s an dàta co-cheangailte on àrainn ud a sguabadh às san stòras agad. Dh’fhaoidte gun doir sin greis mhath.
|
purge_description_html: Ma tha thu dhen bheachd gu bheil an àrainn seo far loidhne gu buan, ’s urrainn dhut a h-uile clàr cunntais ’s an dàta co-cheangailte on àrainn ud a sguabadh às san stòras agad. Dh’fhaoidte gun doir sin greis mhath.
|
||||||
title: Co-nasgadh
|
title: Co-nasgadh
|
||||||
total_blocked_by_us: "‘Ga bhacadh leinne"
|
|
||||||
total_followed_by_them: "’Ga leantainn leotha-san"
|
|
||||||
total_followed_by_us: "’Ga leantainn leinne"
|
|
||||||
total_reported: Gearanan mun dèidhinn
|
|
||||||
total_storage: Ceanglachain mheadhanan
|
|
||||||
totals_time_period_hint_html: Gabhaidh na h-iomlanan gu h-ìosal a-staigh an dàta o chian nan cian.
|
totals_time_period_hint_html: Gabhaidh na h-iomlanan gu h-ìosal a-staigh an dàta o chian nan cian.
|
||||||
unknown_instance: Chan eil clàr dhen àrainn seo air an fhrithealaiche seo.
|
unknown_instance: Chan eil clàr dhen àrainn seo air an fhrithealaiche seo.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -496,9 +496,6 @@ gl:
|
||||||
no_failures_recorded: Non hai fallos rexistrados.
|
no_failures_recorded: Non hai fallos rexistrados.
|
||||||
title: Dispoñibilidade
|
title: Dispoñibilidade
|
||||||
warning: Fallou o último intento de conectar con este servidor
|
warning: Fallou o último intento de conectar con este servidor
|
||||||
back_to_all: Todo
|
|
||||||
back_to_limited: Limitado
|
|
||||||
back_to_warning: Aviso
|
|
||||||
by_domain: Dominio
|
by_domain: Dominio
|
||||||
confirm_purge: Tes a certeza de querer eliminar permanentemente os datos deste dominio?
|
confirm_purge: Tes a certeza de querer eliminar permanentemente os datos deste dominio?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -529,9 +526,6 @@ gl:
|
||||||
restart: Restablecer a entrega
|
restart: Restablecer a entrega
|
||||||
stop: Deter a entrega
|
stop: Deter a entrega
|
||||||
unavailable: Non dispoñible
|
unavailable: Non dispoñible
|
||||||
delivery_available: Entrega dispoñíbel
|
|
||||||
delivery_error_days: Días de fallo na entrega
|
|
||||||
delivery_error_hint: Se non é posible a entrega durante %{count} días, será automáticamente marcado como non entregable.
|
|
||||||
destroyed_msg: Os datos desde %{domain} están na cola para o borrado inminente.
|
destroyed_msg: Os datos desde %{domain} están na cola para o borrado inminente.
|
||||||
empty: Non se atopan dominios.
|
empty: Non se atopan dominios.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -539,18 +533,10 @@ gl:
|
||||||
other: "%{count} contas coñecidas"
|
other: "%{count} contas coñecidas"
|
||||||
moderation:
|
moderation:
|
||||||
all: Todo
|
all: Todo
|
||||||
limited: Limitado
|
|
||||||
title: Moderación
|
title: Moderación
|
||||||
private_comment: Comentario privado
|
|
||||||
public_comment: Comentario público
|
|
||||||
purge: Purgar
|
purge: Purgar
|
||||||
purge_description_html: Se cres que este dominio está desconectado por unha boa razón, podes borrar tódolos rexistros e datos asociados a este dominio na túa almacenaxe. Vainos levar un anaco.
|
purge_description_html: Se cres que este dominio está desconectado por unha boa razón, podes borrar tódolos rexistros e datos asociados a este dominio na túa almacenaxe. Vainos levar un anaco.
|
||||||
title: Federación
|
title: Federación
|
||||||
total_blocked_by_us: Bloqueado por nós
|
|
||||||
total_followed_by_them: Seguidos por eles
|
|
||||||
total_followed_by_us: Seguidos por nós
|
|
||||||
total_reported: Denuncias sobre eles
|
|
||||||
total_storage: Adxuntos multimedia
|
|
||||||
totals_time_period_hint_html: Os totais aquí mostrados inclúen todo o historial de datos.
|
totals_time_period_hint_html: Os totais aquí mostrados inclúen todo o historial de datos.
|
||||||
unknown_instance: Actualmente non hai rexistro deste dominio no servidor.
|
unknown_instance: Actualmente non hai rexistro deste dominio no servidor.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -516,9 +516,6 @@ he:
|
||||||
no_failures_recorded: לא נמצאו כשלונות.
|
no_failures_recorded: לא נמצאו כשלונות.
|
||||||
title: זמינות
|
title: זמינות
|
||||||
warning: הנסיון האחרון להתחבר לשרת זה לא עלה בהצלחה
|
warning: הנסיון האחרון להתחבר לשרת זה לא עלה בהצלחה
|
||||||
back_to_all: כל
|
|
||||||
back_to_limited: מוגבל
|
|
||||||
back_to_warning: אזהרה
|
|
||||||
by_domain: דומיין
|
by_domain: דומיין
|
||||||
confirm_purge: האם את/ה בטוח/ה שברצונך למחוק באופן סופי מידע מדומיין זה?
|
confirm_purge: האם את/ה בטוח/ה שברצונך למחוק באופן סופי מידע מדומיין זה?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -549,9 +546,6 @@ he:
|
||||||
restart: אתחול משלוח מחדש
|
restart: אתחול משלוח מחדש
|
||||||
stop: הפסקת משלוח
|
stop: הפסקת משלוח
|
||||||
unavailable: לא זמין
|
unavailable: לא זמין
|
||||||
delivery_available: משלוח זמין
|
|
||||||
delivery_error_days: ימי שגיאת משלוח
|
|
||||||
delivery_error_hint: אם לא התאפשר משלוח במשך %{count} ימים, הוא יסומן אוטומטית כבלתי ניתן למשלוח.
|
|
||||||
destroyed_msg: מידע מ-%{domain} נמצא עתה בתור למחיקה מיידית.
|
destroyed_msg: מידע מ-%{domain} נמצא עתה בתור למחיקה מיידית.
|
||||||
empty: לא נמצאו דומיינים.
|
empty: לא נמצאו דומיינים.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -561,18 +555,10 @@ he:
|
||||||
two: "%{count} חשבונות ידועים"
|
two: "%{count} חשבונות ידועים"
|
||||||
moderation:
|
moderation:
|
||||||
all: הכל
|
all: הכל
|
||||||
limited: מוגבלים
|
|
||||||
title: ניהול קהילה
|
title: ניהול קהילה
|
||||||
private_comment: הערה פרטית
|
|
||||||
public_comment: תגובה פומבית
|
|
||||||
purge: טיהור
|
purge: טיהור
|
||||||
purge_description_html: אם יש יסוד להניח שדומיין זה מנותק לעד, ניתן למחוק את כל רשומות החשבונות והמידע המשוייך לדומיין זה משטח האפסון שלך. זה עשוי לקחת זמן מה.
|
purge_description_html: אם יש יסוד להניח שדומיין זה מנותק לעד, ניתן למחוק את כל רשומות החשבונות והמידע המשוייך לדומיין זה משטח האפסון שלך. זה עשוי לקחת זמן מה.
|
||||||
title: שרתים בפדרציה
|
title: שרתים בפדרציה
|
||||||
total_blocked_by_us: חסום על ידינו
|
|
||||||
total_followed_by_them: נעקב על ידם
|
|
||||||
total_followed_by_us: נעקב על ידינו
|
|
||||||
total_reported: דוחות אודותיהם
|
|
||||||
total_storage: קבצי מדיה מצורפים
|
|
||||||
totals_time_period_hint_html: הסכומים המוצגים להלן כוללים מידע מכל הזמנים.
|
totals_time_period_hint_html: הסכומים המוצגים להלן כוללים מידע מכל הזמנים.
|
||||||
unknown_instance: אין כרגע תיעוד של שם המתחם הזה על שרת זה.
|
unknown_instance: אין כרגע תיעוד של שם המתחם הזה על שרת זה.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -496,9 +496,6 @@ hu:
|
||||||
no_failures_recorded: Nem rögzítettünk hibát.
|
no_failures_recorded: Nem rögzítettünk hibát.
|
||||||
title: Elérhetőség
|
title: Elérhetőség
|
||||||
warning: Az utolsó csatlakozási próbálkozás ehhez a kiszolgálóhoz sikertelen volt
|
warning: Az utolsó csatlakozási próbálkozás ehhez a kiszolgálóhoz sikertelen volt
|
||||||
back_to_all: Mind
|
|
||||||
back_to_limited: Korlátozott
|
|
||||||
back_to_warning: Figyelmeztetés
|
|
||||||
by_domain: Domain
|
by_domain: Domain
|
||||||
confirm_purge: Biztos, hogy véglegesen törölni akarod az adatokat ebből a domainből?
|
confirm_purge: Biztos, hogy véglegesen törölni akarod az adatokat ebből a domainből?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -529,9 +526,6 @@ hu:
|
||||||
restart: Kézbesítés újraindítása
|
restart: Kézbesítés újraindítása
|
||||||
stop: Kézbesítés leállítása
|
stop: Kézbesítés leállítása
|
||||||
unavailable: Nem elérhető
|
unavailable: Nem elérhető
|
||||||
delivery_available: Kézbesítés elérhető
|
|
||||||
delivery_error_days: Kézbesítési hiba időtartama
|
|
||||||
delivery_error_hint: Ha a kézbesítés lehetetlen %{count} napig, automatikusan kézbesíthetetlennek lesz megjelölve.
|
|
||||||
destroyed_msg: A(z) %{domain} adatai sorba lettek állítva végleges törléshez.
|
destroyed_msg: A(z) %{domain} adatai sorba lettek állítva végleges törléshez.
|
||||||
empty: Nem található domain.
|
empty: Nem található domain.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -539,18 +533,10 @@ hu:
|
||||||
other: "%{count} ismert fiók"
|
other: "%{count} ismert fiók"
|
||||||
moderation:
|
moderation:
|
||||||
all: Mind
|
all: Mind
|
||||||
limited: Korlátozott
|
|
||||||
title: Moderáció
|
title: Moderáció
|
||||||
private_comment: Privát megjegyzés
|
|
||||||
public_comment: Nyilvános megjegyzés
|
|
||||||
purge: Végleges törlés
|
purge: Végleges törlés
|
||||||
purge_description_html: Ha úgy véled, hogy ez a domain végleg offline marad, a tárhelyedről letörölhetsz minden fiókot és hozzá tartozó adatot. Ez eltarthat egy darabig.
|
purge_description_html: Ha úgy véled, hogy ez a domain végleg offline marad, a tárhelyedről letörölhetsz minden fiókot és hozzá tartozó adatot. Ez eltarthat egy darabig.
|
||||||
title: Föderáció
|
title: Föderáció
|
||||||
total_blocked_by_us: Általunk letiltott
|
|
||||||
total_followed_by_them: Általuk követett
|
|
||||||
total_followed_by_us: Általunk követett
|
|
||||||
total_reported: Bejelentés róluk
|
|
||||||
total_storage: Média csatolmány
|
|
||||||
totals_time_period_hint_html: Az alább mutatott összesítések minden eddigi adatot tartalmaznak.
|
totals_time_period_hint_html: Az alább mutatott összesítések minden eddigi adatot tartalmaznak.
|
||||||
unknown_instance: Jelenleg nincs rekord erről a domainről ezen a kiszolgálón.
|
unknown_instance: Jelenleg nincs rekord erről a domainről ezen a kiszolgálón.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -279,9 +279,6 @@ hy:
|
||||||
instances:
|
instances:
|
||||||
availability:
|
availability:
|
||||||
title: Հասանելի
|
title: Հասանելի
|
||||||
back_to_all: Բոլորը
|
|
||||||
back_to_limited: Սահամանփակ
|
|
||||||
back_to_warning: Զգուշացում
|
|
||||||
by_domain: Դոմեն
|
by_domain: Դոմեն
|
||||||
content_policies:
|
content_policies:
|
||||||
policies:
|
policies:
|
||||||
|
@ -292,16 +289,8 @@ hy:
|
||||||
empty: Դոմեյնները չեն գտնուել
|
empty: Դոմեյնները չեն գտնուել
|
||||||
moderation:
|
moderation:
|
||||||
all: Բոլորը
|
all: Բոլորը
|
||||||
limited: Սահամանփակ
|
|
||||||
title: Մոդերացիա
|
title: Մոդերացիա
|
||||||
private_comment: Փակ մեկնաբանութիւն
|
|
||||||
public_comment: Հրապարակային մեկնաբանութիւն
|
|
||||||
title: Դաշնություն
|
title: Դաշնություն
|
||||||
total_blocked_by_us: Մենք արգելափակել ենք
|
|
||||||
total_followed_by_them: Նրանք հետեւում են
|
|
||||||
total_followed_by_us: Մենք հետեւում ենք
|
|
||||||
total_reported: Բողոքներ նրանց մասին
|
|
||||||
total_storage: Մեդիա կցորդներ
|
|
||||||
invites:
|
invites:
|
||||||
deactivate_all: Ապաակտիւացնել բոլորին
|
deactivate_all: Ապաակտիւացնել բոլորին
|
||||||
filter:
|
filter:
|
||||||
|
|
|
@ -496,9 +496,6 @@ ia:
|
||||||
no_failures_recorded: Necun fallimento cognoscite.
|
no_failures_recorded: Necun fallimento cognoscite.
|
||||||
title: Disponibilitate
|
title: Disponibilitate
|
||||||
warning: Le ultime tentativa de connexion a iste servitor non ha succedite
|
warning: Le ultime tentativa de connexion a iste servitor non ha succedite
|
||||||
back_to_all: Toto
|
|
||||||
back_to_limited: Limitate
|
|
||||||
back_to_warning: Advertimento
|
|
||||||
by_domain: Dominio
|
by_domain: Dominio
|
||||||
confirm_purge: Es tu secur que tu vole deler permanentemente le datos de iste dominio?
|
confirm_purge: Es tu secur que tu vole deler permanentemente le datos de iste dominio?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -529,9 +526,6 @@ ia:
|
||||||
restart: Recomenciar livration
|
restart: Recomenciar livration
|
||||||
stop: Cessar livration
|
stop: Cessar livration
|
||||||
unavailable: Non disponibile
|
unavailable: Non disponibile
|
||||||
delivery_available: Livration es disponibile
|
|
||||||
delivery_error_days: Dies de errores de livration
|
|
||||||
delivery_error_hint: Si le livration non es possibile durante %{count} dies, illo essera automaticamente marcate como non livrabile.
|
|
||||||
destroyed_msg: Le datos de %{domain} es ora in cauda pro deletion imminente.
|
destroyed_msg: Le datos de %{domain} es ora in cauda pro deletion imminente.
|
||||||
empty: Necun dominio trovate.
|
empty: Necun dominio trovate.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -539,18 +533,10 @@ ia:
|
||||||
other: "%{count} contos cognoscite"
|
other: "%{count} contos cognoscite"
|
||||||
moderation:
|
moderation:
|
||||||
all: Toto
|
all: Toto
|
||||||
limited: Limitate
|
|
||||||
title: Moderation
|
title: Moderation
|
||||||
private_comment: Commento private
|
|
||||||
public_comment: Commento public
|
|
||||||
purge: Purgar
|
purge: Purgar
|
||||||
purge_description_html: Si tu crede que iste dominio es foras de linea pro sempre, tu pote deler de tu immagazinage tote le registros del conto e le datos associate de iste dominio. Isto pote prender un tempore.
|
purge_description_html: Si tu crede que iste dominio es foras de linea pro sempre, tu pote deler de tu immagazinage tote le registros del conto e le datos associate de iste dominio. Isto pote prender un tempore.
|
||||||
title: Federation
|
title: Federation
|
||||||
total_blocked_by_us: Blocate per nos
|
|
||||||
total_followed_by_them: Sequite per illes
|
|
||||||
total_followed_by_us: Sequite per nos
|
|
||||||
total_reported: Reportos sur illes
|
|
||||||
total_storage: Annexos multimedial
|
|
||||||
totals_time_period_hint_html: Le totales monstrate hic infra include le datos de tote le tempore.
|
totals_time_period_hint_html: Le totales monstrate hic infra include le datos de tote le tempore.
|
||||||
unknown_instance: Iste dominio non es actualmente cognoscite sur iste servitor.
|
unknown_instance: Iste dominio non es actualmente cognoscite sur iste servitor.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -433,9 +433,6 @@ id:
|
||||||
no_failures_recorded: Tidak ada kegagalan tercatat.
|
no_failures_recorded: Tidak ada kegagalan tercatat.
|
||||||
title: Ketersediaan
|
title: Ketersediaan
|
||||||
warning: Upaya terakhir untuk menyambung ke server ini tidak berhasil
|
warning: Upaya terakhir untuk menyambung ke server ini tidak berhasil
|
||||||
back_to_all: Semua
|
|
||||||
back_to_limited: Terbatas
|
|
||||||
back_to_warning: Peringatan
|
|
||||||
by_domain: Domain
|
by_domain: Domain
|
||||||
confirm_purge: Yakin ingin menghapus permanen data dari domain ini?
|
confirm_purge: Yakin ingin menghapus permanen data dari domain ini?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -465,27 +462,16 @@ id:
|
||||||
restart: Mulai ulang pengiriman
|
restart: Mulai ulang pengiriman
|
||||||
stop: Setop pengiriman
|
stop: Setop pengiriman
|
||||||
unavailable: Tidak tersedia
|
unavailable: Tidak tersedia
|
||||||
delivery_available: Pengiriman tersedia
|
|
||||||
delivery_error_days: Lama hari pengiriman galat
|
|
||||||
delivery_error_hint: Jika pengiriman tidak terjadi selama %{count} hari, ia akan ditandai secara otomatis sebagai tidak terkirim.
|
|
||||||
destroyed_msg: Data dari %{domain} masuk antrean dihapus dalam waktu dekat.
|
destroyed_msg: Data dari %{domain} masuk antrean dihapus dalam waktu dekat.
|
||||||
empty: Domain tidak ditemukan.
|
empty: Domain tidak ditemukan.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
other: "%{count} akun yang dikenal"
|
other: "%{count} akun yang dikenal"
|
||||||
moderation:
|
moderation:
|
||||||
all: Semua
|
all: Semua
|
||||||
limited: Terbatas
|
|
||||||
title: Moderasi
|
title: Moderasi
|
||||||
private_comment: Komentar pribadi
|
|
||||||
public_comment: Komentar publik
|
|
||||||
purge: Hapus
|
purge: Hapus
|
||||||
purge_description_html: Jika Anda meyakini bahwa domain ini lebih baik offline, Anda dapat menghapus semua rekaman akun dan data terkait dari domain ini dari ruang penyimpanan Anda. Ini perlu beberapa waktu.
|
purge_description_html: Jika Anda meyakini bahwa domain ini lebih baik offline, Anda dapat menghapus semua rekaman akun dan data terkait dari domain ini dari ruang penyimpanan Anda. Ini perlu beberapa waktu.
|
||||||
title: Server yang diketahui
|
title: Server yang diketahui
|
||||||
total_blocked_by_us: Yang kita blokir
|
|
||||||
total_followed_by_them: Diikuti mereka
|
|
||||||
total_followed_by_us: Diikuti kita
|
|
||||||
total_reported: Laporan tentang mereka
|
|
||||||
total_storage: Lampiran media
|
|
||||||
totals_time_period_hint_html: Total tampilan di bawah termasuk data seluruh waktu.
|
totals_time_period_hint_html: Total tampilan di bawah termasuk data seluruh waktu.
|
||||||
invites:
|
invites:
|
||||||
deactivate_all: Nonaktifkan semua
|
deactivate_all: Nonaktifkan semua
|
||||||
|
|
|
@ -453,9 +453,6 @@ ie:
|
||||||
no_failures_recorded: Null fallimentes registrat.
|
no_failures_recorded: Null fallimentes registrat.
|
||||||
title: Disponibilitá
|
title: Disponibilitá
|
||||||
warning: Li ultim prova conexer a ti servitor ha esset ínsuccessosi
|
warning: Li ultim prova conexer a ti servitor ha esset ínsuccessosi
|
||||||
back_to_all: Omni
|
|
||||||
back_to_limited: Limitat
|
|
||||||
back_to_warning: Admonit
|
|
||||||
by_domain: Dominia
|
by_domain: Dominia
|
||||||
confirm_purge: Vole tu vermen permanentmen deleter data de ti dominia?
|
confirm_purge: Vole tu vermen permanentmen deleter data de ti dominia?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -486,9 +483,6 @@ ie:
|
||||||
restart: Recomensar liveration
|
restart: Recomensar liveration
|
||||||
stop: Haltar liveration
|
stop: Haltar liveration
|
||||||
unavailable: Índisponibil
|
unavailable: Índisponibil
|
||||||
delivery_available: Liveration es disponibil
|
|
||||||
delivery_error_days: Dies de errores de liveration
|
|
||||||
delivery_error_hint: Si liveration ne es possibil durant %{count} dies, it va esser marcat automaticmen quam ínliverabil.
|
|
||||||
destroyed_msg: Data de %{domain} es nu in li linea por iminent deletion.
|
destroyed_msg: Data de %{domain} es nu in li linea por iminent deletion.
|
||||||
empty: Null dominias trovat.
|
empty: Null dominias trovat.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -496,18 +490,10 @@ ie:
|
||||||
other: "%{count} conosset contos"
|
other: "%{count} conosset contos"
|
||||||
moderation:
|
moderation:
|
||||||
all: Omni
|
all: Omni
|
||||||
limited: Limitat
|
|
||||||
title: Moderation
|
title: Moderation
|
||||||
private_comment: Privat comenta
|
|
||||||
public_comment: Public comenta
|
|
||||||
purge: Purgar
|
purge: Purgar
|
||||||
purge_description_html: Si tu crede que ti-ci dominia es for linea por sempre, tu posse deleter omni archives de conto e associat data de ti-ci dominia de tui magasinage. Alquant témpor va esser possibilmen besonat.
|
purge_description_html: Si tu crede que ti-ci dominia es for linea por sempre, tu posse deleter omni archives de conto e associat data de ti-ci dominia de tui magasinage. Alquant témpor va esser possibilmen besonat.
|
||||||
title: Federation
|
title: Federation
|
||||||
total_blocked_by_us: Bloccat de nos
|
|
||||||
total_followed_by_them: Sequet de les
|
|
||||||
total_followed_by_us: Sequet de nos
|
|
||||||
total_reported: Raportes pri les
|
|
||||||
total_storage: Medie-atachamentes
|
|
||||||
totals_time_period_hint_html: Li totales monstrat in infra include data por omni témpor.
|
totals_time_period_hint_html: Li totales monstrat in infra include data por omni témpor.
|
||||||
unknown_instance: Actualmen hay null registre de ti dominia che ti-ci servitor.
|
unknown_instance: Actualmen hay null registre de ti dominia che ti-ci servitor.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -450,9 +450,6 @@ io:
|
||||||
no_failures_recorded: Nula falio en rekordo.
|
no_failures_recorded: Nula falio en rekordo.
|
||||||
title: Disponebleso
|
title: Disponebleso
|
||||||
warning: Antea probo di konekto a ca servilo esas nesucesoza
|
warning: Antea probo di konekto a ca servilo esas nesucesoza
|
||||||
back_to_all: Omna
|
|
||||||
back_to_limited: Limitizita
|
|
||||||
back_to_warning: Averto
|
|
||||||
by_domain: Domeno
|
by_domain: Domeno
|
||||||
confirm_purge: Ka vu certe volas netempale efacar informi de ca domeno?
|
confirm_purge: Ka vu certe volas netempale efacar informi de ca domeno?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -483,9 +480,6 @@ io:
|
||||||
restart: Rikomencez sendo
|
restart: Rikomencez sendo
|
||||||
stop: Cesez sendo
|
stop: Cesez sendo
|
||||||
unavailable: Nedisponebla
|
unavailable: Nedisponebla
|
||||||
delivery_available: Sendo esas disponebla
|
|
||||||
delivery_error_days: Senderordii
|
|
||||||
delivery_error_hint: Se sendo ne esas posibla dum %{count} dii, ol automata markizesos quale ne sendebla.
|
|
||||||
destroyed_msg: Informi de %{domain} nun faskigesis por partikulara efaco.
|
destroyed_msg: Informi de %{domain} nun faskigesis por partikulara efaco.
|
||||||
empty: Nula domeni.
|
empty: Nula domeni.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -493,18 +487,10 @@ io:
|
||||||
other: "%{count} savata konti"
|
other: "%{count} savata konti"
|
||||||
moderation:
|
moderation:
|
||||||
all: Omna
|
all: Omna
|
||||||
limited: Limitizita
|
|
||||||
title: Jero
|
title: Jero
|
||||||
private_comment: Privata komento
|
|
||||||
public_comment: Publika komento
|
|
||||||
purge: Efacez grande
|
purge: Efacez grande
|
||||||
purge_description_html: Se vu kredas ke ca domeno esas nekonektata netempale, vu povas efacar omna kontorekordi e relatata informi de ca domeno de vua reteneyo. Co forsan esas nekurta.
|
purge_description_html: Se vu kredas ke ca domeno esas nekonektata netempale, vu povas efacar omna kontorekordi e relatata informi de ca domeno de vua reteneyo. Co forsan esas nekurta.
|
||||||
title: Known Instances
|
title: Known Instances
|
||||||
total_blocked_by_us: Obstruktesis da ni
|
|
||||||
total_followed_by_them: Sequesis da oli
|
|
||||||
total_followed_by_us: Sequesis da ni
|
|
||||||
total_reported: Raporti pri oli
|
|
||||||
total_storage: Mediiatachaji
|
|
||||||
totals_time_period_hint_html: Sumi quo montresas sube inkluzas informi de pos la komenco.
|
totals_time_period_hint_html: Sumi quo montresas sube inkluzas informi de pos la komenco.
|
||||||
unknown_instance: Prezente ne esas registrago pri ta domeno che ca servilo.
|
unknown_instance: Prezente ne esas registrago pri ta domeno che ca servilo.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -496,9 +496,6 @@ is:
|
||||||
no_failures_recorded: Engar misheppnaðar tilraunir á skrá.
|
no_failures_recorded: Engar misheppnaðar tilraunir á skrá.
|
||||||
title: Tiltækileiki
|
title: Tiltækileiki
|
||||||
warning: Síðasta tilraun til að tengjast þessum netþjóni mistókst
|
warning: Síðasta tilraun til að tengjast þessum netþjóni mistókst
|
||||||
back_to_all: Allt
|
|
||||||
back_to_limited: Takmarkað
|
|
||||||
back_to_warning: Aðvörun
|
|
||||||
by_domain: Lén
|
by_domain: Lén
|
||||||
confirm_purge: Ertu viss um að þú viljir eyða gögnum endanlega frá þessu léni?
|
confirm_purge: Ertu viss um að þú viljir eyða gögnum endanlega frá þessu léni?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -529,9 +526,6 @@ is:
|
||||||
restart: Endurræsa afhendingu
|
restart: Endurræsa afhendingu
|
||||||
stop: Stöðva afhendingu
|
stop: Stöðva afhendingu
|
||||||
unavailable: Ekki tiltækt
|
unavailable: Ekki tiltækt
|
||||||
delivery_available: Afhending er til taks
|
|
||||||
delivery_error_days: Dagar með villum í afhendingu
|
|
||||||
delivery_error_hint: Ef afhending er ekki möguleg í %{count} daga, verður það sjálfkrafa merkt sem óafhendanlegt.
|
|
||||||
destroyed_msg: Gögn frá %{domain} bíða núna eftir að vera eytt innan skamms.
|
destroyed_msg: Gögn frá %{domain} bíða núna eftir að vera eytt innan skamms.
|
||||||
empty: Engin lén fundust.
|
empty: Engin lén fundust.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -539,18 +533,10 @@ is:
|
||||||
other: "%{count} þekktir notendaaðgangar"
|
other: "%{count} þekktir notendaaðgangar"
|
||||||
moderation:
|
moderation:
|
||||||
all: Allt
|
all: Allt
|
||||||
limited: Takmarkað
|
|
||||||
title: Umsjón
|
title: Umsjón
|
||||||
private_comment: Einkaathugasemd
|
|
||||||
public_comment: Opinber athugasemd
|
|
||||||
purge: Henda
|
purge: Henda
|
||||||
purge_description_html: Ef þú heldur að þetta lén sé farið endanlega af netinu, geturðu eytt öllum færslum aðganga og tengdum gögnum frá þessu léni úr gagnageymslum þínum. Þetta gæti tekið þó nokkra stund.
|
purge_description_html: Ef þú heldur að þetta lén sé farið endanlega af netinu, geturðu eytt öllum færslum aðganga og tengdum gögnum frá þessu léni úr gagnageymslum þínum. Þetta gæti tekið þó nokkra stund.
|
||||||
title: Netþjónasambönd
|
title: Netþjónasambönd
|
||||||
total_blocked_by_us: Útilokað af okkur
|
|
||||||
total_followed_by_them: Fylgt af þeim
|
|
||||||
total_followed_by_us: Fylgt af okkur
|
|
||||||
total_reported: Kærur um þá
|
|
||||||
total_storage: Myndaviðhengi
|
|
||||||
totals_time_period_hint_html: Samtölurnar sem birtar eru hér fyrir neðan innihalda gögn frá upphafi.
|
totals_time_period_hint_html: Samtölurnar sem birtar eru hér fyrir neðan innihalda gögn frá upphafi.
|
||||||
unknown_instance: Í augnablikinu er engin færsla um þetta lén á þessum netþjóni.
|
unknown_instance: Í augnablikinu er engin færsla um þetta lén á þessum netþjóni.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -496,9 +496,6 @@ it:
|
||||||
no_failures_recorded: Nessun fallimento registrato.
|
no_failures_recorded: Nessun fallimento registrato.
|
||||||
title: Disponibilità
|
title: Disponibilità
|
||||||
warning: L'ultimo tentativo di connessione a questo server non è riuscito
|
warning: L'ultimo tentativo di connessione a questo server non è riuscito
|
||||||
back_to_all: Tutto
|
|
||||||
back_to_limited: Limitato
|
|
||||||
back_to_warning: Avviso
|
|
||||||
by_domain: Dominio
|
by_domain: Dominio
|
||||||
confirm_purge: Sei sicuro di voler cancellare definitivamente i dati di questo dominio?
|
confirm_purge: Sei sicuro di voler cancellare definitivamente i dati di questo dominio?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -529,9 +526,6 @@ it:
|
||||||
restart: Riavvia la consegna
|
restart: Riavvia la consegna
|
||||||
stop: Interrompi consegna
|
stop: Interrompi consegna
|
||||||
unavailable: Non disponibile
|
unavailable: Non disponibile
|
||||||
delivery_available: Distribuzione disponibile
|
|
||||||
delivery_error_days: Giorni con errori di consegna
|
|
||||||
delivery_error_hint: Se la consegna non è possibile per %{count} giorni, sarà automaticamente contrassegnata come non consegnabile.
|
|
||||||
destroyed_msg: I dati da %{domain} sono in coda per l'eliminazione imminente.
|
destroyed_msg: I dati da %{domain} sono in coda per l'eliminazione imminente.
|
||||||
empty: Nessun dominio trovato.
|
empty: Nessun dominio trovato.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -539,18 +533,10 @@ it:
|
||||||
other: "%{count} account noti"
|
other: "%{count} account noti"
|
||||||
moderation:
|
moderation:
|
||||||
all: Tutto
|
all: Tutto
|
||||||
limited: Limitato
|
|
||||||
title: Moderazione
|
title: Moderazione
|
||||||
private_comment: Commento privato
|
|
||||||
public_comment: Commento pubblico
|
|
||||||
purge: Ripulisci
|
purge: Ripulisci
|
||||||
purge_description_html: Se credi che questo dominio sia offline per sempre, puoi eliminare tutti i registri del profilo e i dati associati da questo dominio dalla tua archiviazione. Questo potrebbe richiedere un po' di tempo.
|
purge_description_html: Se credi che questo dominio sia offline per sempre, puoi eliminare tutti i registri del profilo e i dati associati da questo dominio dalla tua archiviazione. Questo potrebbe richiedere un po' di tempo.
|
||||||
title: Istanze conosciute
|
title: Istanze conosciute
|
||||||
total_blocked_by_us: Bloccato da noi
|
|
||||||
total_followed_by_them: Seguito da loro
|
|
||||||
total_followed_by_us: Seguito da noi
|
|
||||||
total_reported: Segnalazioni su di loro
|
|
||||||
total_storage: Media allegati
|
|
||||||
totals_time_period_hint_html: I totali sotto visualizzati includono i dati per tutti i tempi.
|
totals_time_period_hint_html: I totali sotto visualizzati includono i dati per tutti i tempi.
|
||||||
unknown_instance: Al momento non c'è alcun documento di questo dominio su questo server.
|
unknown_instance: Al momento non c'è alcun documento di questo dominio su questo server.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -486,9 +486,6 @@ ja:
|
||||||
no_failures_recorded: 失敗は記録されていません。
|
no_failures_recorded: 失敗は記録されていません。
|
||||||
title: 可用性
|
title: 可用性
|
||||||
warning: このサーバーへの最後の接続試行に失敗しました
|
warning: このサーバーへの最後の接続試行に失敗しました
|
||||||
back_to_all: すべて
|
|
||||||
back_to_limited: 制限あり
|
|
||||||
back_to_warning: 警告あり
|
|
||||||
by_domain: ドメイン
|
by_domain: ドメイン
|
||||||
confirm_purge: このドメインを完全にブロックしてもよろしいですか?
|
confirm_purge: このドメインを完全にブロックしてもよろしいですか?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -519,27 +516,16 @@ ja:
|
||||||
restart: 配送を再開
|
restart: 配送を再開
|
||||||
stop: 配送を停止
|
stop: 配送を停止
|
||||||
unavailable: 配送不可
|
unavailable: 配送不可
|
||||||
delivery_available: 配送可能
|
|
||||||
delivery_error_days: 配送エラー発生日
|
|
||||||
delivery_error_hint: "%{count}日間配送ができない場合は、自動的に配送不可としてマークされます。"
|
|
||||||
destroyed_msg: "%{domain}からのデータは、すぐに削除されるように、キューに追加されました。"
|
destroyed_msg: "%{domain}からのデータは、すぐに削除されるように、キューに追加されました。"
|
||||||
empty: ドメインが見つかりませんでした。
|
empty: ドメインが見つかりませんでした。
|
||||||
known_accounts:
|
known_accounts:
|
||||||
other: 既知のアカウント数 %{count}
|
other: 既知のアカウント数 %{count}
|
||||||
moderation:
|
moderation:
|
||||||
all: すべて
|
all: すべて
|
||||||
limited: 制限あり
|
|
||||||
title: モデレーション
|
title: モデレーション
|
||||||
private_comment: コメント (非公開)
|
|
||||||
public_comment: コメント (公開)
|
|
||||||
purge: パージ
|
purge: パージ
|
||||||
purge_description_html: このドメインがオフラインであると思われる場合は、このドメインのすべてのアカウント記録と関連するデータをストレージから削除できます。 これは時間がかかることがあります。
|
purge_description_html: このドメインがオフラインであると思われる場合は、このドメインのすべてのアカウント記録と関連するデータをストレージから削除できます。 これは時間がかかることがあります。
|
||||||
title: 既知のサーバー
|
title: 既知のサーバー
|
||||||
total_blocked_by_us: ブロック合計
|
|
||||||
total_followed_by_them: 被フォロー合計
|
|
||||||
total_followed_by_us: フォロー合計
|
|
||||||
total_reported: 通報合計
|
|
||||||
total_storage: 添付されたメディア
|
|
||||||
totals_time_period_hint_html: 以下に表示される合計には、すべての時間のデータが含まれています。
|
totals_time_period_hint_html: 以下に表示される合計には、すべての時間のデータが含まれています。
|
||||||
unknown_instance: 今のところ、このドメインについては何も記録されていません。
|
unknown_instance: 今のところ、このドメインについては何も記録されていません。
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -273,9 +273,6 @@ kab:
|
||||||
status: Addad
|
status: Addad
|
||||||
suppressed: Yettwakkes
|
suppressed: Yettwakkes
|
||||||
instances:
|
instances:
|
||||||
back_to_all: Akk
|
|
||||||
back_to_limited: Ɣur-s talast
|
|
||||||
back_to_warning: Ɣur-wat
|
|
||||||
by_domain: Taɣult
|
by_domain: Taɣult
|
||||||
content_policies:
|
content_policies:
|
||||||
policy: Tasertit
|
policy: Tasertit
|
||||||
|
@ -287,21 +284,11 @@ kab:
|
||||||
restart: Ales asiweḍ
|
restart: Ales asiweḍ
|
||||||
stop: Seḥbes asiweḍ
|
stop: Seḥbes asiweḍ
|
||||||
unavailable: Ur yelli ara
|
unavailable: Ur yelli ara
|
||||||
delivery_available: Yella usiweḍ
|
|
||||||
delivery_error_days: Ussan n tuccḍiwin n usiweḍ
|
|
||||||
empty: Ulac taɣultin yettwafen.
|
empty: Ulac taɣultin yettwafen.
|
||||||
moderation:
|
moderation:
|
||||||
all: Akk
|
all: Akk
|
||||||
limited: Yettwasgugem
|
|
||||||
title: Aseɣyed
|
title: Aseɣyed
|
||||||
private_comment: Awennit uslig
|
|
||||||
public_comment: Awennit azayez
|
|
||||||
title: Tamatut
|
title: Tamatut
|
||||||
total_blocked_by_us: Ttwasḥebsen sɣur-neɣ
|
|
||||||
total_followed_by_them: Ṭtafaṛen-t
|
|
||||||
total_followed_by_us: Neṭṭafaṛ-it
|
|
||||||
total_reported: Ineqqisen fell-asen
|
|
||||||
total_storage: Imeddayen n umidya
|
|
||||||
invites:
|
invites:
|
||||||
deactivate_all: Sens kullec
|
deactivate_all: Sens kullec
|
||||||
filter:
|
filter:
|
||||||
|
|
|
@ -196,19 +196,10 @@ kk:
|
||||||
create: Add dоmain
|
create: Add dоmain
|
||||||
instances:
|
instances:
|
||||||
by_domain: Domаin
|
by_domain: Domаin
|
||||||
delivery_available: Жеткізу қол жетімді
|
|
||||||
moderation:
|
moderation:
|
||||||
all: Барлығы
|
all: Барлығы
|
||||||
limited: Лимит
|
|
||||||
title: Модерация
|
title: Модерация
|
||||||
private_comment: Құпия пікір
|
|
||||||
public_comment: Ашық пікір
|
|
||||||
title: Федерация
|
title: Федерация
|
||||||
total_blocked_by_us: Біз бұғаттағандар
|
|
||||||
total_followed_by_them: Олар жазылғандар
|
|
||||||
total_followed_by_us: Біз жазылғандар
|
|
||||||
total_reported: Келген шағымдар
|
|
||||||
total_storage: Медиа файлдар
|
|
||||||
invites:
|
invites:
|
||||||
deactivate_all: Барлығын сөндір
|
deactivate_all: Барлығын сөндір
|
||||||
filter:
|
filter:
|
||||||
|
|
|
@ -488,9 +488,6 @@ ko:
|
||||||
no_failures_recorded: 실패 기록이 없습니다.
|
no_failures_recorded: 실패 기록이 없습니다.
|
||||||
title: 가용성
|
title: 가용성
|
||||||
warning: 이 서버에 대한 마지막 연결 시도가 성공적이지 않았습니다
|
warning: 이 서버에 대한 마지막 연결 시도가 성공적이지 않았습니다
|
||||||
back_to_all: 전체
|
|
||||||
back_to_limited: 제한됨
|
|
||||||
back_to_warning: 경고
|
|
||||||
by_domain: 도메인
|
by_domain: 도메인
|
||||||
confirm_purge: 정말로 이 도메인의 데이터를 영구적으로 삭제하길 원하십니까?
|
confirm_purge: 정말로 이 도메인의 데이터를 영구적으로 삭제하길 원하십니까?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -521,27 +518,16 @@ ko:
|
||||||
restart: 전달 재시작
|
restart: 전달 재시작
|
||||||
stop: 전달 중지
|
stop: 전달 중지
|
||||||
unavailable: 사용불가
|
unavailable: 사용불가
|
||||||
delivery_available: 전송 가능
|
|
||||||
delivery_error_days: 전달 에러가 난 날짜들
|
|
||||||
delivery_error_hint: 만약 %{count}일 동안 전달이 불가능하다면, 자동으로 전달 불가로 표시됩니다.
|
|
||||||
destroyed_msg: "%{domain}의 데이터는 곧바로 지워지도록 대기열에 들어갔습니다."
|
destroyed_msg: "%{domain}의 데이터는 곧바로 지워지도록 대기열에 들어갔습니다."
|
||||||
empty: 도메인이 하나도 없습니다.
|
empty: 도메인이 하나도 없습니다.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
other: "%{count} 개의 알려진 계정"
|
other: "%{count} 개의 알려진 계정"
|
||||||
moderation:
|
moderation:
|
||||||
all: 모두
|
all: 모두
|
||||||
limited: 제한
|
|
||||||
title: 중재
|
title: 중재
|
||||||
private_comment: 비공개 주석
|
purge: 제거
|
||||||
public_comment: 공개 주석
|
|
||||||
purge: 퍼지
|
|
||||||
purge_description_html: 이 도메인이 영구적으로 오프라인 상태라고 생각되면, 스토리지에서 이 도메인의 모든 계정 레코드와 관련 데이터를 삭제할 수 있습니다. 이 작업은 시간이 좀 걸릴 수 있습니다.
|
purge_description_html: 이 도메인이 영구적으로 오프라인 상태라고 생각되면, 스토리지에서 이 도메인의 모든 계정 레코드와 관련 데이터를 삭제할 수 있습니다. 이 작업은 시간이 좀 걸릴 수 있습니다.
|
||||||
title: 연합
|
title: 연합
|
||||||
total_blocked_by_us: 우리에게 차단 됨
|
|
||||||
total_followed_by_them: 우리를 팔로우
|
|
||||||
total_followed_by_us: 우리가 한 팔로우
|
|
||||||
total_reported: 이들에 대한 신고
|
|
||||||
total_storage: 미디어 첨부
|
|
||||||
totals_time_period_hint_html: 아래에 표시된 총계는 역대 데이터에 대한 것입니다.
|
totals_time_period_hint_html: 아래에 표시된 총계는 역대 데이터에 대한 것입니다.
|
||||||
unknown_instance: 현재 이 서버에서 해당 도메인에 대한 기록은 없습니다.
|
unknown_instance: 현재 이 서버에서 해당 도메인에 대한 기록은 없습니다.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -438,9 +438,6 @@ ku:
|
||||||
no_failures_recorded: Di tomarê de têkçûn tune.
|
no_failures_recorded: Di tomarê de têkçûn tune.
|
||||||
title: Berdestbûnî
|
title: Berdestbûnî
|
||||||
warning: Hewldana dawî ji bo girêdana bi vê rajekarê re bi ser neket
|
warning: Hewldana dawî ji bo girêdana bi vê rajekarê re bi ser neket
|
||||||
back_to_all: Hemû
|
|
||||||
back_to_limited: Sînorkirî
|
|
||||||
back_to_warning: Hişyarî
|
|
||||||
by_domain: Navper
|
by_domain: Navper
|
||||||
confirm_purge: Ma tu dixwazî ku bi awayekî domdar daneyan ji vê navperê jê bibî?
|
confirm_purge: Ma tu dixwazî ku bi awayekî domdar daneyan ji vê navperê jê bibî?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -470,9 +467,6 @@ ku:
|
||||||
restart: Gihandinê nû va bike
|
restart: Gihandinê nû va bike
|
||||||
stop: Gehandinê rawestîne
|
stop: Gehandinê rawestîne
|
||||||
unavailable: Nederbasdar
|
unavailable: Nederbasdar
|
||||||
delivery_available: Gihandin berdest e
|
|
||||||
delivery_error_days: Rojên çewtiyên gehandinê
|
|
||||||
delivery_error_hint: Ger gehandin %{count} rojan ne pêkan be ewê wek bixweber wê nayê gehandin were nîşandan.
|
|
||||||
destroyed_msg: Daneyên %{domain} niha ji bo jêbirina nêzîk di rêzê de ne.
|
destroyed_msg: Daneyên %{domain} niha ji bo jêbirina nêzîk di rêzê de ne.
|
||||||
empty: Tu navper nehatine dîtin.
|
empty: Tu navper nehatine dîtin.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -480,18 +474,10 @@ ku:
|
||||||
other: "%{count} ajimêrên naskirî"
|
other: "%{count} ajimêrên naskirî"
|
||||||
moderation:
|
moderation:
|
||||||
all: Hemû
|
all: Hemû
|
||||||
limited: Sînorkirî
|
|
||||||
title: Çavdêrî
|
title: Çavdêrî
|
||||||
private_comment: Şîroveya taybet
|
|
||||||
public_comment: Şîroveya ji hemû kesî re vekirî
|
|
||||||
purge: Pak bike
|
purge: Pak bike
|
||||||
purge_description_html: Ku tu bawer dikî ev navper bi domdarî negirêdayî ye, tu dikarî hemû tomarên ajimêr û daneyên xwe yîn têkildarî wê navperê jê bibî. Ev dibe ku hinek dem bigire.
|
purge_description_html: Ku tu bawer dikî ev navper bi domdarî negirêdayî ye, tu dikarî hemû tomarên ajimêr û daneyên xwe yîn têkildarî wê navperê jê bibî. Ev dibe ku hinek dem bigire.
|
||||||
title: Giştî
|
title: Giştî
|
||||||
total_blocked_by_us: Ji aliyê me ve hatiye astengkirin
|
|
||||||
total_followed_by_them: Ji aliyê wan ve hatiye şopandin
|
|
||||||
total_followed_by_us: Ji aliyê me ve hatiye şopandin
|
|
||||||
total_reported: Ragehandinên di derbarê wan de
|
|
||||||
total_storage: Pêvekên medyayê
|
|
||||||
totals_time_period_hint_html: Tevahiyên ku li jêr têne xuyakirin daneyên hemû deman dihewîne.
|
totals_time_period_hint_html: Tevahiyên ku li jêr têne xuyakirin daneyên hemû deman dihewîne.
|
||||||
invites:
|
invites:
|
||||||
deactivate_all: Hemûyan neçalak bike
|
deactivate_all: Hemûyan neçalak bike
|
||||||
|
|
|
@ -482,9 +482,6 @@ lad:
|
||||||
no_failures_recorded: No ay provas no reushidas en el defter.
|
no_failures_recorded: No ay provas no reushidas en el defter.
|
||||||
title: Disponivilita
|
title: Disponivilita
|
||||||
warning: La ultima prova de koneksyon a este sirvidor no tuvo sukseso
|
warning: La ultima prova de koneksyon a este sirvidor no tuvo sukseso
|
||||||
back_to_all: Todos
|
|
||||||
back_to_limited: Limitados
|
|
||||||
back_to_warning: Avertensya
|
|
||||||
by_domain: Domeno
|
by_domain: Domeno
|
||||||
confirm_purge: Siguro ke keres supremir permanentemente los datos de este domeno?
|
confirm_purge: Siguro ke keres supremir permanentemente los datos de este domeno?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -515,9 +512,6 @@ lad:
|
||||||
restart: Reinisya entrega
|
restart: Reinisya entrega
|
||||||
stop: Deten entrega
|
stop: Deten entrega
|
||||||
unavailable: No desponivle
|
unavailable: No desponivle
|
||||||
delivery_available: Entrega desponivle
|
|
||||||
delivery_error_days: Diyas de yerro de entrega
|
|
||||||
delivery_error_hint: Si la entrega no es posivle a lo longo de %{count} diyas, se markara otomatikamente komo no entregable.
|
|
||||||
destroyed_msg: Los datos de %{domain} estan agora en kola para sus iminente efasasyon.
|
destroyed_msg: Los datos de %{domain} estan agora en kola para sus iminente efasasyon.
|
||||||
empty: No se toparon domenos.
|
empty: No se toparon domenos.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -525,18 +519,10 @@ lad:
|
||||||
other: "%{count} kuentos konesidos"
|
other: "%{count} kuentos konesidos"
|
||||||
moderation:
|
moderation:
|
||||||
all: Todos
|
all: Todos
|
||||||
limited: Limitado
|
|
||||||
title: Moderasyon
|
title: Moderasyon
|
||||||
private_comment: Komento privado
|
|
||||||
public_comment: Komento publiko
|
|
||||||
purge: Purga
|
purge: Purga
|
||||||
purge_description_html: Si kreyes ke este domeno esta deskonektado, puedes efasar todos los rejistros de kuentos i los datos asosyados de este domeno de tu magazinaje. Esto puede levar un tiempo.
|
purge_description_html: Si kreyes ke este domeno esta deskonektado, puedes efasar todos los rejistros de kuentos i los datos asosyados de este domeno de tu magazinaje. Esto puede levar un tiempo.
|
||||||
title: Federasyon
|
title: Federasyon
|
||||||
total_blocked_by_us: Blokado por mozotros
|
|
||||||
total_followed_by_them: Segidos por eyos
|
|
||||||
total_followed_by_us: Segidos por mozotros
|
|
||||||
total_reported: Raportos sovre eyos
|
|
||||||
total_storage: Aneksos de multimedia
|
|
||||||
totals_time_period_hint_html: Los totales amostrados a kontinuasyon inkluyen datos para todo el tiempo.
|
totals_time_period_hint_html: Los totales amostrados a kontinuasyon inkluyen datos para todo el tiempo.
|
||||||
unknown_instance: Por agora no ay dingun rejistro en este domeno en este sirvidor.
|
unknown_instance: Por agora no ay dingun rejistro en este domeno en este sirvidor.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -454,9 +454,6 @@ lt:
|
||||||
availability:
|
availability:
|
||||||
title: Prieinamumas
|
title: Prieinamumas
|
||||||
warning: Paskutinis bandymas prisijungti prie šio serverio buvo nesėkmingas
|
warning: Paskutinis bandymas prisijungti prie šio serverio buvo nesėkmingas
|
||||||
back_to_all: Visi
|
|
||||||
back_to_limited: Apribotas
|
|
||||||
back_to_warning: Įspėjimas
|
|
||||||
by_domain: Domenas
|
by_domain: Domenas
|
||||||
content_policies:
|
content_policies:
|
||||||
policies:
|
policies:
|
||||||
|
@ -467,18 +464,10 @@ lt:
|
||||||
title: Turinio politika
|
title: Turinio politika
|
||||||
delivery:
|
delivery:
|
||||||
all: Visi
|
all: Visi
|
||||||
delivery_available: Pristatymas galimas
|
|
||||||
moderation:
|
moderation:
|
||||||
all: Visi
|
all: Visi
|
||||||
limited: Limituotas
|
|
||||||
title: Prižiūrėjimas
|
title: Prižiūrėjimas
|
||||||
public_comment: Viešas komentaras
|
|
||||||
title: Federacija
|
title: Federacija
|
||||||
total_blocked_by_us: Mes užblokavome
|
|
||||||
total_followed_by_them: Jų sekami
|
|
||||||
total_followed_by_us: Mūsų sekami
|
|
||||||
total_reported: Skundai apie juos
|
|
||||||
total_storage: Medijos prisegti failai
|
|
||||||
invites:
|
invites:
|
||||||
deactivate_all: Deaktyvuoti visus
|
deactivate_all: Deaktyvuoti visus
|
||||||
filter:
|
filter:
|
||||||
|
|
|
@ -492,9 +492,6 @@ lv:
|
||||||
no_failures_recorded: Nav reģistrētu kļūdu.
|
no_failures_recorded: Nav reģistrētu kļūdu.
|
||||||
title: Pieejamība
|
title: Pieejamība
|
||||||
warning: Pēdējais mēģinājums izveidot savienojumu ar šo serveri ir bijis neveiksmīgs
|
warning: Pēdējais mēģinājums izveidot savienojumu ar šo serveri ir bijis neveiksmīgs
|
||||||
back_to_all: Visas
|
|
||||||
back_to_limited: Ierobežotās
|
|
||||||
back_to_warning: Brīdinājums
|
|
||||||
by_domain: Domēns
|
by_domain: Domēns
|
||||||
confirm_purge: Vai tiešām vēlies neatgriezeniski izdzēst datus no šī domēna?
|
confirm_purge: Vai tiešām vēlies neatgriezeniski izdzēst datus no šī domēna?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -525,9 +522,6 @@ lv:
|
||||||
restart: Pārstartēt piegādi
|
restart: Pārstartēt piegādi
|
||||||
stop: Apturēt piegādi
|
stop: Apturēt piegādi
|
||||||
unavailable: Nav pieejams
|
unavailable: Nav pieejams
|
||||||
delivery_available: Piegāde ir iespējama
|
|
||||||
delivery_error_days: Piegādes kļūdu dienas
|
|
||||||
delivery_error_hint: Ja piegāde nav iespējama %{count} dienas, tā tiks automātiski atzīmēta kā nepiegādājama.
|
|
||||||
destroyed_msg: Dati no %{domain} tagad ir gaidīšanas rindā, lai tos drīzumā dzēstu.
|
destroyed_msg: Dati no %{domain} tagad ir gaidīšanas rindā, lai tos drīzumā dzēstu.
|
||||||
empty: Domēni nav atrasti.
|
empty: Domēni nav atrasti.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -536,18 +530,10 @@ lv:
|
||||||
zero: "%{count} zināmu kontu"
|
zero: "%{count} zināmu kontu"
|
||||||
moderation:
|
moderation:
|
||||||
all: Visas
|
all: Visas
|
||||||
limited: Ierobežotās
|
title: Moderācija
|
||||||
title: Satura pārraudzība
|
|
||||||
private_comment: Privāts komentārs
|
|
||||||
public_comment: Publisks komentārs
|
|
||||||
purge: Iztīrīt
|
purge: Iztīrīt
|
||||||
purge_description_html: Ja uzskati, ka šis domēns uz visiem laikiem ir bezsaistē, tu vari no savas krātuves dzēst visus konta ierakstus un saistītos datus no šī domēna. Tas var aizņemt kādu laiku.
|
purge_description_html: Ja uzskati, ka šis domēns uz visiem laikiem ir bezsaistē, tu vari no savas krātuves dzēst visus konta ierakstus un saistītos datus no šī domēna. Tas var aizņemt kādu laiku.
|
||||||
title: Federācija
|
title: Federācija
|
||||||
total_blocked_by_us: Mūsu bloķēta
|
|
||||||
total_followed_by_them: Viņiem seko
|
|
||||||
total_followed_by_us: Mums seko
|
|
||||||
total_reported: Ziņojumi par viņiem
|
|
||||||
total_storage: Multividesu pielikumi
|
|
||||||
totals_time_period_hint_html: Tālāk redzamajās summās ir iekļauti dati par visu laiku.
|
totals_time_period_hint_html: Tālāk redzamajās summās ir iekļauti dati par visu laiku.
|
||||||
unknown_instance: Pašlaik šajā serverī nav ierakstu par šo domēnu.
|
unknown_instance: Pašlaik šajā serverī nav ierakstu par šo domēnu.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -442,9 +442,6 @@ ms:
|
||||||
no_failures_recorded: Tiada kegagalan dalam rekod.
|
no_failures_recorded: Tiada kegagalan dalam rekod.
|
||||||
title: Ketersediaan
|
title: Ketersediaan
|
||||||
warning: Percubaan terakhir untuk menyambung ke pelayan ini tidak berjaya
|
warning: Percubaan terakhir untuk menyambung ke pelayan ini tidak berjaya
|
||||||
back_to_all: Semua
|
|
||||||
back_to_limited: Terhad
|
|
||||||
back_to_warning: Amaran
|
|
||||||
by_domain: Domain
|
by_domain: Domain
|
||||||
confirm_purge: Adakah anda pasti mahu menghapuskan senarai ini secara kekal daripada domain ini?
|
confirm_purge: Adakah anda pasti mahu menghapuskan senarai ini secara kekal daripada domain ini?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -475,27 +472,16 @@ ms:
|
||||||
restart: Mulakan semula penghantaran
|
restart: Mulakan semula penghantaran
|
||||||
stop: Hentikan penghantaran
|
stop: Hentikan penghantaran
|
||||||
unavailable: Tidak tersedia
|
unavailable: Tidak tersedia
|
||||||
delivery_available: Penghantaran tersedia
|
|
||||||
delivery_error_days: Hari ralat penghantaran
|
|
||||||
delivery_error_hint: Jika penghantaran tidak berjaya selama %{count} hari, ia akan ditanda sebagai tidak boleh dihantar.
|
|
||||||
destroyed_msg: Data daripada %{domain} kini beratur untuk pemadaman segera.
|
destroyed_msg: Data daripada %{domain} kini beratur untuk pemadaman segera.
|
||||||
empty: Tiada domain dijumpai.
|
empty: Tiada domain dijumpai.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
other: "%{count} akaun dikenali"
|
other: "%{count} akaun dikenali"
|
||||||
moderation:
|
moderation:
|
||||||
all: Semua
|
all: Semua
|
||||||
limited: Terhad
|
|
||||||
title: Penyederhanaan
|
title: Penyederhanaan
|
||||||
private_comment: Ulasan peribadi
|
|
||||||
public_comment: Ulasan awam
|
|
||||||
purge: Singkir
|
purge: Singkir
|
||||||
purge_description_html: Jika anda percaya domain ini berada di luar talian selama-lamanya, anda boleh memadamkan semua rekod akaun dan data yang berkaitan daripada domain ini daripada storan anda. Ini mungkin mengambil sedikit masa.
|
purge_description_html: Jika anda percaya domain ini berada di luar talian selama-lamanya, anda boleh memadamkan semua rekod akaun dan data yang berkaitan daripada domain ini daripada storan anda. Ini mungkin mengambil sedikit masa.
|
||||||
title: Persekutuan
|
title: Persekutuan
|
||||||
total_blocked_by_us: Disekati kami
|
|
||||||
total_followed_by_them: Diikuti mereka
|
|
||||||
total_followed_by_us: Diikuti kami
|
|
||||||
total_reported: Laporan tentang mereka
|
|
||||||
total_storage: Lampiran media
|
|
||||||
totals_time_period_hint_html: Jumlah yang dipaparkan di bawah termasuk data untuk sepanjang masa.
|
totals_time_period_hint_html: Jumlah yang dipaparkan di bawah termasuk data untuk sepanjang masa.
|
||||||
unknown_instance: Pada masa ini tiada rekod domain ini pada pelayan ini.
|
unknown_instance: Pada masa ini tiada rekod domain ini pada pelayan ini.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -442,9 +442,6 @@ my:
|
||||||
no_failures_recorded: မှတ်တမ်းမရှိပါ။
|
no_failures_recorded: မှတ်တမ်းမရှိပါ။
|
||||||
title: ရရှိနိုင်မှု
|
title: ရရှိနိုင်မှု
|
||||||
warning: ဤဆာဗာအသုံးပြုနိုင်ရန် နောက်ဆုံးကြိုးပမ်းမှုမှာ မအောင်မြင်ခဲ့ပါ
|
warning: ဤဆာဗာအသုံးပြုနိုင်ရန် နောက်ဆုံးကြိုးပမ်းမှုမှာ မအောင်မြင်ခဲ့ပါ
|
||||||
back_to_all: အားလုံး
|
|
||||||
back_to_limited: ကန့်သတ်ထားသည်
|
|
||||||
back_to_warning: သတိပေးချက်
|
|
||||||
by_domain: ဒိုမိန်း
|
by_domain: ဒိုမိန်း
|
||||||
confirm_purge: ဤဒိုမိန်းမှ အချက်အလက်များကို အပြီးတိုင်ဖျက်လိုသည်မှာ သေချာပါသလား။
|
confirm_purge: ဤဒိုမိန်းမှ အချက်အလက်များကို အပြီးတိုင်ဖျက်လိုသည်မှာ သေချာပါသလား။
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -475,27 +472,16 @@ my:
|
||||||
restart: ပေးပို့မှုကို ပြန်လည်စတင်ရန်
|
restart: ပေးပို့မှုကို ပြန်လည်စတင်ရန်
|
||||||
stop: ပေးပို့မှုကို ရပ်ရန်
|
stop: ပေးပို့မှုကို ရပ်ရန်
|
||||||
unavailable: မရရှိနိုင်ပါ
|
unavailable: မရရှိနိုင်ပါ
|
||||||
delivery_available: ပေးပို့နိုင်ပါပြီ
|
|
||||||
delivery_error_days: ပေးပို့မှု မှားယွင်းသည့်ရက်များ
|
|
||||||
delivery_error_hint: "%{count} ရက်အတွင်း မပေးပို့နိုင်ပါက ၎င်းကို ပေးပို့မရနိုင်ဟု အလိုအလျောက် အမှတ်အသားပြုပါမည်။"
|
|
||||||
destroyed_msg: "%{domain} မှ အချက်အလက်များကို မကြာမီ ဖျက်ပါမည်။"
|
destroyed_msg: "%{domain} မှ အချက်အလက်များကို မကြာမီ ဖျက်ပါမည်။"
|
||||||
empty: ဒိုမိန်းများ မတွေ့ပါ။
|
empty: ဒိုမိန်းများ မတွေ့ပါ။
|
||||||
known_accounts:
|
known_accounts:
|
||||||
other: လူသိများသော အကောင့် %{count} ခု
|
other: လူသိများသော အကောင့် %{count} ခု
|
||||||
moderation:
|
moderation:
|
||||||
all: အားလုံး
|
all: အားလုံး
|
||||||
limited: ကန့်သတ်ထားသော
|
|
||||||
title: စိစစ်ခြင်း
|
title: စိစစ်ခြင်း
|
||||||
private_comment: သီးသန့်မှတ်ချက်
|
|
||||||
public_comment: အများမြင်မှတ်ချက်
|
|
||||||
purge: ဖျက်
|
purge: ဖျက်
|
||||||
purge_description_html: ဤဒိုမိန်းသည် အော့ဖ်လိုင်းဖြစ်နေပါက သင့်သိုလှောင်မှုမှ အကောင့်မှတ်တမ်းများနှင့် ဆက်စပ်အချက်အလက်အားလုံးကို ဖျက်နိုင်သည်။ အချိန်အနည်းငယ် ကြာနိုင်ပါသည်။
|
purge_description_html: ဤဒိုမိန်းသည် အော့ဖ်လိုင်းဖြစ်နေပါက သင့်သိုလှောင်မှုမှ အကောင့်မှတ်တမ်းများနှင့် ဆက်စပ်အချက်အလက်အားလုံးကို ဖျက်နိုင်သည်။ အချိန်အနည်းငယ် ကြာနိုင်ပါသည်။
|
||||||
title: ဖက်ဒီ
|
title: ဖက်ဒီ
|
||||||
total_blocked_by_us: ကျွန်ုပ်တို့မှ ပိတ်ပင်ထားခြင်း
|
|
||||||
total_followed_by_them: "၎င်းတို့မှ စောင့်ကြည့်ခဲ့သည်"
|
|
||||||
total_followed_by_us: ကျွန်ုပ်တို့မှ စောင့်ကြည့်ခဲ့သည်
|
|
||||||
total_reported: "၎င်းတို့နှင့်ဆိုင်သော အစီရင်ခံစာများ"
|
|
||||||
total_storage: မီဒီယာ ပူးတွဲချက်များ
|
|
||||||
totals_time_period_hint_html: အောက်တွင်ဖော်ပြထားသော စုစုပေါင်းမှာ အချိန်တိုင်းအတွက် အချက်အလက်များဖြစ်သည်။
|
totals_time_period_hint_html: အောက်တွင်ဖော်ပြထားသော စုစုပေါင်းမှာ အချိန်တိုင်းအတွက် အချက်အလက်များဖြစ်သည်။
|
||||||
unknown_instance: လောလောဆယ် ဤဆာဗာတွင် ဤဒိုမိန်း၏ မှတ်တမ်းမရှိပါ။
|
unknown_instance: လောလောဆယ် ဤဆာဗာတွင် ဤဒိုမိန်း၏ မှတ်တမ်းမရှိပါ။
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -488,9 +488,6 @@ nl:
|
||||||
no_failures_recorded: Geen storingen bekend.
|
no_failures_recorded: Geen storingen bekend.
|
||||||
title: Beschikbaarheid
|
title: Beschikbaarheid
|
||||||
warning: De laatste poging om met deze server te verbinden was onsuccesvol
|
warning: De laatste poging om met deze server te verbinden was onsuccesvol
|
||||||
back_to_all: Alles
|
|
||||||
back_to_limited: Beperkt
|
|
||||||
back_to_warning: Waarschuwing
|
|
||||||
by_domain: Domein
|
by_domain: Domein
|
||||||
confirm_purge: Weet je zeker dat je de gegevens van dit domein permanent wilt verwijderen?
|
confirm_purge: Weet je zeker dat je de gegevens van dit domein permanent wilt verwijderen?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -521,9 +518,6 @@ nl:
|
||||||
restart: Bezorging herstarten
|
restart: Bezorging herstarten
|
||||||
stop: Bezorging beëindigen
|
stop: Bezorging beëindigen
|
||||||
unavailable: Niet beschikbaar
|
unavailable: Niet beschikbaar
|
||||||
delivery_available: Bezorging is mogelijk
|
|
||||||
delivery_error_days: Dagen met bezorgfouten
|
|
||||||
delivery_error_hint: Wanneer de bezorging voor %{count} dagen niet mogelijk is, wordt de bezorging automatisch als niet beschikbaar gemarkeerd.
|
|
||||||
destroyed_msg: Gegevens van %{domain} staan nu in de wachtrij voor aanstaande verwijdering.
|
destroyed_msg: Gegevens van %{domain} staan nu in de wachtrij voor aanstaande verwijdering.
|
||||||
empty: Geen domeinen gevonden.
|
empty: Geen domeinen gevonden.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -531,18 +525,10 @@ nl:
|
||||||
other: "%{count} bekende accounts"
|
other: "%{count} bekende accounts"
|
||||||
moderation:
|
moderation:
|
||||||
all: Alles
|
all: Alles
|
||||||
limited: Beperkt
|
|
||||||
title: Moderatie
|
title: Moderatie
|
||||||
private_comment: Privé-opmerking
|
|
||||||
public_comment: Openbare opmerking
|
|
||||||
purge: Volledig verwijderen
|
purge: Volledig verwijderen
|
||||||
purge_description_html: Als je denkt dat dit domein definitief offline is, kunt je alle accountrecords en bijbehorende gegevens van dit domein verwijderen. Dit kan een tijdje duren.
|
purge_description_html: Als je denkt dat dit domein definitief offline is, kunt je alle accountrecords en bijbehorende gegevens van dit domein verwijderen. Dit kan een tijdje duren.
|
||||||
title: Federatie
|
title: Federatie
|
||||||
total_blocked_by_us: Door ons geblokkeerd
|
|
||||||
total_followed_by_them: Door hun gevolgd
|
|
||||||
total_followed_by_us: Door ons gevolgd
|
|
||||||
total_reported: Rapportages over hun
|
|
||||||
total_storage: Mediabijlagen
|
|
||||||
totals_time_period_hint_html: De hieronder getoonde totalen bevatten gegevens sinds het begin.
|
totals_time_period_hint_html: De hieronder getoonde totalen bevatten gegevens sinds het begin.
|
||||||
unknown_instance: Er zijn momenteel geen gegevens van dit domein op deze server.
|
unknown_instance: Er zijn momenteel geen gegevens van dit domein op deze server.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -496,9 +496,6 @@ nn:
|
||||||
no_failures_recorded: Ingen feil registrert.
|
no_failures_recorded: Ingen feil registrert.
|
||||||
title: Tilgjenge
|
title: Tilgjenge
|
||||||
warning: Det siste forsøket på å koble til denne serveren lyktes ikke
|
warning: Det siste forsøket på å koble til denne serveren lyktes ikke
|
||||||
back_to_all: Alle
|
|
||||||
back_to_limited: Avgrensa
|
|
||||||
back_to_warning: Advarsel
|
|
||||||
by_domain: Domene
|
by_domain: Domene
|
||||||
confirm_purge: Er du sikker på at du vil slette data permanent fra dette domenet?
|
confirm_purge: Er du sikker på at du vil slette data permanent fra dette domenet?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -529,9 +526,6 @@ nn:
|
||||||
restart: Starte levering
|
restart: Starte levering
|
||||||
stop: Stopp levering
|
stop: Stopp levering
|
||||||
unavailable: Ikke tilgjengelig
|
unavailable: Ikke tilgjengelig
|
||||||
delivery_available: Levering er tilgjengelig
|
|
||||||
delivery_error_days: Leveringsfeildagar
|
|
||||||
delivery_error_hint: Dersom levering ikke er mulig i løpet av %{count} dager, blir det automatisk merket som ikke mulig å levere.
|
|
||||||
destroyed_msg: Data frå %{domain} er no lagt i kø for å bli sletta.
|
destroyed_msg: Data frå %{domain} er no lagt i kø for å bli sletta.
|
||||||
empty: Ingen domener funnet.
|
empty: Ingen domener funnet.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -539,18 +533,10 @@ nn:
|
||||||
other: "%{count} kjende kontoar"
|
other: "%{count} kjende kontoar"
|
||||||
moderation:
|
moderation:
|
||||||
all: Alle
|
all: Alle
|
||||||
limited: Avgrensa
|
|
||||||
title: Moderasjon
|
title: Moderasjon
|
||||||
private_comment: Privat kommentar
|
|
||||||
public_comment: Offentleg kommentar
|
|
||||||
purge: Reinse
|
purge: Reinse
|
||||||
purge_description_html: Dersom du trur dette domenet har blitt kopla ned for godt, kan du sletta all kontoinformasjon og tilhøyrande data som gjeld domenet frå lageret ditt. Dette kan ta litt tid.
|
purge_description_html: Dersom du trur dette domenet har blitt kopla ned for godt, kan du sletta all kontoinformasjon og tilhøyrande data som gjeld domenet frå lageret ditt. Dette kan ta litt tid.
|
||||||
title: Samling
|
title: Samling
|
||||||
total_blocked_by_us: Blokkert av oss
|
|
||||||
total_followed_by_them: Fylgd av dei
|
|
||||||
total_followed_by_us: Fylgd av oss
|
|
||||||
total_reported: Rapportar om dei
|
|
||||||
total_storage: Medievedlegg
|
|
||||||
totals_time_period_hint_html: Totalsum vist nedanfor gjeld data for alle tidsperiodar.
|
totals_time_period_hint_html: Totalsum vist nedanfor gjeld data for alle tidsperiodar.
|
||||||
unknown_instance: Domenet er ukjent for denne tenaren.
|
unknown_instance: Domenet er ukjent for denne tenaren.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -454,9 +454,6 @@
|
||||||
no_failures_recorded: Ingen feil registrert.
|
no_failures_recorded: Ingen feil registrert.
|
||||||
title: Tilgjengelighet
|
title: Tilgjengelighet
|
||||||
warning: Det siste forsøket på å koble til denne serveren lyktes ikke
|
warning: Det siste forsøket på å koble til denne serveren lyktes ikke
|
||||||
back_to_all: All
|
|
||||||
back_to_limited: Begrenset
|
|
||||||
back_to_warning: Advarsel
|
|
||||||
by_domain: Domene
|
by_domain: Domene
|
||||||
confirm_purge: Er du sikker på at du vil slette data permanent fra dette domenet?
|
confirm_purge: Er du sikker på at du vil slette data permanent fra dette domenet?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -487,9 +484,6 @@
|
||||||
restart: Starte levering
|
restart: Starte levering
|
||||||
stop: Stopp levering
|
stop: Stopp levering
|
||||||
unavailable: Ikke tilgjengelig
|
unavailable: Ikke tilgjengelig
|
||||||
delivery_available: Levering er tilgjengelig
|
|
||||||
delivery_error_days: Antall feildager i levering
|
|
||||||
delivery_error_hint: Dersom levering ikke er mulig i løpet av %{count} dager, blir det automatisk merket som ikke mulig å levere.
|
|
||||||
destroyed_msg: Data fra %{domain} er nå i kø for sletting av overhengende sletting.
|
destroyed_msg: Data fra %{domain} er nå i kø for sletting av overhengende sletting.
|
||||||
empty: Ingen domener funnet.
|
empty: Ingen domener funnet.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -497,18 +491,10 @@
|
||||||
other: "%{count} kjente kontoer"
|
other: "%{count} kjente kontoer"
|
||||||
moderation:
|
moderation:
|
||||||
all: Alt
|
all: Alt
|
||||||
limited: Begrenset
|
|
||||||
title: Moderasjon
|
title: Moderasjon
|
||||||
private_comment: Privat kommentar
|
|
||||||
public_comment: Offentlig kommentar
|
|
||||||
purge: Rens
|
purge: Rens
|
||||||
purge_description_html: Hvis du tror dette domenet er frakoblet for godt, kan du slette alle kontoer og tilknyttede data fra dette domenet fra lagringen. Dette kan ta en stund.
|
purge_description_html: Hvis du tror dette domenet er frakoblet for godt, kan du slette alle kontoer og tilknyttede data fra dette domenet fra lagringen. Dette kan ta en stund.
|
||||||
title: Kjente instanser
|
title: Kjente instanser
|
||||||
total_blocked_by_us: Blokkert av oss
|
|
||||||
total_followed_by_them: Fulgt av dem
|
|
||||||
total_followed_by_us: Fulgt av oss
|
|
||||||
total_reported: Rapporter om dem
|
|
||||||
total_storage: Mediavedlegg
|
|
||||||
totals_time_period_hint_html: Summen som vises nedenfor inkluderer data for alle tider.
|
totals_time_period_hint_html: Summen som vises nedenfor inkluderer data for alle tider.
|
||||||
unknown_instance: Dette domenet er ukjent for denne serveren.
|
unknown_instance: Dette domenet er ukjent for denne serveren.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -279,19 +279,10 @@ oc:
|
||||||
by_domain: Domeni
|
by_domain: Domeni
|
||||||
dashboard:
|
dashboard:
|
||||||
instance_languages_dimension: Lengas principalas
|
instance_languages_dimension: Lengas principalas
|
||||||
delivery_available: Liurason disponibla
|
|
||||||
moderation:
|
moderation:
|
||||||
all: Totas
|
all: Totas
|
||||||
limited: Limitat
|
|
||||||
title: Moderacion
|
title: Moderacion
|
||||||
private_comment: Comentari privat
|
|
||||||
public_comment: Comentari public
|
|
||||||
title: Federacion
|
title: Federacion
|
||||||
total_blocked_by_us: Avèm blocat
|
|
||||||
total_followed_by_them: Sègon
|
|
||||||
total_followed_by_us: Seguèm
|
|
||||||
total_reported: Senhalament a prepaus d’eles
|
|
||||||
total_storage: Fichièrs junts
|
|
||||||
invites:
|
invites:
|
||||||
deactivate_all: O desactivar tot
|
deactivate_all: O desactivar tot
|
||||||
filter:
|
filter:
|
||||||
|
|
|
@ -516,9 +516,6 @@ pl:
|
||||||
no_failures_recorded: Brak błędów w rejestrze.
|
no_failures_recorded: Brak błędów w rejestrze.
|
||||||
title: Dostępność
|
title: Dostępność
|
||||||
warning: Ostatnia próba połączenia z tym serwerem zakończyła się niepowodzeniem
|
warning: Ostatnia próba połączenia z tym serwerem zakończyła się niepowodzeniem
|
||||||
back_to_all: Wszystkie
|
|
||||||
back_to_limited: Ograniczone
|
|
||||||
back_to_warning: Ostrzeżenie
|
|
||||||
by_domain: Domena
|
by_domain: Domena
|
||||||
confirm_purge: Czy na pewno chcesz trwale usunąć dane z tej domeny?
|
confirm_purge: Czy na pewno chcesz trwale usunąć dane z tej domeny?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -549,9 +546,6 @@ pl:
|
||||||
restart: Uruchom ponownie doręczenie
|
restart: Uruchom ponownie doręczenie
|
||||||
stop: Zatrzymaj doręczanie
|
stop: Zatrzymaj doręczanie
|
||||||
unavailable: Niedostępne
|
unavailable: Niedostępne
|
||||||
delivery_available: Doręczanie jest dostępne
|
|
||||||
delivery_error_days: Dni błędów doręczenia
|
|
||||||
delivery_error_hint: Jeżeli doręczanie nie będzie możliwe przez %{count} dni, zostanie automatycznie oznaczona jako nie do doręczania.
|
|
||||||
destroyed_msg: Dane z %{domain} są teraz w kolejce do bezpośredniego usunięcia.
|
destroyed_msg: Dane z %{domain} są teraz w kolejce do bezpośredniego usunięcia.
|
||||||
empty: Nie znaleziono domen.
|
empty: Nie znaleziono domen.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -561,18 +555,10 @@ pl:
|
||||||
other: "%{count} znane konta"
|
other: "%{count} znane konta"
|
||||||
moderation:
|
moderation:
|
||||||
all: Wszystkie
|
all: Wszystkie
|
||||||
limited: Ograniczone
|
|
||||||
title: Moderacja
|
title: Moderacja
|
||||||
private_comment: Prywatny komentarz
|
|
||||||
public_comment: Publiczny komentarz
|
|
||||||
purge: Wyczyść
|
purge: Wyczyść
|
||||||
purge_description_html: Jeśli uważasz, że ta domena została zamknięta na dobre, możesz usunąć wszystkie rejestry konta i powiązane dane z tej domeny z pamięci. Proces ten może chwilę potrwać.
|
purge_description_html: Jeśli uważasz, że ta domena została zamknięta na dobre, możesz usunąć wszystkie rejestry konta i powiązane dane z tej domeny z pamięci. Proces ten może chwilę potrwać.
|
||||||
title: Znane instancje
|
title: Znane instancje
|
||||||
total_blocked_by_us: Zablokowane przez nas
|
|
||||||
total_followed_by_them: Obserwowani przez nich
|
|
||||||
total_followed_by_us: Obserwowani przez nas
|
|
||||||
total_reported: Zgłoszenia dotyczące ich
|
|
||||||
total_storage: Załączniki multimedialne
|
|
||||||
totals_time_period_hint_html: Poniższe sumy zawierają dane od początku serwera.
|
totals_time_period_hint_html: Poniższe sumy zawierają dane od początku serwera.
|
||||||
unknown_instance: Obecnie ta domena jest nieznana na tym serwerze.
|
unknown_instance: Obecnie ta domena jest nieznana na tym serwerze.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -496,9 +496,6 @@ pt-BR:
|
||||||
no_failures_recorded: Sem falhas no registro.
|
no_failures_recorded: Sem falhas no registro.
|
||||||
title: Disponibilidade
|
title: Disponibilidade
|
||||||
warning: A última tentativa de se conectar a este servidor não foi bem sucedida
|
warning: A última tentativa de se conectar a este servidor não foi bem sucedida
|
||||||
back_to_all: Todas
|
|
||||||
back_to_limited: Limitado
|
|
||||||
back_to_warning: Aviso
|
|
||||||
by_domain: Domínio
|
by_domain: Domínio
|
||||||
confirm_purge: Você tem certeza de que deseja excluir permanentemente os dados deste domínio?
|
confirm_purge: Você tem certeza de que deseja excluir permanentemente os dados deste domínio?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -529,9 +526,6 @@ pt-BR:
|
||||||
restart: Reiniciar a entrega
|
restart: Reiniciar a entrega
|
||||||
stop: Parar entrega
|
stop: Parar entrega
|
||||||
unavailable: Indisponível
|
unavailable: Indisponível
|
||||||
delivery_available: Envio disponível
|
|
||||||
delivery_error_days: Dias de erro de entrega
|
|
||||||
delivery_error_hint: Se a entrega não for possível durante %{count} dias, será automaticamente marcada como não realizável.
|
|
||||||
destroyed_msg: Dados de %{domain} agora estão na fila para exclusão iminente.
|
destroyed_msg: Dados de %{domain} agora estão na fila para exclusão iminente.
|
||||||
empty: Nenhum domínio encontrado.
|
empty: Nenhum domínio encontrado.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -539,18 +533,10 @@ pt-BR:
|
||||||
other: "%{count} contas conhecidas"
|
other: "%{count} contas conhecidas"
|
||||||
moderation:
|
moderation:
|
||||||
all: Todos
|
all: Todos
|
||||||
limited: Limitados
|
|
||||||
title: Moderação
|
title: Moderação
|
||||||
private_comment: Comentário privado
|
|
||||||
public_comment: Comentário público
|
|
||||||
purge: Limpar
|
purge: Limpar
|
||||||
purge_description_html: Se você acredita que este domínio está offline definitivamente, você pode excluir todos os registros de conta e dados associados deste domínio do seu armazenamento. Isso pode demorar um pouco.
|
purge_description_html: Se você acredita que este domínio está offline definitivamente, você pode excluir todos os registros de conta e dados associados deste domínio do seu armazenamento. Isso pode demorar um pouco.
|
||||||
title: Federação
|
title: Federação
|
||||||
total_blocked_by_us: Bloqueado por nós
|
|
||||||
total_followed_by_them: Seguidos por eles
|
|
||||||
total_followed_by_us: Seguidos por nós
|
|
||||||
total_reported: Denúncias sobre eles
|
|
||||||
total_storage: Mídias anexadas
|
|
||||||
totals_time_period_hint_html: Os totais exibidos abaixo incluem dados para todo o tempo.
|
totals_time_period_hint_html: Os totais exibidos abaixo incluem dados para todo o tempo.
|
||||||
unknown_instance: Atualmente não há registros deste domínio neste servidor.
|
unknown_instance: Atualmente não há registros deste domínio neste servidor.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -487,9 +487,6 @@ pt-PT:
|
||||||
no_failures_recorded: Sem falhas registadas.
|
no_failures_recorded: Sem falhas registadas.
|
||||||
title: Disponibilidade
|
title: Disponibilidade
|
||||||
warning: A última tentativa de conectar a este servidor não foi bem sucedida
|
warning: A última tentativa de conectar a este servidor não foi bem sucedida
|
||||||
back_to_all: Todas
|
|
||||||
back_to_limited: Limitadas
|
|
||||||
back_to_warning: Aviso
|
|
||||||
by_domain: Domínio
|
by_domain: Domínio
|
||||||
confirm_purge: Tem a certeza de que deseja eliminar permanentemente os dados deste domínio?
|
confirm_purge: Tem a certeza de que deseja eliminar permanentemente os dados deste domínio?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -520,9 +517,6 @@ pt-PT:
|
||||||
restart: Reiniciar entrega
|
restart: Reiniciar entrega
|
||||||
stop: Parar entrega
|
stop: Parar entrega
|
||||||
unavailable: Indisponível
|
unavailable: Indisponível
|
||||||
delivery_available: Entrega disponível
|
|
||||||
delivery_error_days: Dias de erro de entrega
|
|
||||||
delivery_error_hint: Se a entrega não for possível durante %{count} dias, será automaticamente marcada como não realizável.
|
|
||||||
destroyed_msg: Dados de %{domain} estão agora na fila para iminente eliminação.
|
destroyed_msg: Dados de %{domain} estão agora na fila para iminente eliminação.
|
||||||
empty: Não foram encontrados domínios.
|
empty: Não foram encontrados domínios.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -530,18 +524,10 @@ pt-PT:
|
||||||
other: "%{count} contas conhecidas"
|
other: "%{count} contas conhecidas"
|
||||||
moderation:
|
moderation:
|
||||||
all: Todas
|
all: Todas
|
||||||
limited: Limitadas
|
|
||||||
title: Moderação
|
title: Moderação
|
||||||
private_comment: Comentários privados
|
|
||||||
public_comment: Comentários públicos
|
|
||||||
purge: Purgar
|
purge: Purgar
|
||||||
purge_description_html: Se crê que este domínio está definitivamente fora de linha, pode apagar todos os seus registos de contas e dados associados do seu armazenamento. Isso pode demorar algum tempo.
|
purge_description_html: Se crê que este domínio está definitivamente fora de linha, pode apagar todos os seus registos de contas e dados associados do seu armazenamento. Isso pode demorar algum tempo.
|
||||||
title: Federação
|
title: Federação
|
||||||
total_blocked_by_us: Bloqueado(s) por nós
|
|
||||||
total_followed_by_them: Seguido(s) por eles
|
|
||||||
total_followed_by_us: Seguido(s) por nós
|
|
||||||
total_reported: Denúncias sobre eles
|
|
||||||
total_storage: Anexos de media
|
|
||||||
totals_time_period_hint_html: Os totais exibidos abaixo incluem dados referentes ao tempo total.
|
totals_time_period_hint_html: Os totais exibidos abaixo incluem dados referentes ao tempo total.
|
||||||
unknown_instance: Atualmente não há registo deste domínio neste servidor.
|
unknown_instance: Atualmente não há registo deste domínio neste servidor.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -317,9 +317,6 @@ ro:
|
||||||
follow_recommendations:
|
follow_recommendations:
|
||||||
status: Stare
|
status: Stare
|
||||||
instances:
|
instances:
|
||||||
back_to_all: Toate
|
|
||||||
back_to_limited: Limitat
|
|
||||||
back_to_warning: Avertizare
|
|
||||||
by_domain: Domeniu
|
by_domain: Domeniu
|
||||||
content_policies:
|
content_policies:
|
||||||
comment: Notă internă
|
comment: Notă internă
|
||||||
|
@ -328,12 +325,8 @@ ro:
|
||||||
reject_reports: Respinge raportările
|
reject_reports: Respinge raportările
|
||||||
moderation:
|
moderation:
|
||||||
all: Toate
|
all: Toate
|
||||||
limited: Limitat
|
|
||||||
title: Moderare
|
title: Moderare
|
||||||
private_comment: Comentariu privat
|
|
||||||
public_comment: Comentariu public
|
|
||||||
title: Federație
|
title: Federație
|
||||||
total_blocked_by_us: Blocat de către noi
|
|
||||||
ip_blocks:
|
ip_blocks:
|
||||||
expires_in:
|
expires_in:
|
||||||
'1209600': 2 săptămâni
|
'1209600': 2 săptămâni
|
||||||
|
|
|
@ -516,9 +516,6 @@ ru:
|
||||||
no_failures_recorded: Сбоев в записи нет.
|
no_failures_recorded: Сбоев в записи нет.
|
||||||
title: Доступность
|
title: Доступность
|
||||||
warning: Последняя попытка подключения к этому серверу не удалась
|
warning: Последняя попытка подключения к этому серверу не удалась
|
||||||
back_to_all: Все узлы
|
|
||||||
back_to_limited: Все ограниченные узлы
|
|
||||||
back_to_warning: Все узлы требующие внимания
|
|
||||||
by_domain: Домен
|
by_domain: Домен
|
||||||
confirm_purge: Вы уверены, что хотите навсегда удалить данные с этого домена?
|
confirm_purge: Вы уверены, что хотите навсегда удалить данные с этого домена?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -549,9 +546,6 @@ ru:
|
||||||
restart: Перезапустить доставку
|
restart: Перезапустить доставку
|
||||||
stop: Остановить доставку
|
stop: Остановить доставку
|
||||||
unavailable: Недоступные
|
unavailable: Недоступные
|
||||||
delivery_available: Доставка возможна
|
|
||||||
delivery_error_days: Дней ошибок доставки
|
|
||||||
delivery_error_hint: Если доставка доставка не удастся в течение %{count} дней, он будет автоматически отмечен недоступным для доставки.
|
|
||||||
destroyed_msg: Данные для домена %{domain} поставлены в очередь на удаление.
|
destroyed_msg: Данные для домена %{domain} поставлены в очередь на удаление.
|
||||||
empty: Домены не найдены.
|
empty: Домены не найдены.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -561,18 +555,10 @@ ru:
|
||||||
other: "%{count} известная учётная запись"
|
other: "%{count} известная учётная запись"
|
||||||
moderation:
|
moderation:
|
||||||
all: Все
|
all: Все
|
||||||
limited: Ограниченные
|
|
||||||
title: Модерация
|
title: Модерация
|
||||||
private_comment: Приватный комментарий
|
|
||||||
public_comment: Публичный комментарий
|
|
||||||
purge: Удалить данные
|
purge: Удалить данные
|
||||||
purge_description_html: Если вы считаете, что этот домен отключен навсегда, вы можете удалить все записи учетной записи и связанные с этим доменом данные из своего хранилища. Это может занять некоторое время.
|
purge_description_html: Если вы считаете, что этот домен отключен навсегда, вы можете удалить все записи учетной записи и связанные с этим доменом данные из своего хранилища. Это может занять некоторое время.
|
||||||
title: Федерация
|
title: Федерация
|
||||||
total_blocked_by_us: Заблокировано нами
|
|
||||||
total_followed_by_them: Их подписчиков
|
|
||||||
total_followed_by_us: Наших подписчиков
|
|
||||||
total_reported: Жалобы на них
|
|
||||||
total_storage: Медиафайлы
|
|
||||||
totals_time_period_hint_html: Итоги, показанные ниже, включают данные за всё время.
|
totals_time_period_hint_html: Итоги, показанные ниже, включают данные за всё время.
|
||||||
unknown_instance: На данный момент нет записей об этом домене на этом сервере.
|
unknown_instance: На данный момент нет записей об этом домене на этом сервере.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -384,9 +384,6 @@ sc:
|
||||||
title: Cussìgios de sighidura
|
title: Cussìgios de sighidura
|
||||||
unsuppress: Recùpera su cussìgiu de sighidura
|
unsuppress: Recùpera su cussìgiu de sighidura
|
||||||
instances:
|
instances:
|
||||||
back_to_all: Totus
|
|
||||||
back_to_limited: Limitadas
|
|
||||||
back_to_warning: Atentzione
|
|
||||||
by_domain: Domìniu
|
by_domain: Domìniu
|
||||||
content_policies:
|
content_policies:
|
||||||
comment: Apuntu internu
|
comment: Apuntu internu
|
||||||
|
@ -406,24 +403,14 @@ sc:
|
||||||
instance_statuses_measure: publicatziones sarvadas
|
instance_statuses_measure: publicatziones sarvadas
|
||||||
delivery:
|
delivery:
|
||||||
all: Totus
|
all: Totus
|
||||||
unavailable: No a disponimentu
|
|
||||||
delivery_available: Sa cunsigna est a disponimentu
|
|
||||||
empty: Perunu domìniu agatadu.
|
empty: Perunu domìniu agatadu.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
one: "%{count} contu connòschidu"
|
one: "%{count} contu connòschidu"
|
||||||
other: "%{count} contos connòschidos"
|
other: "%{count} contos connòschidos"
|
||||||
moderation:
|
moderation:
|
||||||
all: Totus
|
all: Totus
|
||||||
limited: Limitadas
|
|
||||||
title: Moderatzione
|
title: Moderatzione
|
||||||
private_comment: Cummentu privadu
|
|
||||||
public_comment: Cummentu pùblicu
|
|
||||||
title: Federatzione
|
title: Federatzione
|
||||||
total_blocked_by_us: Blocados dae nois
|
|
||||||
total_followed_by_them: Sighidos dae àtere
|
|
||||||
total_followed_by_us: Sighidos dae nois
|
|
||||||
total_reported: Informes a subra de àtere
|
|
||||||
total_storage: Allegados multimediales
|
|
||||||
invites:
|
invites:
|
||||||
deactivate_all: Disativa totu
|
deactivate_all: Disativa totu
|
||||||
filter:
|
filter:
|
||||||
|
|
|
@ -434,9 +434,6 @@ sco:
|
||||||
no_failures_recorded: Nae failures on record.
|
no_failures_recorded: Nae failures on record.
|
||||||
title: Availability
|
title: Availability
|
||||||
warning: The last attempt tae connect tae this server haesnae been successful
|
warning: The last attempt tae connect tae this server haesnae been successful
|
||||||
back_to_all: Aw
|
|
||||||
back_to_limited: Limitit
|
|
||||||
back_to_warning: Warnin
|
|
||||||
by_domain: Domain
|
by_domain: Domain
|
||||||
confirm_purge: Ye sure ye'r wantin tae delete data fae this domain fir ever?
|
confirm_purge: Ye sure ye'r wantin tae delete data fae this domain fir ever?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -466,9 +463,6 @@ sco:
|
||||||
restart: Restert delivery
|
restart: Restert delivery
|
||||||
stop: Stap delivery
|
stop: Stap delivery
|
||||||
unavailable: No available
|
unavailable: No available
|
||||||
delivery_available: Delivery is available
|
|
||||||
delivery_error_days: Delivery error days
|
|
||||||
delivery_error_hint: If delivery isnae possible fir %{count} days, it wull be automatically mairked as no deliverable.
|
|
||||||
destroyed_msg: Data fae %{domain} is noo queued fir imminent deletion.
|
destroyed_msg: Data fae %{domain} is noo queued fir imminent deletion.
|
||||||
empty: Nae domains fun.
|
empty: Nae domains fun.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -476,18 +470,10 @@ sco:
|
||||||
other: "%{count} kent accoonts"
|
other: "%{count} kent accoonts"
|
||||||
moderation:
|
moderation:
|
||||||
all: Aw
|
all: Aw
|
||||||
limited: Limitit
|
|
||||||
title: Moderation
|
title: Moderation
|
||||||
private_comment: Private comment
|
|
||||||
public_comment: Public comment
|
|
||||||
purge: Purge
|
purge: Purge
|
||||||
purge_description_html: Gin ye believe this domain is affline fae no on, ye kin delete aw accoont records an associatit data fae this domain fae yer storage. This'll mibbie tak a while.
|
purge_description_html: Gin ye believe this domain is affline fae no on, ye kin delete aw accoont records an associatit data fae this domain fae yer storage. This'll mibbie tak a while.
|
||||||
title: Federation
|
title: Federation
|
||||||
total_blocked_by_us: Dingied bi us
|
|
||||||
total_followed_by_them: Follaed bi them
|
|
||||||
total_followed_by_us: Follaed bi us
|
|
||||||
total_reported: Clypes aboot them
|
|
||||||
total_storage: Media attachments
|
|
||||||
totals_time_period_hint_html: The totals shawn ablow include data fir aw time.
|
totals_time_period_hint_html: The totals shawn ablow include data fir aw time.
|
||||||
invites:
|
invites:
|
||||||
deactivate_all: Deactivate aw
|
deactivate_all: Deactivate aw
|
||||||
|
|
|
@ -377,9 +377,6 @@ si:
|
||||||
no_failures_recorded: වාර්තාගත අසාර්ථක වීම් නොමැත.
|
no_failures_recorded: වාර්තාගත අසාර්ථක වීම් නොමැත.
|
||||||
title: පවතින බව
|
title: පවතින බව
|
||||||
warning: මෙම සේවාදායකයට සම්බන්ධ වීමට ගත් අවසන් උත්සාහය අසාර්ථක විය
|
warning: මෙම සේවාදායකයට සම්බන්ධ වීමට ගත් අවසන් උත්සාහය අසාර්ථක විය
|
||||||
back_to_all: සියල්ල
|
|
||||||
back_to_limited: සීමා සහිතයි
|
|
||||||
back_to_warning: අවවාදයයි
|
|
||||||
by_domain: වසම
|
by_domain: වසම
|
||||||
confirm_purge: ඔබට මෙම වසමෙන් දත්ත ස්ථිරවම මැකීමට අවශ්ය බව විශ්වාසද?
|
confirm_purge: ඔබට මෙම වසමෙන් දත්ත ස්ථිරවම මැකීමට අවශ්ය බව විශ්වාසද?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -409,9 +406,6 @@ si:
|
||||||
restart: බෙදා හැරීම නැවත ආරම්භ කරන්න
|
restart: බෙදා හැරීම නැවත ආරම්භ කරන්න
|
||||||
stop: බෙදා හැරීම නවත්වන්න
|
stop: බෙදා හැරීම නවත්වන්න
|
||||||
unavailable: ලබා ගත නොහැක
|
unavailable: ලබා ගත නොහැක
|
||||||
delivery_available: බෙදා හැරීම ලබා ගත හැකිය
|
|
||||||
delivery_error_days: බෙදා හැරීමේ දෝෂ සහිත දින
|
|
||||||
delivery_error_hint: දවස් %{count} කින් බාරදීමට නොහැකි වුවහොත්, බාරදීමට නොහැකි බව ස්වයංක්රීයව සලකුණු වේ.
|
|
||||||
destroyed_msg: "%{domain} සිට දත්ත දැන් ආසන්න මකාදැමීම සඳහා පෝලිම් කර ඇත."
|
destroyed_msg: "%{domain} සිට දත්ත දැන් ආසන්න මකාදැමීම සඳහා පෝලිම් කර ඇත."
|
||||||
empty: වසම් කිසිවක් හමු නොවීය.
|
empty: වසම් කිසිවක් හමු නොවීය.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -419,18 +413,10 @@ si:
|
||||||
other: දන්නා ගිණුම් %{count} ක්
|
other: දන්නා ගිණුම් %{count} ක්
|
||||||
moderation:
|
moderation:
|
||||||
all: සියල්ල
|
all: සියල්ල
|
||||||
limited: සීමා සහිතයි
|
|
||||||
title: මැදිහත්කරණය
|
title: මැදිහත්කරණය
|
||||||
private_comment: පුද්ගලික අදහස
|
|
||||||
public_comment: ප්රසිද්ධ අදහස
|
|
||||||
purge: පිරිසිදු කරන්න
|
purge: පිරිසිදු කරන්න
|
||||||
purge_description_html: මෙම වසම යහපත සඳහා නොබැඳි බව ඔබ විශ්වාස කරන්නේ නම්, ඔබට ඔබගේ ගබඩාවෙන් මෙම වසමෙන් සියලුම ගිණුම් වාර්තා සහ ආශ්රිත දත්ත මකා දැමිය හැක. මෙයට යම් කාලයක් ගත විය හැක.
|
purge_description_html: මෙම වසම යහපත සඳහා නොබැඳි බව ඔබ විශ්වාස කරන්නේ නම්, ඔබට ඔබගේ ගබඩාවෙන් මෙම වසමෙන් සියලුම ගිණුම් වාර්තා සහ ආශ්රිත දත්ත මකා දැමිය හැක. මෙයට යම් කාලයක් ගත විය හැක.
|
||||||
title: සම්මේලනය
|
title: සම්මේලනය
|
||||||
total_blocked_by_us: අප විසින් අවහිර කරන ලදී
|
|
||||||
total_followed_by_them: ඔවුන් විසින් අනුගමනය කරන ලදී
|
|
||||||
total_followed_by_us: අප විසින් අනුගමනය කරන ලදී
|
|
||||||
total_reported: ඔවුන් ගැන වාර්තා
|
|
||||||
total_storage: මාධ්ය ඇමුණුම්
|
|
||||||
totals_time_period_hint_html: පහත දැක්වෙන එකතුවෙහි සියලු කාලය සඳහා දත්ත ඇතුළත් වේ.
|
totals_time_period_hint_html: පහත දැක්වෙන එකතුවෙහි සියලු කාලය සඳහා දත්ත ඇතුළත් වේ.
|
||||||
invites:
|
invites:
|
||||||
deactivate_all: සියල්ල අක්රිය කරන්න
|
deactivate_all: සියල්ල අක්රිය කරන්න
|
||||||
|
|
|
@ -422,9 +422,6 @@ sk:
|
||||||
availability:
|
availability:
|
||||||
no_failures_recorded: Žiadne zlyhania nezaznamenané.
|
no_failures_recorded: Žiadne zlyhania nezaznamenané.
|
||||||
title: Dostupnosť
|
title: Dostupnosť
|
||||||
back_to_all: Všetko
|
|
||||||
back_to_limited: Obmedzené
|
|
||||||
back_to_warning: Upozornenie
|
|
||||||
by_domain: Doména
|
by_domain: Doména
|
||||||
content_policies:
|
content_policies:
|
||||||
comment: Interná poznámka
|
comment: Interná poznámka
|
||||||
|
@ -452,22 +449,12 @@ sk:
|
||||||
restart: Reštartovať doručovanie
|
restart: Reštartovať doručovanie
|
||||||
stop: Zastav doručenie
|
stop: Zastav doručenie
|
||||||
unavailable: Nedostupné
|
unavailable: Nedostupné
|
||||||
delivery_available: Je v dosahu doručovania
|
|
||||||
delivery_error_days: Dni chybného doručovania
|
|
||||||
empty: Nenájdené žiadne domény.
|
empty: Nenájdené žiadne domény.
|
||||||
moderation:
|
moderation:
|
||||||
all: Všetky
|
all: Všetky
|
||||||
limited: Obmedzené
|
|
||||||
title: Moderácia
|
title: Moderácia
|
||||||
private_comment: Súkromný komentár
|
|
||||||
public_comment: Verejný komentár
|
|
||||||
purge: Vyčisti
|
purge: Vyčisti
|
||||||
title: Federácia
|
title: Federácia
|
||||||
total_blocked_by_us: Nami blokované
|
|
||||||
total_followed_by_them: Nimi sledované
|
|
||||||
total_followed_by_us: Nami sledované
|
|
||||||
total_reported: Hlásenia o nich
|
|
||||||
total_storage: Mediálne prílohy
|
|
||||||
invites:
|
invites:
|
||||||
deactivate_all: Pozastav všetky
|
deactivate_all: Pozastav všetky
|
||||||
filter:
|
filter:
|
||||||
|
|
|
@ -501,9 +501,6 @@ sl:
|
||||||
no_failures_recorded: Ni zabeleženih neuspelih poskusov.
|
no_failures_recorded: Ni zabeleženih neuspelih poskusov.
|
||||||
title: Razpoložljivost
|
title: Razpoložljivost
|
||||||
warning: Zadnji poskus povezave na ta strežnik je spodletel
|
warning: Zadnji poskus povezave na ta strežnik je spodletel
|
||||||
back_to_all: Vse
|
|
||||||
back_to_limited: Omejeno
|
|
||||||
back_to_warning: Opozorilo
|
|
||||||
by_domain: Domena
|
by_domain: Domena
|
||||||
confirm_purge: Ali ste prepričani, da želite trajno izbrisati podatke s te domene?
|
confirm_purge: Ali ste prepričani, da želite trajno izbrisati podatke s te domene?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -534,9 +531,6 @@ sl:
|
||||||
restart: Ponovno zaženi dostavo
|
restart: Ponovno zaženi dostavo
|
||||||
stop: Ustavi dostavo
|
stop: Ustavi dostavo
|
||||||
unavailable: Ni na voljo
|
unavailable: Ni na voljo
|
||||||
delivery_available: Na voljo je dostava
|
|
||||||
delivery_error_days: Dnevi napak pri dostavi
|
|
||||||
delivery_error_hint: Če dostava ni možna %{count} dni, bo samodejno označeno kot nedostavljivo.
|
|
||||||
destroyed_msg: Podatki iz %{domain} so zdaj v vrsti za takojšnje brisanje.
|
destroyed_msg: Podatki iz %{domain} so zdaj v vrsti za takojšnje brisanje.
|
||||||
empty: Ni zadetkov med domenami.
|
empty: Ni zadetkov med domenami.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -546,18 +540,10 @@ sl:
|
||||||
two: "%{count} znana računa"
|
two: "%{count} znana računa"
|
||||||
moderation:
|
moderation:
|
||||||
all: Vse
|
all: Vse
|
||||||
limited: Omejeno
|
|
||||||
title: Moderiranje
|
title: Moderiranje
|
||||||
private_comment: Zasebni komentar
|
|
||||||
public_comment: Javni komentar
|
|
||||||
purge: Očisti
|
purge: Očisti
|
||||||
purge_description_html: Če menite, da je ta domena trajno nedosegljiva, lahko v svoji shrambi izbrišete vse zapise računov in povezane podatke iz te domene. To lahko vzame nekaj časa.
|
purge_description_html: Če menite, da je ta domena trajno nedosegljiva, lahko v svoji shrambi izbrišete vse zapise računov in povezane podatke iz te domene. To lahko vzame nekaj časa.
|
||||||
title: Federacija
|
title: Federacija
|
||||||
total_blocked_by_us: Blokirano iz naše strani
|
|
||||||
total_followed_by_them: Oni ti sledijo
|
|
||||||
total_followed_by_us: Mi ti sledimo
|
|
||||||
total_reported: Prijave o njih
|
|
||||||
total_storage: Predstavnostne priloge
|
|
||||||
totals_time_period_hint_html: Spodaj prikazani seštevki vključujejo podatke za celotno obdobje.
|
totals_time_period_hint_html: Spodaj prikazani seštevki vključujejo podatke za celotno obdobje.
|
||||||
unknown_instance: Trenutno ne obstaja zapis te domene na tem strežniku.
|
unknown_instance: Trenutno ne obstaja zapis te domene na tem strežniku.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -495,9 +495,6 @@ sq:
|
||||||
other: Përpjekje e dështuar në %{count} ditë të ndryshme.
|
other: Përpjekje e dështuar në %{count} ditë të ndryshme.
|
||||||
no_failures_recorded: S’ka dështime të regjistruara.
|
no_failures_recorded: S’ka dështime të regjistruara.
|
||||||
warning: Përpjekja e fundit për t’u lidhur me këtë shërbyes ka qenë e pasuksesshme
|
warning: Përpjekja e fundit për t’u lidhur me këtë shërbyes ka qenë e pasuksesshme
|
||||||
back_to_all: Krejt
|
|
||||||
back_to_limited: E kufizuar
|
|
||||||
back_to_warning: Kujdes
|
|
||||||
by_domain: Përkatësi
|
by_domain: Përkatësi
|
||||||
confirm_purge: Jeni i sigurt se doni të fshihen përgjithmonë të dhënat prej kësaj përkatësie?
|
confirm_purge: Jeni i sigurt se doni të fshihen përgjithmonë të dhënat prej kësaj përkatësie?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -528,9 +525,6 @@ sq:
|
||||||
restart: Rinis dërgimin
|
restart: Rinis dërgimin
|
||||||
stop: Ndale dërgimin
|
stop: Ndale dërgimin
|
||||||
unavailable: Jo i passhëm
|
unavailable: Jo i passhëm
|
||||||
delivery_available: Ka shpërndarje të mundshme
|
|
||||||
delivery_error_days: Ditë gabimi dështimi
|
|
||||||
delivery_error_hint: Nëse dërgimi s’është i mundshëm për %{count} ditë, do t’i vihet shenjë automatikisht si i padërgueshëm.
|
|
||||||
destroyed_msg: Të dhënat prej %{domain} tani janë vënë në radhë për fshirje të menjëhershme.
|
destroyed_msg: Të dhënat prej %{domain} tani janë vënë në radhë për fshirje të menjëhershme.
|
||||||
empty: S’u gjetën përkatësi.
|
empty: S’u gjetën përkatësi.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -538,18 +532,10 @@ sq:
|
||||||
other: "%{count} llogari të njohura"
|
other: "%{count} llogari të njohura"
|
||||||
moderation:
|
moderation:
|
||||||
all: Krejt
|
all: Krejt
|
||||||
limited: Të kufizuarat
|
|
||||||
title: Moderim
|
title: Moderim
|
||||||
private_comment: Koment privat
|
|
||||||
public_comment: Koment publik
|
|
||||||
purge: Spastroje
|
purge: Spastroje
|
||||||
purge_description_html: Nëse besoni se kjo përkatësi është përgjithnjë e mbyllur, mund të fshini prej hapësirës tuaj të depozitimit krejt regjistrimet dhe të dhëna të përshoqëruara me llogarinë. Kjo mund të zgjasë ca.
|
purge_description_html: Nëse besoni se kjo përkatësi është përgjithnjë e mbyllur, mund të fshini prej hapësirës tuaj të depozitimit krejt regjistrimet dhe të dhëna të përshoqëruara me llogarinë. Kjo mund të zgjasë ca.
|
||||||
title: Federim
|
title: Federim
|
||||||
total_blocked_by_us: Bllokuar nga ne
|
|
||||||
total_followed_by_them: Ndjekur prej tyre
|
|
||||||
total_followed_by_us: Ndjekur nga ne
|
|
||||||
total_reported: Raportime rreth tyre
|
|
||||||
total_storage: Bashkëngjitje media
|
|
||||||
totals_time_period_hint_html: Vlerat e shfaqura më poshtë përfshijnë të dhënat për krejt kohën.
|
totals_time_period_hint_html: Vlerat e shfaqura më poshtë përfshijnë të dhënat për krejt kohën.
|
||||||
unknown_instance: Aktualisht në këtë shërbyes s’ka gjurmë të kësaj përkatësie.
|
unknown_instance: Aktualisht në këtë shërbyes s’ka gjurmë të kësaj përkatësie.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -465,9 +465,6 @@ sr-Latn:
|
||||||
no_failures_recorded: Bez zabeleženih neuspeha.
|
no_failures_recorded: Bez zabeleženih neuspeha.
|
||||||
title: Dostupnost
|
title: Dostupnost
|
||||||
warning: Poslednji pokušaj povezivanja sa ovim serverom je bio neuspešan
|
warning: Poslednji pokušaj povezivanja sa ovim serverom je bio neuspešan
|
||||||
back_to_all: Sve
|
|
||||||
back_to_limited: Ograničeno
|
|
||||||
back_to_warning: Upozorenje
|
|
||||||
by_domain: Domen
|
by_domain: Domen
|
||||||
confirm_purge: Da li ste sigurni da želite da trajno uklonite podatke sa ovog domena?
|
confirm_purge: Da li ste sigurni da želite da trajno uklonite podatke sa ovog domena?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -498,9 +495,6 @@ sr-Latn:
|
||||||
restart: Započni isporuku ponovo
|
restart: Započni isporuku ponovo
|
||||||
stop: Obustavi isporuku
|
stop: Obustavi isporuku
|
||||||
unavailable: Nedostupno
|
unavailable: Nedostupno
|
||||||
delivery_available: Dostava je dostupna
|
|
||||||
delivery_error_days: Dani neuspešnih isporuka
|
|
||||||
delivery_error_hint: Ukoliko isporuka nije moguća %{count} dana, automatski će biti obeležena kao neisporučiva.
|
|
||||||
destroyed_msg: Podaci sa %{domain} su sada u redu za čekanje za izvesno brisanje.
|
destroyed_msg: Podaci sa %{domain} su sada u redu za čekanje za izvesno brisanje.
|
||||||
empty: Nijedan domen nije pronađen.
|
empty: Nijedan domen nije pronađen.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -509,18 +503,10 @@ sr-Latn:
|
||||||
other: "%{count} poznatih naloga"
|
other: "%{count} poznatih naloga"
|
||||||
moderation:
|
moderation:
|
||||||
all: Sve
|
all: Sve
|
||||||
limited: Ograničeno
|
|
||||||
title: Moderacija
|
title: Moderacija
|
||||||
private_comment: Privatni komentar
|
|
||||||
public_comment: Javni komentar
|
|
||||||
purge: Čistka
|
purge: Čistka
|
||||||
purge_description_html: Ukoliko verujete da je ovaj domen trajno ugašen, možete da obrišete sve zapise naloga i srodne podatke ovog domena sa svog skladišta. Ovo može da potraje.
|
purge_description_html: Ukoliko verujete da je ovaj domen trajno ugašen, možete da obrišete sve zapise naloga i srodne podatke ovog domena sa svog skladišta. Ovo može da potraje.
|
||||||
title: Federacija
|
title: Federacija
|
||||||
total_blocked_by_us: Blokirano od strane nas
|
|
||||||
total_followed_by_them: Praćeni od strane njih
|
|
||||||
total_followed_by_us: Praćeni od strane nas
|
|
||||||
total_reported: Prijave vezane za njih
|
|
||||||
total_storage: Multimedijalni prilozi
|
|
||||||
totals_time_period_hint_html: Ukupne vrednosti prikazane ispod uključuju podatke za sva vremena.
|
totals_time_period_hint_html: Ukupne vrednosti prikazane ispod uključuju podatke za sva vremena.
|
||||||
unknown_instance: Trenutno ne postoji zapis o ovom domenu na ovom serveru.
|
unknown_instance: Trenutno ne postoji zapis o ovom domenu na ovom serveru.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -494,9 +494,6 @@ sr:
|
||||||
no_failures_recorded: Без забележених неуспеха.
|
no_failures_recorded: Без забележених неуспеха.
|
||||||
title: Доступност
|
title: Доступност
|
||||||
warning: Последњи покушај повезивања са овим сервером је био неуспешан
|
warning: Последњи покушај повезивања са овим сервером је био неуспешан
|
||||||
back_to_all: Све
|
|
||||||
back_to_limited: Ограничено
|
|
||||||
back_to_warning: Упозорење
|
|
||||||
by_domain: Домен
|
by_domain: Домен
|
||||||
confirm_purge: Да ли сте сигурни да желите да трајно уклоните податке са овог домена?
|
confirm_purge: Да ли сте сигурни да желите да трајно уклоните податке са овог домена?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -527,9 +524,6 @@ sr:
|
||||||
restart: Започни испоруку поново
|
restart: Започни испоруку поново
|
||||||
stop: Обустави испоруку
|
stop: Обустави испоруку
|
||||||
unavailable: Недоступно
|
unavailable: Недоступно
|
||||||
delivery_available: Достава је доступна
|
|
||||||
delivery_error_days: Дани неуспешних испорука
|
|
||||||
delivery_error_hint: Уколико испорука није могућа %{count} дана, аутоматски ће бити обележена као неиспоручива.
|
|
||||||
destroyed_msg: Подаци са %{domain} су сада у реду за чекање за извесно брисање.
|
destroyed_msg: Подаци са %{domain} су сада у реду за чекање за извесно брисање.
|
||||||
empty: Ниједан домен није пронађен.
|
empty: Ниједан домен није пронађен.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -538,18 +532,10 @@ sr:
|
||||||
other: "%{count} познатих налога"
|
other: "%{count} познатих налога"
|
||||||
moderation:
|
moderation:
|
||||||
all: Све
|
all: Све
|
||||||
limited: Ограничено
|
|
||||||
title: Модерација
|
title: Модерација
|
||||||
private_comment: Приватни коментар
|
|
||||||
public_comment: Јавни коментар
|
|
||||||
purge: Чистка
|
purge: Чистка
|
||||||
purge_description_html: Уколико верујете да је овај домен трајно угашен, можете да обришете све записе налога и сродне податке овог домена са свог складишта. Ово може да потраје.
|
purge_description_html: Уколико верујете да је овај домен трајно угашен, можете да обришете све записе налога и сродне податке овог домена са свог складишта. Ово може да потраје.
|
||||||
title: Федерација
|
title: Федерација
|
||||||
total_blocked_by_us: Блокирано од стране нас
|
|
||||||
total_followed_by_them: Праћени од стране њих
|
|
||||||
total_followed_by_us: Праћени од стране нас
|
|
||||||
total_reported: Пријаве везане за њих
|
|
||||||
total_storage: Мултимедијални прилози
|
|
||||||
totals_time_period_hint_html: Укупне вредности приказане испод укључују податке за сва времена.
|
totals_time_period_hint_html: Укупне вредности приказане испод укључују податке за сва времена.
|
||||||
unknown_instance: Тренутно не постоји запис о овом домену на овом серверу.
|
unknown_instance: Тренутно не постоји запис о овом домену на овом серверу.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -496,9 +496,6 @@ sv:
|
||||||
no_failures_recorded: Inga fel registrerade.
|
no_failures_recorded: Inga fel registrerade.
|
||||||
title: Tillgänglighet
|
title: Tillgänglighet
|
||||||
warning: Det senaste försöket att ansluta till denna värddator har misslyckats
|
warning: Det senaste försöket att ansluta till denna värddator har misslyckats
|
||||||
back_to_all: Alla
|
|
||||||
back_to_limited: Begränsat
|
|
||||||
back_to_warning: Varning
|
|
||||||
by_domain: Domän
|
by_domain: Domän
|
||||||
confirm_purge: Är du säker på att du vill ta bort data permanent från den här domänen?
|
confirm_purge: Är du säker på att du vill ta bort data permanent från den här domänen?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -529,9 +526,6 @@ sv:
|
||||||
restart: Starta om leverans
|
restart: Starta om leverans
|
||||||
stop: Stoppa leverans
|
stop: Stoppa leverans
|
||||||
unavailable: Ej tillgänglig
|
unavailable: Ej tillgänglig
|
||||||
delivery_available: Leverans är tillgängligt
|
|
||||||
delivery_error_days: Leveransfelsdagar
|
|
||||||
delivery_error_hint: Om leverans inte är möjligt i %{count} dagar, kommer det automatiskt markeras som ej levererbart.
|
|
||||||
destroyed_msg: Data från %{domain} står nu i kö för förestående radering.
|
destroyed_msg: Data från %{domain} står nu i kö för förestående radering.
|
||||||
empty: Inga domäner hittades.
|
empty: Inga domäner hittades.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -539,18 +533,10 @@ sv:
|
||||||
other: "%{count} kända konton"
|
other: "%{count} kända konton"
|
||||||
moderation:
|
moderation:
|
||||||
all: Alla
|
all: Alla
|
||||||
limited: Begränsad
|
|
||||||
title: Moderering
|
title: Moderering
|
||||||
private_comment: Privat kommentar
|
|
||||||
public_comment: Offentlig kommentar
|
|
||||||
purge: Rensa
|
purge: Rensa
|
||||||
purge_description_html: Om du tror att denna domän har kopplats ned för gott, kan du radera alla kontoposter och associerad data tillhörande denna domän från din lagringsyta. Detta kan ta tid.
|
purge_description_html: Om du tror att denna domän har kopplats ned för gott, kan du radera alla kontoposter och associerad data tillhörande denna domän från din lagringsyta. Detta kan ta tid.
|
||||||
title: Kända instanser
|
title: Kända instanser
|
||||||
total_blocked_by_us: Blockerad av oss
|
|
||||||
total_followed_by_them: Följs av dem
|
|
||||||
total_followed_by_us: Följs av oss
|
|
||||||
total_reported: Rapporter om dem
|
|
||||||
total_storage: Mediebilagor
|
|
||||||
totals_time_period_hint_html: Totalsummorna som visas nedan inkluderar data för all tid.
|
totals_time_period_hint_html: Totalsummorna som visas nedan inkluderar data för all tid.
|
||||||
unknown_instance: Det finns för närvarande inga uppgifter om denna domän på denna server.
|
unknown_instance: Det finns för närvarande inga uppgifter om denna domän på denna server.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -486,9 +486,6 @@ th:
|
||||||
no_failures_recorded: ไม่มีความล้มเหลวในระเบียน
|
no_failures_recorded: ไม่มีความล้มเหลวในระเบียน
|
||||||
title: ความพร้อมใช้งาน
|
title: ความพร้อมใช้งาน
|
||||||
warning: ความพยายามล่าสุดในการเชื่อมต่อกับเซิร์ฟเวอร์นี้ไม่สำเร็จ
|
warning: ความพยายามล่าสุดในการเชื่อมต่อกับเซิร์ฟเวอร์นี้ไม่สำเร็จ
|
||||||
back_to_all: ทั้งหมด
|
|
||||||
back_to_limited: จำกัดอยู่
|
|
||||||
back_to_warning: คำเตือน
|
|
||||||
by_domain: โดเมน
|
by_domain: โดเมน
|
||||||
confirm_purge: คุณแน่ใจหรือไม่ว่าต้องการลบข้อมูลจากโดเมนนี้อย่างถาวร?
|
confirm_purge: คุณแน่ใจหรือไม่ว่าต้องการลบข้อมูลจากโดเมนนี้อย่างถาวร?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -519,27 +516,16 @@ th:
|
||||||
restart: เริ่มการจัดส่งใหม่
|
restart: เริ่มการจัดส่งใหม่
|
||||||
stop: หยุดการจัดส่ง
|
stop: หยุดการจัดส่ง
|
||||||
unavailable: ไม่พร้อมใช้งาน
|
unavailable: ไม่พร้อมใช้งาน
|
||||||
delivery_available: มีการจัดส่ง
|
|
||||||
delivery_error_days: วันที่มีข้อผิดพลาดการจัดส่ง
|
|
||||||
delivery_error_hint: หากไม่สามารถทำการจัดส่งได้เป็นเวลา %{count} วัน ระบบจะทำเครื่องหมายโดเมนว่าจัดส่งไม่ได้โดยอัตโนมัติ
|
|
||||||
destroyed_msg: ตอนนี้จัดคิวข้อมูลจาก %{domain} สำหรับการลบในเร็ว ๆ นี้แล้ว
|
destroyed_msg: ตอนนี้จัดคิวข้อมูลจาก %{domain} สำหรับการลบในเร็ว ๆ นี้แล้ว
|
||||||
empty: ไม่พบโดเมน
|
empty: ไม่พบโดเมน
|
||||||
known_accounts:
|
known_accounts:
|
||||||
other: "%{count} บัญชีที่รู้จัก"
|
other: "%{count} บัญชีที่รู้จัก"
|
||||||
moderation:
|
moderation:
|
||||||
all: ทั้งหมด
|
all: ทั้งหมด
|
||||||
limited: จำกัดอยู่
|
|
||||||
title: การกลั่นกรอง
|
title: การกลั่นกรอง
|
||||||
private_comment: ความคิดเห็นส่วนตัว
|
|
||||||
public_comment: ความคิดเห็นสาธารณะ
|
|
||||||
purge: ล้างข้อมูล
|
purge: ล้างข้อมูล
|
||||||
purge_description_html: หากคุณเชื่อว่าโดเมนนี้ออฟไลน์อย่างถาวร คุณสามารถลบระเบียนบัญชีและข้อมูลที่เกี่ยวข้องทั้งหมดจากโดเมนนี้จากที่เก็บข้อมูลของคุณ นี่อาจใช้เวลาสักครู่
|
purge_description_html: หากคุณเชื่อว่าโดเมนนี้ออฟไลน์อย่างถาวร คุณสามารถลบระเบียนบัญชีและข้อมูลที่เกี่ยวข้องทั้งหมดจากโดเมนนี้จากที่เก็บข้อมูลของคุณ นี่อาจใช้เวลาสักครู่
|
||||||
title: การติดต่อกับภายนอก
|
title: การติดต่อกับภายนอก
|
||||||
total_blocked_by_us: ปิดกั้นโดยเรา
|
|
||||||
total_followed_by_them: ติดตามโดยเขา
|
|
||||||
total_followed_by_us: ติดตามโดยเรา
|
|
||||||
total_reported: รายงานเกี่ยวกับเขา
|
|
||||||
total_storage: ไฟล์แนบสื่อ
|
|
||||||
totals_time_period_hint_html: ยอดรวมที่แสดงด้านล่างรวมข้อมูลสำหรับเวลาทั้งหมด
|
totals_time_period_hint_html: ยอดรวมที่แสดงด้านล่างรวมข้อมูลสำหรับเวลาทั้งหมด
|
||||||
unknown_instance: ไม่มีระเบียนของโดเมนนี้ในเซิร์ฟเวอร์นี้ในปัจจุบัน
|
unknown_instance: ไม่มีระเบียนของโดเมนนี้ในเซิร์ฟเวอร์นี้ในปัจจุบัน
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -496,9 +496,6 @@ tr:
|
||||||
no_failures_recorded: Kayıtlı başarısızlık yok.
|
no_failures_recorded: Kayıtlı başarısızlık yok.
|
||||||
title: Ulaşılabilirlik
|
title: Ulaşılabilirlik
|
||||||
warning: Bu sunucuya önceki bağlanma denemesi başarısız olmuştu
|
warning: Bu sunucuya önceki bağlanma denemesi başarısız olmuştu
|
||||||
back_to_all: Tümü
|
|
||||||
back_to_limited: Sınırlı
|
|
||||||
back_to_warning: Uyarı
|
|
||||||
by_domain: Alan adı
|
by_domain: Alan adı
|
||||||
confirm_purge: Bu alan adından verileri kalıcı olarak silmek istediğinizden emin misin?
|
confirm_purge: Bu alan adından verileri kalıcı olarak silmek istediğinizden emin misin?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -529,9 +526,6 @@ tr:
|
||||||
restart: Teslimatı yeniden başlat
|
restart: Teslimatı yeniden başlat
|
||||||
stop: Teslimatı durdur
|
stop: Teslimatı durdur
|
||||||
unavailable: Mevcut Değil
|
unavailable: Mevcut Değil
|
||||||
delivery_available: Teslimat mevcut
|
|
||||||
delivery_error_days: Teslimat hatası günleri
|
|
||||||
delivery_error_hint: Eğer teslimat %{count} gün boyunca mümkün olmazsa, otomatik olarak teslim edilemiyor olarak işaretlenecek.
|
|
||||||
destroyed_msg: "%{domain} alan adından veriler hemen silinmek üzere kuyruğa alındı."
|
destroyed_msg: "%{domain} alan adından veriler hemen silinmek üzere kuyruğa alındı."
|
||||||
empty: Alan adı bulunamadı.
|
empty: Alan adı bulunamadı.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -539,18 +533,10 @@ tr:
|
||||||
other: "%{count} bilinen hesap"
|
other: "%{count} bilinen hesap"
|
||||||
moderation:
|
moderation:
|
||||||
all: Tümü
|
all: Tümü
|
||||||
limited: Sınırlı
|
|
||||||
title: Denetim
|
title: Denetim
|
||||||
private_comment: Özel yorum
|
|
||||||
public_comment: Genel yorum
|
|
||||||
purge: Temizle
|
purge: Temizle
|
||||||
purge_description_html: Eğer bu alan adının temelli çevrimdışı olduğunu düşünüyorsanız, bu alanda adına ait tüm hesap kayıtlarını ve ilişkili tüm veriyi depolama alanınızdan kaldırabilirsiniz. Bu işlem uzun sürebilir.
|
purge_description_html: Eğer bu alan adının temelli çevrimdışı olduğunu düşünüyorsanız, bu alanda adına ait tüm hesap kayıtlarını ve ilişkili tüm veriyi depolama alanınızdan kaldırabilirsiniz. Bu işlem uzun sürebilir.
|
||||||
title: Bilinen Sunucular
|
title: Bilinen Sunucular
|
||||||
total_blocked_by_us: Tarafımızca engellenen
|
|
||||||
total_followed_by_them: Onlar tarafından takip edilen
|
|
||||||
total_followed_by_us: Tarafımızca takip edilen
|
|
||||||
total_reported: Onlar hakkında şikayetler
|
|
||||||
total_storage: Medya ekleri
|
|
||||||
totals_time_period_hint_html: Aşağıdaki gösterilen toplamlar, gelmiş geçmiş tüm veriyi içeriyor.
|
totals_time_period_hint_html: Aşağıdaki gösterilen toplamlar, gelmiş geçmiş tüm veriyi içeriyor.
|
||||||
unknown_instance: Bu sunucuda bu alan adının şu an bir kaydı yok.
|
unknown_instance: Bu sunucuda bu alan adının şu an bir kaydı yok.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -164,8 +164,6 @@ tt:
|
||||||
instances:
|
instances:
|
||||||
availability:
|
availability:
|
||||||
title: Мөмкинлек
|
title: Мөмкинлек
|
||||||
back_to_all: Барысы да
|
|
||||||
back_to_warning: Игътибар
|
|
||||||
by_domain: Домен
|
by_domain: Домен
|
||||||
content_policies:
|
content_policies:
|
||||||
policies:
|
policies:
|
||||||
|
|
|
@ -508,9 +508,6 @@ uk:
|
||||||
no_failures_recorded: Проблем щодо запису немає.
|
no_failures_recorded: Проблем щодо запису немає.
|
||||||
title: Доступність
|
title: Доступність
|
||||||
warning: Остання спроба підключення до цього сервера була невдала
|
warning: Остання спроба підключення до цього сервера була невдала
|
||||||
back_to_all: Усі
|
|
||||||
back_to_limited: Обмежені
|
|
||||||
back_to_warning: Попередження
|
|
||||||
by_domain: Домен
|
by_domain: Домен
|
||||||
confirm_purge: Ви впевнені, що хочете видалити ці дані з цього домену?
|
confirm_purge: Ви впевнені, що хочете видалити ці дані з цього домену?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -541,9 +538,6 @@ uk:
|
||||||
restart: Перезапустити доставляння
|
restart: Перезапустити доставляння
|
||||||
stop: Припинити доставляння
|
stop: Припинити доставляння
|
||||||
unavailable: Недоступно
|
unavailable: Недоступно
|
||||||
delivery_available: Доставлення доступне
|
|
||||||
delivery_error_days: Днів помилок доставляння
|
|
||||||
delivery_error_hint: Якщо доставляння неможливе впродовж %{count} днів, воно автоматично позначиться недоставленим.
|
|
||||||
destroyed_msg: Дані з %{domain} тепер у черзі на видалення.
|
destroyed_msg: Дані з %{domain} тепер у черзі на видалення.
|
||||||
empty: Доменів не знайдено.
|
empty: Доменів не знайдено.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
|
@ -553,18 +547,10 @@ uk:
|
||||||
other: "%{count} відомих облікових записів"
|
other: "%{count} відомих облікових записів"
|
||||||
moderation:
|
moderation:
|
||||||
all: Усі
|
all: Усі
|
||||||
limited: Обмежені
|
|
||||||
title: Модерація
|
title: Модерація
|
||||||
private_comment: Приватний коментар
|
|
||||||
public_comment: Публічний коментар
|
|
||||||
purge: Очисти
|
purge: Очисти
|
||||||
purge_description_html: Якщо ви вважаєте, що цей домен більше ніколи не працюватиме, ви можете видалити всі дані облікових записів та пов'язані з ним дані з цього домену зі свого сховища. Це може зайняти деякий час.
|
purge_description_html: Якщо ви вважаєте, що цей домен більше ніколи не працюватиме, ви можете видалити всі дані облікових записів та пов'язані з ним дані з цього домену зі свого сховища. Це може зайняти деякий час.
|
||||||
title: Федерація
|
title: Федерація
|
||||||
total_blocked_by_us: Заблокованих нами
|
|
||||||
total_followed_by_them: Вони стежать за
|
|
||||||
total_followed_by_us: Ми стежимо за
|
|
||||||
total_reported: Звітів про них
|
|
||||||
total_storage: Мультимедійні вкладення
|
|
||||||
totals_time_period_hint_html: Нижче зображена статистика за все існування сервера.
|
totals_time_period_hint_html: Нижче зображена статистика за все існування сервера.
|
||||||
unknown_instance: Наразі на цьому сервері немає записів цього домену.
|
unknown_instance: Наразі на цьому сервері немає записів цього домену.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -486,9 +486,6 @@ vi:
|
||||||
no_failures_recorded: Chưa bao giờ thất bại.
|
no_failures_recorded: Chưa bao giờ thất bại.
|
||||||
title: Khả dụng
|
title: Khả dụng
|
||||||
warning: Lần thử cuối cùng để kết nối tới máy chủ này đã không thành công
|
warning: Lần thử cuối cùng để kết nối tới máy chủ này đã không thành công
|
||||||
back_to_all: Toàn bộ
|
|
||||||
back_to_limited: Hạn chế
|
|
||||||
back_to_warning: Cảnh báo
|
|
||||||
by_domain: Máy chủ
|
by_domain: Máy chủ
|
||||||
confirm_purge: Bạn có chắc chắn muốn xóa dữ liệu từ máy chủ này vĩnh viễn?
|
confirm_purge: Bạn có chắc chắn muốn xóa dữ liệu từ máy chủ này vĩnh viễn?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -519,27 +516,16 @@ vi:
|
||||||
restart: Khởi động lại phân phối
|
restart: Khởi động lại phân phối
|
||||||
stop: Ngưng phân phối
|
stop: Ngưng phân phối
|
||||||
unavailable: Không khả dụng
|
unavailable: Không khả dụng
|
||||||
delivery_available: Cho phép liên kết
|
|
||||||
delivery_error_days: Ngày lỗi phân phối
|
|
||||||
delivery_error_hint: Nếu không thể phân phối sau %{count} ngày, nó sẽ tự dộng đánh dấu là không thể phân phối.
|
|
||||||
destroyed_msg: Dữ liệu từ %{domain} đã lên lịch để xóa.
|
destroyed_msg: Dữ liệu từ %{domain} đã lên lịch để xóa.
|
||||||
empty: Không có máy chủ nào.
|
empty: Không có máy chủ nào.
|
||||||
known_accounts:
|
known_accounts:
|
||||||
other: "%{count} tài khoản đã biết"
|
other: "%{count} tài khoản đã biết"
|
||||||
moderation:
|
moderation:
|
||||||
all: Tất cả
|
all: Tất cả
|
||||||
limited: Hạn chế
|
|
||||||
title: Kiểm duyệt
|
title: Kiểm duyệt
|
||||||
private_comment: Bình luận riêng
|
|
||||||
public_comment: Bình luận công khai
|
|
||||||
purge: Thanh trừng
|
purge: Thanh trừng
|
||||||
purge_description_html: Nếu bạn tin rằng máy chủ này đã chết, bạn có thể xóa tất cả các bản ghi tài khoản và dữ liệu đã liên kết khỏi bộ nhớ của mình. Việc này có thể mất một lúc.
|
purge_description_html: Nếu bạn tin rằng máy chủ này đã chết, bạn có thể xóa tất cả các bản ghi tài khoản và dữ liệu đã liên kết khỏi bộ nhớ của mình. Việc này có thể mất một lúc.
|
||||||
title: Mạng liên hợp
|
title: Mạng liên hợp
|
||||||
total_blocked_by_us: Bị chặn bởi chúng ta
|
|
||||||
total_followed_by_them: Được họ theo dõi
|
|
||||||
total_followed_by_us: Được quản trị viên theo dõi
|
|
||||||
total_reported: Toàn bộ báo cáo
|
|
||||||
total_storage: Media
|
|
||||||
totals_time_period_hint_html: Tổng số được hiển thị bên dưới bao gồm dữ liệu cho mọi thời điểm.
|
totals_time_period_hint_html: Tổng số được hiển thị bên dưới bao gồm dữ liệu cho mọi thời điểm.
|
||||||
unknown_instance: Hiện tại không có bản ghi tên miền này trên máy chủ này.
|
unknown_instance: Hiện tại không có bản ghi tên miền này trên máy chủ này.
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -486,9 +486,6 @@ zh-CN:
|
||||||
no_failures_recorded: 没有失败记录。
|
no_failures_recorded: 没有失败记录。
|
||||||
title: 可用性
|
title: 可用性
|
||||||
warning: 上一次尝试连接此服务器失败
|
warning: 上一次尝试连接此服务器失败
|
||||||
back_to_all: 全部
|
|
||||||
back_to_limited: 受限
|
|
||||||
back_to_warning: 警告
|
|
||||||
by_domain: 域名
|
by_domain: 域名
|
||||||
confirm_purge: 你确认要从这个实例中永久地删除数据吗?
|
confirm_purge: 你确认要从这个实例中永久地删除数据吗?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -519,27 +516,16 @@ zh-CN:
|
||||||
restart: 重新投递
|
restart: 重新投递
|
||||||
stop: 停止投递
|
stop: 停止投递
|
||||||
unavailable: 不可用
|
unavailable: 不可用
|
||||||
delivery_available: 可投递
|
|
||||||
delivery_error_days: 投递错误天数
|
|
||||||
delivery_error_hint: 如果投递已不可用 %{count} 天,它将被自动标记为无法投递。
|
|
||||||
destroyed_msg: "%{domain} 中的数据现在正在排队等待被立刻删除。"
|
destroyed_msg: "%{domain} 中的数据现在正在排队等待被立刻删除。"
|
||||||
empty: 暂无域名。
|
empty: 暂无域名。
|
||||||
known_accounts:
|
known_accounts:
|
||||||
other: "%{count} 个已知账号"
|
other: "%{count} 个已知账号"
|
||||||
moderation:
|
moderation:
|
||||||
all: 全部
|
all: 全部
|
||||||
limited: 受限的
|
|
||||||
title: 审核
|
title: 审核
|
||||||
private_comment: 私密评论
|
|
||||||
public_comment: 公开评论
|
|
||||||
purge: 删除
|
purge: 删除
|
||||||
purge_description_html: 如果你确认此域名已永久离线,可以从存储中删除此域名的所有账号记录和相关数据。这将会需要一段时间。
|
purge_description_html: 如果你确认此域名已永久离线,可以从存储中删除此域名的所有账号记录和相关数据。这将会需要一段时间。
|
||||||
title: 已知实例
|
title: 已知实例
|
||||||
total_blocked_by_us: 被我站屏蔽的
|
|
||||||
total_followed_by_them: 被对方关注的
|
|
||||||
total_followed_by_us: 被我站关注的
|
|
||||||
total_reported: 关于对方的举报
|
|
||||||
total_storage: 媒体文件
|
|
||||||
totals_time_period_hint_html: 下方显示的总数来自全部历史数据。
|
totals_time_period_hint_html: 下方显示的总数来自全部历史数据。
|
||||||
unknown_instance: 此服务器上目前没有此域名的记录。
|
unknown_instance: 此服务器上目前没有此域名的记录。
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -443,9 +443,6 @@ zh-HK:
|
||||||
no_failures_recorded: 沒有錯誤紀錄。
|
no_failures_recorded: 沒有錯誤紀錄。
|
||||||
title: 可用性
|
title: 可用性
|
||||||
warning: 最後一次嘗試連接該伺服器並不成功
|
warning: 最後一次嘗試連接該伺服器並不成功
|
||||||
back_to_all: 全部
|
|
||||||
back_to_limited: 已靜音
|
|
||||||
back_to_warning: 警告
|
|
||||||
by_domain: 域名
|
by_domain: 域名
|
||||||
confirm_purge: 你確定要永久刪除這個網域的資料嗎?
|
confirm_purge: 你確定要永久刪除這個網域的資料嗎?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -476,27 +473,16 @@ zh-HK:
|
||||||
restart: 重新啟動遞送
|
restart: 重新啟動遞送
|
||||||
stop: 停止遞送
|
stop: 停止遞送
|
||||||
unavailable: 離線
|
unavailable: 離線
|
||||||
delivery_available: 可傳送
|
|
||||||
delivery_error_days: 遞送失敗天數
|
|
||||||
delivery_error_hint: 若 %{count} 天皆無法達成遞送,將會被自動標記為離線。
|
|
||||||
destroyed_msg: 來自 %{domain} 的資料正在排隊等待被即將刪除。
|
destroyed_msg: 來自 %{domain} 的資料正在排隊等待被即將刪除。
|
||||||
empty: 找不到域名。
|
empty: 找不到域名。
|
||||||
known_accounts:
|
known_accounts:
|
||||||
other: "%{count} 個已知帳號"
|
other: "%{count} 個已知帳號"
|
||||||
moderation:
|
moderation:
|
||||||
all: 全部
|
all: 全部
|
||||||
limited: 限制
|
|
||||||
title: 版主
|
title: 版主
|
||||||
private_comment: 私人留言
|
|
||||||
public_comment: 公開留言
|
|
||||||
purge: 清除
|
purge: 清除
|
||||||
purge_description_html: 如果你認為此網域永久處於離線狀態,你可以從儲存空間中刪除該網域的所有帳號紀錄和相關資料。這可能需要一段時間。
|
purge_description_html: 如果你認為此網域永久處於離線狀態,你可以從儲存空間中刪除該網域的所有帳號紀錄和相關資料。這可能需要一段時間。
|
||||||
title: 已知服務站
|
title: 已知服務站
|
||||||
total_blocked_by_us: 被我們封鎖
|
|
||||||
total_followed_by_them: 被他們關注
|
|
||||||
total_followed_by_us: 被我們關注
|
|
||||||
total_reported: 關於他們的舉報
|
|
||||||
total_storage: 媒體附件
|
|
||||||
totals_time_period_hint_html: 下面顯示的總數包括所有時間的數據。
|
totals_time_period_hint_html: 下面顯示的總數包括所有時間的數據。
|
||||||
unknown_instance: 此伺服器目前沒有這個網域的紀錄。
|
unknown_instance: 此伺服器目前沒有這個網域的紀錄。
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -486,9 +486,6 @@ zh-TW:
|
||||||
no_failures_recorded: 報告中沒有錯誤。
|
no_failures_recorded: 報告中沒有錯誤。
|
||||||
title: 可用狀態
|
title: 可用狀態
|
||||||
warning: 上一次嘗試連線至此伺服器失敗
|
warning: 上一次嘗試連線至此伺服器失敗
|
||||||
back_to_all: 所有
|
|
||||||
back_to_limited: 受限制的
|
|
||||||
back_to_warning: 警告
|
|
||||||
by_domain: 站台
|
by_domain: 站台
|
||||||
confirm_purge: 您確定要永久刪除來自此網域的資料嗎?
|
confirm_purge: 您確定要永久刪除來自此網域的資料嗎?
|
||||||
content_policies:
|
content_policies:
|
||||||
|
@ -519,27 +516,16 @@ zh-TW:
|
||||||
restart: 重新啟動遞送
|
restart: 重新啟動遞送
|
||||||
stop: 停止遞送
|
stop: 停止遞送
|
||||||
unavailable: 無法使用
|
unavailable: 無法使用
|
||||||
delivery_available: 可傳送
|
|
||||||
delivery_error_days: 遞送失敗天數
|
|
||||||
delivery_error_hint: 若 %{count} 日皆無法遞送 ,則會自動標記無法遞送。
|
|
||||||
destroyed_msg: 來自 %{domain} 的資料目前正在佇列中等待刪除。
|
destroyed_msg: 來自 %{domain} 的資料目前正在佇列中等待刪除。
|
||||||
empty: 找不到網域
|
empty: 找不到網域
|
||||||
known_accounts:
|
known_accounts:
|
||||||
other: "%{count} 個已知帳號"
|
other: "%{count} 個已知帳號"
|
||||||
moderation:
|
moderation:
|
||||||
all: 全部
|
all: 全部
|
||||||
limited: 限制
|
|
||||||
title: 管管
|
title: 管管
|
||||||
private_comment: 私人留言
|
|
||||||
public_comment: 公開留言
|
|
||||||
purge: 清除
|
purge: 清除
|
||||||
purge_description_html: 若您相信此網域將永久離線,您可以自儲存空間中刪除該網域所有帳號紀錄及相關資料。這可能花費一些時間。
|
purge_description_html: 若您相信此網域將永久離線,您可以自儲存空間中刪除該網域所有帳號紀錄及相關資料。這可能花費一些時間。
|
||||||
title: 聯邦宇宙
|
title: 聯邦宇宙
|
||||||
total_blocked_by_us: 被我們封鎖
|
|
||||||
total_followed_by_them: 被他們跟隨
|
|
||||||
total_followed_by_us: 被我們跟隨
|
|
||||||
total_reported: 關於他們的檢舉報告
|
|
||||||
total_storage: 多媒體附加檔案
|
|
||||||
totals_time_period_hint_html: 以下顯示之統計包含所有時間的資料。
|
totals_time_period_hint_html: 以下顯示之統計包含所有時間的資料。
|
||||||
unknown_instance: 此伺服器目前沒有這個網域的紀錄。
|
unknown_instance: 此伺服器目前沒有這個網域的紀錄。
|
||||||
invites:
|
invites:
|
||||||
|
|
|
@ -3,7 +3,7 @@ const config = {
|
||||||
'Capfile|Gemfile|*.{rb,ruby,ru,rake}': 'bin/rubocop --force-exclusion -a',
|
'Capfile|Gemfile|*.{rb,ruby,ru,rake}': 'bin/rubocop --force-exclusion -a',
|
||||||
'*.{js,jsx,ts,tsx}': 'eslint --fix',
|
'*.{js,jsx,ts,tsx}': 'eslint --fix',
|
||||||
'*.{css,scss}': 'stylelint --fix',
|
'*.{css,scss}': 'stylelint --fix',
|
||||||
'*.haml': 'bundle exec haml-lint -a',
|
'*.haml': 'bin/haml-lint -a',
|
||||||
'**/*.ts?(x)': () => 'tsc -p tsconfig.json --noEmit',
|
'**/*.ts?(x)': () => 'tsc -p tsconfig.json --noEmit',
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -34,6 +34,20 @@ RSpec.describe Admin::InstancesController do
|
||||||
expect(response).to have_http_status(200)
|
expect(response).to have_http_status(200)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
describe 'outdated filter parameters' do
|
||||||
|
it 'redirect to status suspended when just limited is set' do
|
||||||
|
get :index, params: { limited: 1 }
|
||||||
|
|
||||||
|
expect(response).to redirect_to admin_instances_path({ status: :suspended })
|
||||||
|
end
|
||||||
|
|
||||||
|
it 'retains other filters when redirecting if limited is set' do
|
||||||
|
get :index, params: { limited: 1, availability: 'failing' }
|
||||||
|
|
||||||
|
expect(response).to redirect_to admin_instances_path({ status: :suspended, availability: 'failing' })
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
def instance_directory_links
|
def instance_directory_links
|
||||||
response.parsed_body.css('div.directory__tag a')
|
response.parsed_body.css('div.directory__tag a')
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue
Block a user